/* ============================================
   STYLES PAGE CONTACT US
   ============================================ */

body {
    background-color: #F9F9F9; /* Fond gris clair global */
}

.contact-section {
    min-height: 600px;
    background-color: #f5f5f5;
    padding: 40px 0;
}

/* --- BANDEAU CONTACT --- */
.contact-banner {
    /* Même dégradé et image de fond que les autres pages */
    background-image:
      linear-gradient(to right, rgba(150, 220, 2, 0.85), rgba(0, 0, 0, 0.9)),
      url("./assets/2.png"); /* Remplacez par votre image */
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    
    border-radius: 20px;
    height: 230px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-banner h1 {
    font-family: 'Inter-bold';
    font-size: 40px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* --- GRILLE LOCALISATION (Visit Us / Warehouse) --- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    gap: 30px;
    margin-bottom: 30px;
}

.location-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    /* Ombre légère */
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Carré fond clair pour l'icône */
.icon-box {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bg-red { background-color:#F2F5FF} /* Fond rouge pâle pour localisation */
.bg-green { background-color: #F2F5FF; } /* Fond vert pâle pour Whatsapp */
.bg-blue { background-color: #F2F5FF } /* Fond bleu pâle pour Call/Mail */

.icon-box img {
    height: 30px;
    width: 30px;
}

.location-card h2 {
    font-family: 'Inter-bold';
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.location-card p {
     font-family: 'Inter-semiregular';
    font-size: 17px;
    color: #000000;
    line-height: 1.5;
}
/* --- SECTION METHODES DE CONTACT (Whatsapp/Call/Mail) --- */
.contact-methods-wrapper {
    background: #fff;
    padding: 40px;
}
.contact-methods-wrapper-inner {
    background-color: #FFFFFF;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 0px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid #EEEEEE;
}
.method-item {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #E0E0E0; /* Ligne de séparation verticale */
}

/* Pas de bordure pour le dernier élément */
.method-item:last-child {
    border-right: none;
}

.method-item h2 {
    font-family: 'Inter-bold';
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
}

.method-item p {
    font-family: 'Inter-semiregular';
    font-size: 18px;
    color: #777;
    margin-bottom: 5px;
}
.method-item p strong {
    color: #000;
}

.method-item .email-link {
    color: #96DC02; /* Couleur verte pour l'email */
    text-decoration: none;
    font-weight: 500;
    display: block;
    font-size: 18px;
}

/* Boutons verts */
.contact-btn {
    background-color: #96DC02;
    color: #000;
    font-family: 'Inter-bold';
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #85C402;
    transform: scale(1.05);
    transition: 0.3s;
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
    .contact-section {
        padding: 40px;
    }
}

@media (max-width: 900px) {
    /* Sur tablette, on passe les méthodes de contact en colonne */
    .contact-methods-wrapper-inner {
        grid-template-columns: 1fr; /* 1 colonne */
        gap: 30px;
        padding: 30px;
    }

    .method-item {
        border-right: none; /* Enlève la ligne verticale */
        border-bottom: 1px solid #E0E0E0; /* Ajoute une ligne horizontale */
        padding: 0 0 30px 0;
    }

    .method-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 30px 15px;
    }

 .contact-banner {
    height: 100px;
    margin-bottom: 25px;
}
    
    .contact-banner h1 {
        font-size: 24px;
    }
    .location-card p br {
    display: none;
}
.contact-methods-wrapper {
    background: #fff;
    padding: 20px;
}

    /* Les cartes de localisation passent l'une sous l'autre */
    .location-grid {
        grid-template-columns: 1fr; 
    }
}
/* ============================================
   ANIMATIONS SCROLL (AJOUT)
   ============================================ */

/* Base : Vient du bas (Fade In Up) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

/* Vient de la GAUCHE */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

/* Vient de la DROITE */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

/* État Final (Visible) */
.reveal.active, 
.reveal-left.active, 
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
    visibility: visible;
}

/* Délais pour l'effet cascade */
.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }