/* ============================================================================
   CSS RENDEZ-VOUS PAGE - ACLG
   Date : 18/10/2025
   Extraction styles <style> bloc + inline → CSS externe
   Standard SXO 2025
   ============================================================================ */

/* Variables CSS pour cohérence globale */
:root {
    --rdv-primary: #00557f;
    --rdv-primary-dark: #003d5c;
    --rdv-text: #1a1b1e;
    --rdv-text-light: #66666e;
    --rdv-bg-light: #f8f9fa;
    --rdv-white: #ffffff;
}

/* ============================================================================
   SECTION HERO
   ============================================================================ */
.rdv-hero {
    background: linear-gradient(135deg, var(--rdv-primary) 0%, var(--rdv-primary-dark) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rdv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.rdv-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.rdv-subtitle {
    font-size: 1.2rem;
    color: #e8f4fd;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ============================================================================
   SECTION CONTENT (Embed HubSpot)
   ============================================================================ */
.rdv-content {
    background: white;
    padding: 60px 0;
}

.rdv-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.meetings-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 40px;
}

.meetings-iframe-container {
    min-height: 500px;
    width: 100%;
}

/* Classes pour textes de section */
.rdv-section-title {
    color: var(--rdv-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.rdv-section-title-large {
    color: var(--rdv-text);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 2rem;
}

.rdv-section-subtitle {
    color: var(--rdv-text-light);
}

.rdv-section-subtitle-large {
    color: var(--rdv-text-light);
    font-size: 1.1rem;
}

.rdv-text-note {
    color: var(--rdv-text-light);
    font-style: italic;
}

.rdv-link {
    color: var(--rdv-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rdv-link:hover {
    text-decoration: underline;
}

/* ============================================================================
   SECTION BENEFITS (Avantages du RDV)
   ============================================================================ */
.rdv-benefits {
    background: var(--rdv-bg-light);
    padding: 50px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rdv-primary) 0%, var(--rdv-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-content h3 {
    font-size: 1.3rem;
    color: var(--rdv-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    color: var(--rdv-text-light);
    margin: 0;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 992px) {
    .rdv-hero {
        padding: 60px 0 40px;
    }

    .rdv-title {
        font-size: 2.4rem;
    }

    .rdv-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .rdv-hero {
        padding: 50px 0 30px;
    }

    .rdv-title {
        font-size: 2rem;
    }

    .rdv-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .meetings-wrapper {
        margin: 0 10px;
        padding: 15px;
    }

    .meetings-iframe-container {
        min-height: 450px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .rdv-section-title-large {
        font-size: 1.6rem;
    }

    .rdv-section-subtitle-large {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rdv-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .rdv-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .meetings-iframe-container {
        min-height: 400px;
    }

    .rdv-section-title-large {
        font-size: 1.4rem;
    }
}
