body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Styles pour la section principale (main) */
main {
    margin-top: 70px; /* Pour compenser le header fixe */
    font-family: 'Montserrat', Arial, sans-serif;
}

/* =============== NOUVELLE SECTION HERO =============== */

/* Section Hero - Structure en deux parties */
.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;  /* ← Important ! */
}

/* PARTIE SUPÉRIEURE VIOLETTE */
.hero-purple-section {
    width: 100%;
	background: linear-gradient(135deg, rgba(203, 108, 230, 0.85) 0%, rgba(185, 104, 255, 0.85) 50%, rgba(216, 150, 255, 0.85) 100%),
    url('../Images/accueil-hero.png');
	background-position: center;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.hero-purple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(203, 108, 230, 0.2), rgba(216, 150, 255, 0.2));
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

.hero-model-left,
.hero-model-right {
    position: absolute;
    width: 650px;        /* Au lieu de 380px - BEAUCOUP PLUS GRAND ! */
    top: 1;
    bottom: 0;
    z-index: 100;
    pointer-events: none;
}

.hero-model-left {
    left: -50px;   /* Décalé vers la gauche */
}

.hero-model-right {
    right: -80px;        /* Décalé vers la droite */
}
.hero-model-left img,
.hero-model-right img {
    width: 100%;
    height:100%;
    object-fit: cover;       /* Cover au lieu de contain */
    object-position: center;
}

.hero-purple-content {
    flex: 1;
    text-align: center;
    color: white;
    padding: 40px;
    position: relative;
    z-index: 50;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.8); }
}
/* ================================
   FAQ SECTION - DÉPLIABLE
   ================================ */

.faq-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 20px;
}

.faq-container h2 {
    color: #cb6ce6;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
    font-weight: 600;
    border-bottom: 3px solid #cb6ce6;
    padding-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #cb6ce6;
    border-radius: 12px;
    background-color: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(203, 108, 230, 0.2);
}

.faq-item h3 {
    color: #000000;
    margin: 0;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item h3:hover {
    background-color: #f9f9f9;
}

/* Icône + pour déplier */
.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8em;
    color: #cb6ce6;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Icône - quand ouvert */
.faq-item.active h3::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    color: #cb6ce6;
    font-size: 1em;
    line-height: 1.8;
    margin: 0;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

/* Paragraphe visible quand la FAQ est active */
.faq-item.active p {
    max-height: 500px;
    padding: 0 25px 20px 25px;
    opacity: 1;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .faq-container {
        padding: 30px 15px;
        margin: 40px auto;
    }

    .faq-container h2 {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .faq-item h3 {
        font-size: 1.05em;
        padding: 18px 20px;
        padding-right: 50px;
    }

    .faq-item h3::after {
        right: 20px;
        font-size: 1.5em;
    }

    .faq-item p {
        font-size: 0.95em;
        padding: 0 20px;
    }

    .faq-item.active p {
        padding: 0 20px 18px 20px;
    }
}

.hero-title-underline {
    width: 140px;
    height: 4px;
    background-color: white;
    margin: 0 auto 40px;
}

.hero-subtitle {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

/* PARTIE INFÉRIEURE BLANCHE PLEINE LARGEUR */
.hero-white-section {
    width: 95%;
    background-color: white;
    padding: 20px 50px;
    text-align: center;
    position: relative;
    z-index: 0;
}

.hero-call-now {
    font-size: 3rem;
    color: #cb6ce6;
    font-weight: bold;
    margin-bottom: 50px;
}

.hero-contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 320px;
    animation: boxFloat 3s ease-in-out infinite;
}

/* Animation flottante pour les boxes */
@keyframes boxFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Décalage de l'animation pour la deuxième box */
.hero-contact-box:nth-child(3) {
    animation-delay: 1.5s;
}

.hero-contact-label {
    background-color: #cb6ce6;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 12px 50px;
    border-radius: 40px;
    margin-bottom: 20px;
    animation: labelPulse 2s ease-in-out infinite;
}

/* Animation pulsation pour les labels */
@keyframes labelPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(203, 108, 230, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(203, 108, 230, 0); }
}

/* Style de base commun */
.hero-phone-display {
    font-size: 2rem;
    font-weight: bold;
    padding: 18px 30px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 3px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    animation: phoneShake 4s ease-in-out infinite;
    position: relative;
}

/* Animation de shake subtile pour attirer l'attention */
@keyframes phoneShake {
    0%, 90%, 100% { transform: translateX(0) scale(1); }
    92%, 96% { transform: translateX(-3px) scale(1.02); }
    94%, 98% { transform: translateX(3px) scale(1.02); }
}

/* Animation glow continue */
@keyframes phoneGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(203, 108, 230, 0.5); }
    50% { box-shadow: 0 0 25px rgba(203, 108, 230, 0.8), 0 0 40px rgba(203, 108, 230, 0.4); }
}

/* Premier numéro (Direct) - Violet avec texte blanc */
.hero-phone-display.purple {
    background-color: #cb6ce6;
    color: #ffffff;
    animation: phoneShake 4s ease-in-out infinite, phoneGlow 3s ease-in-out infinite;
}

/* Deuxième numéro (Audiotel) - Blanc avec texte et bordures violets */
.hero-phone-display.white {
    background-color: #ffffff;
    color: #cb6ce6;
    border: 3px solid #cb6ce6;
    animation: phoneShake 4s ease-in-out infinite 2s, phoneGlow 3s ease-in-out infinite 1.5s;
}

/* Animation glow pour le numéro blanc */
@keyframes phoneGlowWhite {
    0%, 100% { box-shadow: 0 0 10px rgba(203, 108, 230, 0.5), inset 0 0 10px rgba(203, 108, 230, 0.1); }
    50% { box-shadow: 0 0 25px rgba(203, 108, 230, 0.8), 0 0 40px rgba(203, 108, 230, 0.4), inset 0 0 15px rgba(203, 108, 230, 0.2); }
}

.hero-phone-display:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.6);
    animation: none; /* Arrête l'animation shake au survol */
}

/* Effet hover spécifique pour le numéro violet */
.hero-phone-display.purple:hover {
    background-color: #d896ff;
    box-shadow: 0 10px 40px rgba(203, 108, 230, 0.8);
}

/* Effet hover spécifique pour le numéro blanc */
.hero-phone-display.white:hover {
    background-color: #f5e6ff;
    border-color: #d896ff;
    transform: scale(1.1) rotate(-2deg);
}

.hero-payment-info {
    color: #cb6ce6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: textPulse 3s ease-in-out infinite;
}

/* Animation de pulsation du texte */
@keyframes textPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-icon {
    color: #cb6ce6;
    animation: iconBounce 2s ease-in-out infinite;
}

/* Animation bounce pour les icônes */
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-4px); }
}

.hero-icon svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 8px rgba(203, 108, 230, 0.4));
    transition: all 0.3s ease;
}

/* Effet hover sur les icônes */
.hero-icon:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(203, 108, 230, 0.8));
}

.hero-divider {
    width: 2px;
    height: 280px;
    background-color: #e5b3ff;
}

/* =============== SECTIONS EXISTANTES =============== */

/* Section Bienvenue */
.welcome {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0ff 100%);
}

.welcome h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}

.welcome p {
    max-width: 1200px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 18px;
    color: #000000;
}

.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    flex: 1;
    min-width: 200px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.feature h3 {
    font-size: 20px;
    color: #000000;
    margin-top: 10px;
    text-align: center;
}

/* Section Prix */
.pricing {
    padding: 20px;
    text-align: center;
}

.pricing h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
}

.divider {
    width: 250px;
    height: 2px;
    background-color: black;
    border: none;
    margin: 10px auto 30px;
}

.divider2 {
    width: 150px;
    height: 3px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    margin: 10px auto 30px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.divider3 {
    width: 250px;
    height: 2px;
    background-color: white;
    border: none;
    margin: 10px auto 30px;
}

/* Section Pourquoi nous choisir */
.why-us {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid black;
    display: inline-block;
    padding-bottom: 8px;
}

.why-us-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.why-us-text {
    color: white;
    padding: 40px;
    flex: 1 1 500px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.33);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-us-text h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.why-us-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}
/* ═══════════════════════════════════════════════════════════
   CODE À COPIER-COLLER À LA FIN DE Css/accueil.css
   ═══════════════════════════════════════════════════════════ */

/* CARROUSEL HÔTESSES */
.carousel-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel {
    display: flex;
    gap: 30px;
    /* animation: scroll 20s linear infinite; */
}

.carousel.paused {
    animation-play-state: paused;
}

/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 4));
    }
} */

.card {
    min-width: calc((100% - 90px) / 3);
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0ff 100%);
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.3);
}

.photo-container {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.card:hover .photo-container {
    transform: scale(1.05);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.photo-container:hover img {
    filter: brightness(1.1);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cb6ce6 0%, #8e44ad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    opacity: 0.3;
}

.card-content h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.card-content .role {
    color: #cb6ce6;
    font-size: 0.95em;
    margin-bottom: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.audio-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(203, 108, 230, 0.1);
    border-radius: 15px;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.play-button {
    background: linear-gradient(135deg, #C930CE, #D78EEC);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 0.9em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(203, 108, 230, 0.3);
}

.play-button:hover {
    background: linear-gradient(135deg, #b757d4, #C930CE);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(203, 108, 230, 0.4);
}

.play-button.playing {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.play-button:active {
    transform: translateY(0);
}

.audio-section audio {
    width: 100%;
    margin-top: 15px;
    outline: none;
}

audio::-webkit-media-controls-panel {
    background-color: rgba(203, 108, 230, 0.1);
}

@media (max-width: 1200px) {
    .card {
        min-width: calc((100% - 60px) / 2);
    }
}

@media (max-width: 768px) {
    .card {
        min-width: 100%;
        padding: 30px 20px;
    }
    
    .photo-container {
        width: 180px;
        height: 180px;
    }

    .card-content h2 {
        font-size: 1.5em;
    }
}
.why-us-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.more-info {
    padding: 14px 32px;
    font-size: 22px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: auto;
}

.more-info:hover {
    background-color: white;
    color: #D299E3;
    transform: scale(1.05);
}

.why-us-image {
    flex: 1 1 500px;
    min-height: 550px;
    background-image: url('../Images/2ImageAccueil.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-us-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Section Hôtesses avec iframe */
.hostesses {
    padding: 40px 20px;
    text-align: center;
    background-color: white;
}

.hostesses h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 30px;
}

.hostess-iframe-container {
    max-width: 100%;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hostess-iframe-container iframe {
    width: 100%;
    min-height: 460px;
    border: none;
}

.discover-button-container {
    display: flex;
    justify-content: center;
}

.discover-btn {
    background-color: #B02AAC;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(176, 42, 172, 0.3);
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: #8B0A86;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(176, 42, 172, 0.4);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.footer-image {
    width: 80px;
    height: auto;
}

.footer-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-text p {
    font-size: 14px;
    color: #ccc;
}

.footer-separator {
    width: 2px;
    height: 100px;
    background-color: #444;
}

.footer-right {
    flex: 1;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #cb6ce6;
}

/* ======= RESPONSIVE DESIGN ======= */

/* Tablettes (1024px et moins) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-purple-content {
        padding: 30px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-call-now {
        font-size: 2.5rem;
    }
    
    .features {
        gap: 30px;
    }
    
    .why-us-content {
        gap: 40px;
    }
    
    .why-us-text h3 {
        font-size: 26px;
    }
    
    .why-us-text p {
        font-size: 18px;
    }
    
    .more-info {
        font-size: 20px;
        padding: 12px 28px;
    }
}

/* Responsive - Tablettes et mobiles */
@media (max-width: 1580px) {
    .hero-model-left,
    .hero-model-right {
        display: none;
    }

    .hero-purple-section {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-purple-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-purple-section {
        min-height: 35vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-call-now {
        font-size: 2.2rem;
    }

    .hero-contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-divider {
        width: 80%;
        height: 2px;
    }

    .hero-phone-display {
        font-size: 1.6rem;
    }

    .hero-contact-label {
        font-size: 1.5rem;
        padding: 10px 40px;
    }

    .hero-white-section {
        padding: 30px 20px;
    }

    .hero-purple-content {
        padding: 30px 20px;
    }
    
    .welcome {
        padding: 25px 10px;
    }
    
    .welcome h2 {
        font-size: 22px;
    }
    
    .welcome p {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px auto;
    }
    
    .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .feature h3 {
        font-size: 14px;
        line-height: 1.2;
        margin-top: 8px;
    }
    
    .feature {
        flex: 1;
        min-width: 180px;
        max-width: 200px;
        margin-bottom: 10px;
    }
    
    .why-us .pricing h2 {
        font-size: 20px;
    }
    
    .why-us-text {
        padding: 20px 15px;
		flex: 1 1 0px;
    }
    
    .why-us-text h3 {
        font-size: 20px;
    }
    
    .why-us-text p {
        font-size: 14px;
    }
    
    .more-info {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .why-us-image {
        min-height: 250px;
    }
    
    .hostesses h2 {
        font-size: 20px;
    }
    
    .hostess-iframe-container iframe {
        min-height: 300px;
    }
    
    .discover-btn {
        font-size: 18px;
        padding: 8px 20px;
    }
    
    .divider, .divider3 {
        width: 150px;
    }
    
    .divider2 {
        width: 100px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-separator {
        width: 100%;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .hero-purple-section {
        min-height: 30vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-call-now {
        font-size: 1.8rem;
    }

    .hero-contact-label {
        font-size: 1.3rem;
        padding: 8px 30px;
    }

    .hero-phone-display {
        font-size: 1.4rem;
        padding: 15px 20px;
    }
    
    .welcome h2 {
        font-size: 20px;
    }
    
    .welcome p {
        font-size: 13px;
    }
    
    .why-us .pricing h2 {
        font-size: 18px;
    }
    
    .why-us-text h3 {
        font-size: 18px;
    }
    
    .why-us-text p {
        font-size: 13px;
    }
    
    .more-info {
        font-size: 14px;
        padding: 6px 16px;
    }
    
    .hostesses h2 {
        font-size: 18px;
    }
    
    .discover-btn {
        font-size: 16px;
        padding: 6px 16px;
    }
}

/* Mode paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-purple-section {
        min-height: 50vh;
    }
    
    .hero-purple-content {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-call-now {
        font-size: 2rem;
    }
    
    .hero-contact-container {
        flex-direction: row;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .features {
        flex-direction: row;
        gap: 15px;
    }
    
    .feature {
        min-width: 150px;
        max-width: 180px;
    }
}

/* Optimisations pour les écrans haute résolution */
@media (min-width: 1200px) {
    .features {
        gap: 60px;
    }
    
    .why-us-content {
        gap: 60px;
    }
    
    .hostess-iframe-container {
        max-width: 1200px;
    }
}

/* Corrections pour les très larges écrans */
@media (min-width: 1440px) {
    .welcome p {
        font-size: 20px;
    }
    
    .why-us-text p {
        font-size: 22px;
    }
}
/* =============== FAQ SECTION STYLE TARIFS =============== */
.faq-section-accueil {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-card-accueil {
    background: white;
    border: 2px solid #cb6ce6;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 8px 20px rgba(203, 108, 230, 0.15);
}

.faq-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #cb6ce6;
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #cb6ce6;
}

.faq-item-accueil {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item-accueil:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question-accueil {
    font-size: 20px;
    font-weight: 600;
    color: #cb6ce6;
    margin-bottom: 15px;
}

.faq-answer-accueil {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Cacher l'ancien style FAQ dépliable */
.faq-container {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section-accueil {
        margin: 50px auto;
        padding: 0 15px;
    }
    
    .faq-card-accueil {
        padding: 30px 25px;
    }
    
    .faq-main-title {
        font-size: 26px;
    }
    
    .faq-question-accueil {
        font-size: 18px;
    }
    
    .faq-answer-accueil {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-card-accueil {
        padding: 25px 20px;
    }
    
    .faq-main-title {
        font-size: 22px;
    }
}

/* =============== SECTION CARROUSEL HÔTESSES AUTOMATIQUE =============== */
.hostesses {
    padding: 40px 20px;
    text-align: center;
    background-color: white;
}

.hostesses h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 30px;
}

.carousel-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 40px;
    animation: scroll-carousel 30s linear infinite;
    width: fit-content;
    padding: 20px 0;
}

.carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Style des cartes */
.card {
    min-width: 350px;
    max-width: 350px;
    background: white;
    border: 3px solid #cb6ce6;
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(203, 108, 230, 0.15);
    flex-shrink: 0;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.35);
    border-color: #b968ff;
}

.photo-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f0f8 0%, #faf5fc 100%);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .photo-container img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px 30px 15px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.card-content .role {
    color: #cb6ce6;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    width: 100%;
    text-align: center;
}

/* Section CTA - Parfaitement centré */
.cta-section {
    padding: 20px 30px 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-rejoindre {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #cb6ce6 0%, #b968ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 108, 230, 0.3);
    border: none;
    cursor: pointer;
    margin: 0 auto;
}

.btn-rejoindre:hover {
    background: linear-gradient(135deg, #b968ff 0%, #d896ff 100%);
    box-shadow: 0 6px 20px rgba(203, 108, 230, 0.5);
}

.btn-rejoindre:active {
    box-shadow: 0 3px 10px rgba(203, 108, 230, 0.4);
}

/* Bouton découvrir */
.discover-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.discover-btn {
    background-color: #B02AAC;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.discover-btn:hover {
    background-color: #8e2289;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(176, 42, 172, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .photo-container {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hostesses h2 {
        font-size: 20px;
    }
    
    .carousel {
        gap: 25px;
        animation-duration: 25s;
    }
    
    .card {
        min-width: 280px;
        max-width: 280px;
        padding: 30px 20px;
    }
    
    .photo-container {
        height: 250px;
        width: 180px;
        height: 180px;
    }
    
    .card-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-rejoindre {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .discover-btn {
        font-size: 18px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .carousel {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .photo-container {
        height: 220px;
    }
    
    .card-content {
        padding: 20px 15px 10px 15px;
    }
    
    .card-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 15px 20px 20px 20px;
    }
    
    .btn-rejoindre {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
    
    .discover-btn {
        font-size: 16px;
        padding: 6px 16px;
    }
}

/* =============== SCROLL TACTILE MOBILE =============== */
@media (max-width: 768px) {
    .carousel-container {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        cursor: grab;
    }
    
    .carousel-container:active {
        cursor: grabbing;
    }
    
    /* Scroll snap pour une meilleure expérience */
    .carousel {
        scroll-snap-type: x mandatory;
        animation-duration: 40s !important; /* Plus lent sur mobile : 40s au lieu de 25s */
    }
    
    .card {
        scroll-snap-align: center;
    }
    
    /* Masquer la scrollbar mais garder la fonctionnalité */
    .carousel-container::-webkit-scrollbar {
        display: none;
    }
    
    .carousel-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Ralentir encore plus sur petit mobile */
@media (max-width: 480px) {
    .carousel {
        animation-duration: 50s !important; /* Très lent sur petit écran */
    }
}

/* =============== FIX BOUCLE INFINIE =============== */
@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-75%);  /* -75% au lieu de -50% car on a 3x plus de clones */
    }
}

/* ================================================================
   HERO MOBILE — bloc unique, sans conflits
   Desktop : hero-mobile-only caché
   Mobile  : tout s'affiche dans l'ordre H1 → cartes → numéros → texte
   ================================================================ */

.hero-mobile-only { display: none; }

@media (max-width: 768px) {

    /* ─── Cacher éléments desktop ─── */
    .hero-model-left,
    .hero-model-right   { display: none !important; }
    .hero-white-section { display: none !important; }
    .hero-subtitle      { display: none !important; }

    /* ─── Section violette : pleine largeur, padding 0 horizontal ─── */
    .hero-purple-section {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 55px 0 36px !important;
        background: linear-gradient(160deg, #8e1fc8 0%, #b44fdb 45%, #d183f5 100%) !important;
        position: static !important;
        overflow: visible !important;
        display: block !important;
    }

    /* ─── Contenu violet en colonne ─── */
    .hero-purple-content {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* ─── 1. H1 TITRE en haut ─── */
    .hero-title {
        font-size: 2.5rem !important;
        font-weight: bold !important;
        color: white !important;
        text-align: center !important;
        margin: 0 0 10px 0 !important;
        padding: 0 16px !important;
        order: 1 !important;
        letter-spacing: 1px !important;
    }

    .hero-title-underline {
        width: 60px !important;
        height: 3px !important;
        background: rgba(255,255,255,0.65) !important;
        margin: 0 auto 20px !important;
        order: 2 !important;
    }

    /* ─── 2. BLOC MOBILE (cartes + numéros + texte) ─── */
    .hero-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        order: 3 !important;
    }

    /* ════ CARROUSEL HÔTESSES ════ */
    .hm-hostesses-label {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.72);
        margin: 0 0 12px;
        text-align: center;
    }

    .hm-carousel {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 4px 16px 14px;
        box-sizing: border-box;
        scrollbar-width: none;
    }
    .hm-carousel::-webkit-scrollbar { display: none; }

    .hm-card {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 145px;
        background: rgba(255,255,255,0.13);
        border: 1.5px solid rgba(255,255,255,0.3);
        border-radius: 18px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        backdrop-filter: blur(4px);
    }

    .hm-card-img {
        width: 100%;
        height: 155px;
        object-fit: cover;
        object-position: center top;
        display: block;
    }
    .hm-card-img--barbara { object-position: center 20%; }

    .hm-card-name {
        font-size: 1rem;
        font-weight: 700;
        color: white;
        margin: 8px 0 2px;
        text-align: center;
    }

    .hm-card-role {
        font-size: 0.62rem;
        color: rgba(255,255,255,0.68);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 8px;
        padding: 0 8px;
    }

    .hm-card-btn {
        display: block;
        width: calc(100% - 18px);
        margin: 0 9px 11px;
        padding: 8px 0;
        background: white;
        color: #8e1fc8;
        font-size: 0.72rem;
        font-weight: 700;
        text-align: center;
        border-radius: 30px;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }

    /* ════ NUMÉROS DE TÉLÉPHONE ════ */
    .hm-callnow {
        font-size: 1.35rem;
        font-weight: 800;
        color: white;
        text-align: center;
        margin: 22px 0 14px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }

    .hm-phone-box {
        width: calc(100% - 32px);
        border-radius: 16px;
        padding: 14px 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }
    .hm-phone-box--direct  { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.45); }
    .hm-phone-box--audiotel{ background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.28); }

    .hm-badge {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 4px 18px;
        border-radius: 20px;
        margin-bottom: 10px;
    }
    .hm-badge--outline { color: white; border: 1.5px solid rgba(255,255,255,0.65); background: transparent; }
    .hm-badge--filled  { color: white; background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.4); }

    .hm-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px 10px;
        border-radius: 13px;
        font-size: 1.28rem;
        font-weight: 800;
        letter-spacing: 2px;
        text-decoration: none;
        margin-bottom: 8px;
        box-sizing: border-box;
    }
    .hm-phone--white  { background: white; color: #8e1fc8; box-shadow: 0 5px 18px rgba(0,0,0,0.18); }
    .hm-phone--purple { background: rgba(255,255,255,0.13); color: white; border: 2px solid rgba(255,255,255,0.45); }

    .hm-info { font-size: 0.74rem; color: rgba(255,255,255,0.78); font-weight: 500; text-align: center; }

    .hm-sep {
        display: flex;
        align-items: center;
        width: calc(100% - 32px);
        margin: 12px 0;
        gap: 10px;
        color: rgba(255,255,255,0.55);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .hm-sep::before, .hm-sep::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.28);
    }

    /* ════ TEXTE DESCRIPTIF ════ */
    .hm-desc {
        font-size: 0.84rem;
        line-height: 1.75;
        color: rgba(255,255,255,0.8);
        text-align: center;
        margin: 20px 16px 0;
        padding: 0;
    }
}

/* Très petit écran */
@media (max-width: 380px) {
    .hero-title  { font-size: 2rem !important; }
    .hm-card     { width: 128px; }
    .hm-card-img { height: 138px; }
    .hm-phone    { font-size: 1.08rem; letter-spacing: 1px; }
}


/* ── Carte hôtesse entièrement cliquable (élément <a>) ── */
@media (max-width: 768px) {

    .hm-card {
        text-decoration: none;
        cursor: pointer;
    }

    .hm-card:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    /* Bouton "La rejoindre" — span visuel seulement, le clic est sur le <a> parent */
    .hm-card-btn {
        display: block;
        width: calc(100% - 18px);
        margin: 0 9px 8px;
        padding: 8px 0;
        background: white;
        color: #8e1fc8;
        font-size: 0.72rem;
        font-weight: 700;
        text-align: center;
        border-radius: 30px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        pointer-events: none; /* le clic passe au <a> parent */
    }

    /* Bouton appel direct — par-dessus la carte, intercepte le clic */
    .hm-card-call {
        display: block;
        width: calc(100% - 18px);
        margin: 0 9px 12px;
        padding: 8px 0;
        background: linear-gradient(135deg, #8e1fc8, #c05ee8);
        color: white;
        font-size: 0.72rem;
        font-weight: 700;
        text-align: center;
        border-radius: 30px;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(142,31,200,0.35);
        position: relative;
        z-index: 2; /* au-dessus du <a> parent pour intercepter le tap */
    }

    .hm-card-call:active {
        background: linear-gradient(135deg, #7a1ab0, #a84fd4);
        transform: scale(0.97);
    }
}


/* ── Carte hôtesse = lien tel entier ── */
@media (max-width: 768px) {
    .hm-card {
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(255,255,255,0.15);
    }
    .hm-card:active {
        transform: scale(0.96);
        opacity: 0.88;
    }
    .hm-card-btn {
        pointer-events: none;
    }
    /* Supprimer ancien bouton appel s'il reste */
    .hm-card-call { display: none !important; }
}