/* HERO CONTACT WITH BACKGROUND */
.hero-contact {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.hero-content h1 .highlight {
    color: #00D9FF;
}

.hero-content p {
    font-size: 24px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* CONTACT OPTIONS */
.contact-options {
    max-width: 1400px;
    margin: -80px auto 100px;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.option-card {
    background: #1A2332;
    padding: 48px 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-card:hover {
    transform: translateY(-8px);
    border-color: #00D9FF;
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.option-featured {
    border-color: #00D9FF;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.option-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #00D9FF;
    color: #0A1628;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.option-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.option-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.option-email {
    font-size: 18px;
    color: #00D9FF;
    font-weight: 600;
    margin-bottom: 20px;
    word-break: break-word;
}

.option-description {
    color: #A0AEC0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.option-description strong {
    color: #00D9FF;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #00D9FF;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #00D9FF;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #00D9FF;
    color: #0A1628;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
}

.option-card .btn-primary {
    margin-top: auto;
}



/* CALENDLY SECTION */
.calendly-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #0A1628, #1A2332);
    border-radius: 24px;
}

.calendly-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.calendly-section p {
    font-size: 20px;
    color: #A0AEC0;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calendly-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   RESPONSIVE : TÉLÉPHONE
========================================= */
@media (max-width: 768px) {
    /* --- HERO SECTION --- */
    .hero-contact {
        height: auto;
        min-height: 400px;
        padding: 100px 0 60px; /* Donne de l'espace pour le menu en haut */
    }

    .hero-content {
        padding: 0 20px; /* On réduit les marges latérales */
    }

    .hero-content h1 {
        font-size: 36px;
        white-space: normal; /* Permet au texte de passer à la ligne */
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 18px;
    }

    /* --- CARTES DE CONTACT --- */
    .contact-options {
        margin: -40px auto 60px; /* On garde un léger chevauchement esthétique sur l'image */
        padding: 0 20px;
    }

    .option-card {
        padding: 32px 20px; /* On réduit fortement l'espace vide interne pour libérer le texte */
    }

    .option-icon {
        font-size: 44px;
        margin-bottom: 16px;
    }

    .option-card h3 {
        font-size: 24px;
    }

    .option-email {
        font-size: 16px;
    }

    .option-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* Boutons en pleine largeur pour le mobile */
    .option-card .btn-primary {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* --- RÉSEAUX SOCIAUX --- */
    .social-links {
        grid-template-columns: 1fr; /* 1 seul bouton par ligne */
        gap: 12px;
        width: 100%;
    }

    /* --- SECTION CALENDLY --- */
    .calendly-section {
        margin: 0 20px 60px; /* Décolle des bords de l'écran */
        padding: 40px 20px;
    }

    .calendly-section h2 {
        font-size: 32px;
    }
    
    .calendly-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}