*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* PARTIE VIOLETTE (en haut) */
.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/1ImageServices.png');
    background-size: cover;
    background-position: center 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    padding: 80px 40px;
    max-height: 60vh;
}

.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;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

.hero-purple-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: none;
}

.hero-title-underline {
    width: 140px;
    height: 4px;
    background: white;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
    opacity: 0.95;
    margin: 0;
    text-shadow: none;
}

/* PARTIE BLANCHE (en bas) avec les services */
.hero-white-section {
    width: 100%;
    background: white;
    padding: 60px 40px;
    text-align: center;
}

.hero-call-now {
    font-size: 2.5rem;
    color: #cb6ce6;
    margin-bottom: 50px;
    font-weight: bold;
}

/* Container des 4 services */
.services-navigation {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

/* Service violet avec texte blanc */
.service-nav-button.purple {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background-color: #cb6ce6;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    box-shadow: none;
    flex: 1;
    max-width: 300px;
}

.service-nav-button.purple:hover {
    background-color: #d896ff;
    transform: translateY(-5px);
    box-shadow: none;
    color: white;
    text-decoration: none;
}

.service-nav-button.purple .service-nav-icon,
.service-nav-button.purple .service-nav-content h3,
.service-nav-button.purple .service-nav-content p {
    color: white !important;
}

/* Service blanc avec texte et bordure violet */
.service-nav-button.white {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background-color: white;
    border: 3px solid #cb6ce6;
    border-radius: 20px;
    text-decoration: none;
    color: #cb6ce6;
    transition: all 0.4s ease;
    box-shadow: none;
    flex: 1;
    max-width: 300px;
}

.service-nav-button.white:hover {
    background-color: #f5e6ff;
    transform: translateY(-5px);
    box-shadow: none;
    color: #cb6ce6;
    text-decoration: none;
}

.service-nav-button.white .service-nav-icon,
.service-nav-button.white .service-nav-content h3,
.service-nav-button.white .service-nav-content p {
    color: #cb6ce6 !important;
}

.service-nav-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-nav-content {
    text-align: center;
}

.service-nav-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    text-shadow: none;
}

.service-nav-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    text-shadow: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-purple-section {
        padding: 60px 30px;
        max-height: 50vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-purple-section {
        padding: 50px 20px;
        max-height: 45vh;
    }

    .hero-title {
        font-size: 2.8rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-white-section {
        padding: 40px 20px;
    }
    
    .services-navigation {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-nav-button.purple,
    .service-nav-button.white {
        max-width: 100%;
        min-height: auto;
        padding: 25px 20px;
    }

    .service-nav-content h3 {
        font-size: 18px;
    }

    .service-nav-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-purple-section {
        padding: 40px 15px;
        max-height: 40vh;
    }

    .hero-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-white-section {
        padding: 30px 15px;
    }

    .service-nav-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .service-nav-content h3 {
        font-size: 16px;
    }

    .service-nav-content p {
        font-size: 12px;
    }
}

/* =============== FIN HERO =============== */

/* 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);
    }

    .carousel-container {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .card {
        min-width: 100%;
        padding: 30px 20px;
        margin: 0 auto;
    }
    
    .photo-container {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
    }

    .card-content h2 {
        font-size: 1.5em;
    }

    .carousel-container {
        padding: 20px 10px;
    }

    .carousel {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 25px 15px;
    }

    .photo-container {
        width: 160px;
        height: 160px;
    }

    .card-content h2 {
        font-size: 1.3em;
    }

    .carousel-container {
        padding: 15px 5px;
    }
}

/* Section des services - Style épuré */
.services-charmes {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    position: relative;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2d1b69;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 255, 0.98));
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(199, 48, 206, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.services-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #C930CE, #D78EEC, #F127FF);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 0 20px rgba(199, 48, 206, 0.4);
}

.services-title:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(199, 48, 206, 0.2);
}

.divider {
    display: none; /* On cache le divider original */
}

.services-description {
    max-width: 1000px;
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    padding: 40px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 255, 0.98));
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(199, 48, 206, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    overflow: hidden;
}

.services-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #C930CE, #D78EEC, #F127FF);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 0 20px rgba(199, 48, 206, 0.4);
}

.services-description:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(199, 48, 206, 0.2);
}

.services-description p {
    font-size: 20px;
    line-height: 1.8;
    color: #2d1b69;
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Amélioration des points d'ancrage */
.service-card {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    background: white;
    border: 3px solid transparent;
    scroll-margin-top: 100px; /* Pour éviter que l'ancrage descende trop bas */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 109, 233, 0.05), rgba(240, 147, 251, 0.05), rgba(199, 48, 206, 0.05));
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #cb6ce6;
}

/* Carte BLANCHE avec texte et bordure violet (comme telephone premium) */
.purple-light {
    background-color: #ffffff;
    color: #cb6ce6;
    border: 3px solid #cb6ce6;
}

.purple-light .service-name,
.purple-light .service-subtitle,
.purple-light .service-description,
.purple-light p {
    color: #cb6ce6 !important;
}

.purple-light a {
    color: #cb6ce6 !important;
}

/* Carte VIOLETTE avec texte blanc */
.purple-medium {
    background-color: #cb6ce6;
    color: #ffffff;
    border: none;
}

.purple-medium .service-name,
.purple-medium .service-subtitle,
.purple-medium .service-description,
.purple-medium p {
    color: #ffffff !important;
}

.purple-medium a {
    color: #ffffff !important;
}

/* Carte VIOLETTE avec texte blanc */
.purple-dark {
    background-color: #cb6ce6;
    color: #ffffff;
    border: none;
}

.purple-dark .service-name,
.purple-dark .service-subtitle,
.purple-dark .service-description,
.purple-dark p {
    color: #ffffff !important;
}

.purple-dark a {
    color: #ffffff !important;
}

/* Carte BLANCHE avec texte et bordure violet (comme bouton white de l'accueil) */
.purple-premium {
    background-color: #ffffff;
    color: #cb6ce6;
    border: 3px solid #cb6ce6;
}

.purple-premium .service-name,
.purple-premium .service-subtitle,
.purple-premium .service-description,
.purple-premium p {
    color: #cb6ce6 !important;
}

.purple-premium a {
    color: #cb6ce6 !important;
}

.service-content {
    display: flex;
    overflow: hidden;
    min-height: 250px;
    position: relative;
    z-index: 2;
}

/* CORRECTION CENTRAGE SERVICE-LEFT - VERSION COMPLÈTE */
.service-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding: 40px 20px;
    position: relative;
    text-align: center;
    min-height: 180px;
}

.service-left::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    width: 1px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
}

.service-name {
    color: white;
    font-size: 32px;
    text-align: center;
    margin: 0 0 25px 0;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: none;
    width: 100%;
    box-sizing: border-box;
}

.service-subtitle {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    text-shadow: none;
}

.service-description {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
    text-align: center;
    opacity: 0.95;
    text-shadow: none;
}

.service-highlight {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

.service-icon {
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: none;
    flex-shrink: 0;
}

.service-icon:hover {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.service-icon img {
    max-width: 70px;
    max-height: 70px;
    filter: brightness(0) invert(1);
}

/* Icônes violettes pour les cartes blanches */
.purple-premium .service-icon,
.purple-light .service-icon {
    background: rgba(203, 108, 230, 0.1);
    border: 3px solid #cb6ce6;
    box-shadow: none;
}

.purple-premium .service-icon img,
.purple-light .service-icon img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(76%) saturate(1709%) hue-rotate(247deg) brightness(94%) contrast(90%);
}

.purple-premium .service-icon:hover,
.purple-light .service-icon:hover {
    background: rgba(203, 108, 230, 0.2);
    box-shadow: none;
}

/* Icônes blanches pour les cartes violettes */
.purple-medium .service-icon,
.purple-dark .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.purple-medium .service-icon img,
.purple-dark .service-icon img {
    filter: brightness(0) invert(1);
}

.purple-medium .service-icon:hover,
.purple-dark .service-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.service-right {
    width: 70%;
    padding: 40px;
    color: white;
    position: relative;
}

/* Styles spéciaux pour Telephone rose PREMIUM */
#telephone-premium .service-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#telephone-premium .service-text {
    margin-bottom: 30px;
}

#telephone-premium .service-icon {
    cursor: pointer;
}

#telephone-premium .service-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.premium-features {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: 25px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    justify-content: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.premium-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.premium-feature .feature-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.premium-feature span:last-child {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3;
}

/* Style pour le bouton d'appel premium */
.premium-call-button {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding: 30px 40px;
    background: transparent;
    border-radius: 25px;
    backdrop-filter: none;
    border: 2px solid #cb6ce6;
    transition: all 0.4s ease;
    box-shadow: none;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.premium-call-button:hover {
    background: rgba(203, 108, 230, 0.1);
    transform: translateY(-5px);
    box-shadow: none;
    border-color: #cb6ce6;
}

.premium-call-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.premium-call-button .phone-number {
    text-shadow: none;
    animation: none;
    font-weight: 900 !important;
    letter-spacing: 2px;
}

.premium-call-button p {
    margin: 8px 0;
    transition: all 0.3s ease;
}

.premium-call-button:hover p {
    transform: scale(1.05);
}

@keyframes phoneGlow {
    0%, 100% { 
        text-shadow: none;
    }
    50% { 
        text-shadow: none;
    }
}

/* Style pour la section Live show érotiques uniquement */
#live-show .service-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#live-show .service-text {
    width: 70%;
    padding-right: 20px;
    text-align: center;
}

#live-show .service-images {
    width: 50%;
    margin-top: 0;
}

#live-show .service-images img {
    max-width: 85%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

#live-show .service-images img:hover {
    transform: scale(1.8);
}

.service-images {
    margin-top: 20px;
}

.service-images img, .video-thumbnails img {
    max-width: 20%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-thumbnails {
    margin-top: 20px;
}

.video-thumbnails img {
    max-width: 100%;
    border-radius: 10px;
}

.video-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
	
    margin-top: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-categories a {
    width: calc(16.66% - 12px);
    max-width: 78px;
    display: block;
    transition: all 0.3s ease;
}

.video-categories a:hover {
    transform: translateY(-5px);
}

.video-categories img {
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-categories img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* NOUVELLE SECTION POUR LES CATÉGORIES D'HISTOIRES ÉROTIQUES */


/* Grille pour les catégories d'histoires érotiques */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    max-width: 500px;
    margin: 0 auto;
}

.category {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.category p {
    margin: 0;
    font-weight: 700;
    color: white;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    min-height: 20px;
}

/* Style pour les images de numéros de téléphone */
.phone-number {
    width: 300px;
    height: 40px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.phone-number:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: none;
}

.phone-number img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.phone-number a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Animations */
.service-card {
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

.service-card:nth-child(5) {
    animation-delay: 0.8s;
}

/* Animations pour les boutons de navigation */
.service-nav-button:nth-child(1) {
    animation-delay: 0.8s;
}

.service-nav-button:nth-child(2) {
    animation-delay: 1s;
}

.service-nav-button:nth-child(3) {
    animation-delay: 1.2s;
}

.service-nav-button:nth-child(4) {
    animation-delay: 1.4s;
}

/* ========== RESPONSIVE DESIGN MOBILE ========== */

/* Tablettes (1024px et moins) */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
        padding: 30px 20px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-image {
        width: 100%;
        height: 50vh;
        margin-left: 0;
        clip-path: none;
    }

    .services-navigation {
        max-width: 100%;
    }

    .features {
        gap: 40px;
    }

    .services-title {
        font-size: 38px;
        padding: 25px 30px;
    }

    .services-description {
        padding: 30px 25px;
    }

    .services-description p {
        font-size: 18px;
    }
}

/* Smartphones et tablettes en mode portrait (768px et moins) */
@media (max-width: 768px) {
    main {
        margin-top: 60px;
    }

    .hero {
        min-height: auto;
        padding: 30px 15px;
    }

    .hero-text {
        padding: 20px 10px;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-image {
        height: 40vh;
        border-radius: 20px;
        margin-top: 30px;
    }

    .services-navigation {
        gap: 15px;
        margin-top: 30px;
    }

    .service-nav-button {
        padding: 20px 25px;
        border-radius: 20px;
    }

    .service-nav-icon {
        font-size: 28px;
        margin-right: 20px;
        min-width: 50px;
    }

    .service-nav-content h3 {
        font-size: 18px;
    }

    .service-nav-content p {
        font-size: 14px;
    }

    .services-charmes {
        margin: 60px auto;
        padding: 0 15px;
    }

    .services-title {
        font-size: 32px;
        padding: 20px 25px;
        margin-bottom: 40px;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }

    .services-description {
        margin-bottom: 60px;
        padding: 25px 20px;
    }

    .services-description p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* CARTES DE SERVICES EN MODE MOBILE */
    .service-content {
        flex-direction: column;
        min-height: auto;
    }

    .service-left, .service-right {
        width: 100%;
    }

    .service-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 30px 20px;
        min-height: auto;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .service-left::before {
        display: none;
    }

    .service-name {
        font-size: 24px;
        margin: 0 0 20px 0;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .service-icon {
        width: 90px;
        height: 90px;
    }

    .service-icon img {
        max-width: 45px;
        max-height: 45px;
    }

    .service-right {
        padding: 15px 10px;
    }

    .service-subtitle {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .service-description, .service-highlight {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.5;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0 5px;
    }

    /* SECTION LIVE SHOW MOBILE */
    #live-show .service-right {
        flex-direction: column;
        align-items: center;
        padding: 15px 10px;
    }

    #live-show .service-text {
        width: 100%;
        max-width: 80%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    #live-show .service-images {
        width: 70%;
        margin: 0 auto 15px auto;
    }

    #live-show .service-images img {
        max-width: 100%;
    }

    /* CATÉGORIES D'HISTOIRES ÉROTIQUES MOBILE */
    .service-categories {
        padding: 15px 10px;
        max-width: 85%;
        margin: 10px auto;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 80%;
        margin: 0 auto;
    }

    .category {
        gap: 12px;
    }

    .category p {
        font-size: 16px;
        min-height: auto;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        white-space: normal;
        max-width: 90%;
        margin: 0 auto 8px auto;
    }

    .phone-number {
        width: 100%;
        max-width: 280px;
        height: 50px;
        margin: 0 auto;
    }

    /* VIDÉOS CATÉGORIES MOBILE */
    .video-categories {
        gap: 12px;
        padding: 15px 10px;
        max-width: 50%;
        margin: 10px auto;
    }

    .video-categories a {
        width: calc(25% - 9px);
        max-width: none;
    }

    /* PREMIUM CALL BUTTON MOBILE */
    .premium-call-button {
        padding: 12px 10px;
        margin: 10px auto;
        max-width: 85%;
        width: auto;
        border-radius: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .premium-call-button a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .premium-call-button .phone-number {
        font-size: 22px !important;
        letter-spacing: 1px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        max-width: 100%;
        text-align: center;
        margin: 5px 0 !important;
    }

    .premium-call-button p {
        font-size: 15px !important;
        margin: 4px 0 !important;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .premium-features {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        max-width: 90%;
        margin: 8px auto;
    }

    .premium-feature {
        font-size: 14px;
        text-align: center;
    }

    .premium-feature .feature-icon {
        font-size: 20px;
    }

    /* SECTION AVANTAGES MOBILE */
    .welcome {
        padding: 40px 15px;
    }

    .welcome h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .features {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .feature {
        max-width: 100%;
        text-align: center;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }

    .feature h3 {
        font-size: 18px;
        margin-top: 10px;
    }

    /* SECTION HÔTESSES MOBILE */
    .hostesses {
        padding: 40px 15px;
    }

    .hostesses h2 {
        font-size: 28px;
        margin-bottom: 25px;
        padding: 0 10px;
        line-height: 1.3;
    }

    .hostess-iframe-container {
        padding: 15px;
        border-radius: 15px;
    }

    .hostess-iframe-container iframe {
        min-height: 350px;
        border-radius: 10px;
    }

    .discover-btn {
        font-size: 20px;
        padding: 12px 30px;
    }
}

/* Smartphones en mode portrait (480px et moins) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image {
        height: 35vh;
    }

    .service-nav-button {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .service-nav-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 24px;
    }

    .service-nav-content h3 {
        font-size: 16px;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }

    .service-nav-content p {
        font-size: 13px;
        line-height: 1.4;
        text-align: center;
    }

    .services-title {
        font-size: 28px;
        padding: 18px 20px;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .services-description p {
        font-size: 15px;
        line-height: 1.5;
    }

    .service-left {
        padding: 25px 15px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .service-name {
        font-size: 22px;
        line-height: 1.2;
        margin: 0 0 18px 0;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-icon img {
        max-width: 40px;
        max-height: 40px;
    }

    .service-subtitle {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 6px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .service-description, .service-highlight {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 6px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0 5px;
    }

    /* LIVE SHOW MOBILE TRÈS PETIT ÉCRAN */
    #live-show .service-text {
        max-width: 100%;
    }

    #live-show .service-images {
        width: 60%;
    }

    /* CATÉGORIES MOBILE TRÈS PETIT ÉCRAN */
    .service-categories {
        padding: 12px 8px;
        max-width: 80%;
        margin: 8px auto;
    }

    .categories-grid {
        gap: 15px;
        max-width: 100%;
    }

    .category p {
        font-size: 14px;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 6px;
        text-align: center;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .phone-number {
        max-width: 250px;
        height: 45px;
    }

    /* VIDÉOS MOBILE TRÈS PETIT ÉCRAN */
    .video-categories {
        gap: 10px;
        padding: 12px 8px;
        max-width: 100%;
        margin: 8px auto;
    }

    .video-categories a {
        width: calc(33.33% - 7px);
    }

    /* PREMIUM MOBILE TRÈS PETIT ÉCRAN */
    .premium-call-button {
        max-width: 80%;
        width: auto;
        padding: 10px 8px;
        box-sizing: border-box;
        margin: 8px auto;
    }

    .premium-call-button a {
        padding: 0 8px;
        box-sizing: border-box;
    }

    .premium-call-button .phone-number {
        font-size: 18px !important;
        letter-spacing: 0.5px;
        line-height: 1.2;
        max-width: 100%;
        box-sizing: border-box;
        margin: 3px 0 !important;
    }

    .premium-call-button p {
        font-size: 13px !important;
        margin: 3px 0 !important;
        line-height: 1.3;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 8px;
    }

    .premium-features {
        padding: 8px;
        max-width: 85%;
        gap: 6px;
        margin: 6px auto;
    }

    .premium-feature {
        font-size: 12px;
    }

    /* AVANTAGES MOBILE TRÈS PETIT ÉCRAN */
    .feature-icon {
        width: 90px;
        height: 90px;
    }

    .feature-icon img {
        width: 45px;
        height: 45px;
    }

    .feature h3 {
        font-size: 16px;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 5px;
    }

    .welcome h2 {
        font-size: 26px;
    }

    .hostesses h2 {
        font-size: 24px;
        padding: 0 10px;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hostess-iframe-container iframe {
        min-height: 320px;
    }

    .discover-btn {
        font-size: 18px;
        padding: 12px 28px;
    }
}

/* Très petits écrans (360px et moins) */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 30px;
    }

    .services-title {
        font-size: 24px;
        padding: 15px 18px;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
    }

    .service-nav-button {
        padding: 12px 15px;
    }

    .service-nav-content h3 {
        font-size: 15px;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .service-nav-content p {
        font-size: 12px;
        line-height: 1.3;
    }

    .service-left {
        padding: 20px 10px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .service-name {
        font-size: 20px;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 15px 0;
    }

    .service-icon {
        width: 75px;
        height: 75px;
    }

    .service-icon img {
        max-width: 35px;
        max-height: 35px;
    }

    .service-subtitle {
        font-size: 16px;
        line-height: 1.2;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0 10px;
        margin-bottom: 5px;
    }

    .service-description, .service-highlight {
        font-size: 13px;
        line-height: 1.3;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0 10px;
        margin-bottom: 5px;
    }

    .phone-number {
        max-width: 100%;
        height: 50px;
    }

    .category p {
        font-size: 13px;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 100%;
        margin: 0 auto 5px auto;
    }

    .video-categories a {
        width: calc(50% - 5px);
    }

    .video-categories {
        max-width: 100%;
        padding: 10px 6px;
        gap: 8px;
        margin: 6px auto;
    }

    .service-categories {
        max-width: 100%;
        padding: 10px 6px;
        margin: 6px auto;
    }

    .categories-grid {
        max-width: 100%;
    }

    #live-show .service-text {
        max-width: 100%;
    }

    #live-show .service-images {
        width: 100%;
    }

    .premium-call-button {
        max-width: 100%;
        width: 100%;
        padding: 8px 10px;
        margin: 6px auto;
        box-sizing: border-box;
    }

    .premium-call-button a {
        padding: 0 6px;
        box-sizing: border-box;
    }

    .premium-call-button .phone-number {
        font-size: 16px !important;
        letter-spacing: 0.3px;
        line-height: 1.1;
        max-width: 100%;
        box-sizing: border-box;
        margin: 2px 0 !important;
    }

    .premium-call-button p {
        font-size: 11px !important;
        margin: 2px 0 !important;
        line-height: 1.2;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .premium-features {
        max-width: 100%;
        padding: 6px;
        gap: 4px;
        margin: 4px auto;
    }

    .premium-feature {
        font-size: 11px;
    }

    .feature h3 {
        font-size: 14px;
        line-height: 1.2;
        padding: 0 3px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .welcome h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .hostesses h2 {
        font-size: 20px;
        line-height: 1.2;
        padding: 0 5px;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Section Bienvenue */
.welcome {
    padding: 0px 20px;
    text-align: center;
}

.welcome h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d1b69;
    font-weight: 700;
}

.features {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    flex: 1;
    min-width: 200px;
}

.feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.feature h3 {
    font-size: 20px;
    color: #2d1b69;
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

/* Section Hôtesses avec iframe */
.hostesses {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.hostesses h2 {
    font-size: 36px;
    color: #2d1b69;
    margin-bottom: 30px;
    font-weight: 700;
}

.hostess-iframe-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hostess-iframe-container iframe {
    border-radius: 15px;
    width: 100%;
    min-height: 460px;
    border: none;
}

.discover-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.discover-btn {
    background: linear-gradient(135deg, #C930CE, #D78EEC);
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(199, 48, 206, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.discover-btn:hover {
    background: linear-gradient(135deg, #B02AAC, #C930CE);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(199, 48, 206, 0.4);
    text-decoration: none;
    color: white;
}

/* Styles pour le corps de la page */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
}

main {
    margin-top: 70px; /* Pour compenser le header fixe */
}

/* Scroll fluide */
html {
    scroll-behavior: smooth;
}

/* Animations globales */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-icon {
    animation: pulse 3s infinite;
}

/* Footer styles si nécessaire */
.footer {
    background: #2d1b69;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-image {
    width: 60px;
    height: 60px;
}

.footer-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.footer-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-separator {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right li {
    margin-bottom: 10px;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #D78EEC;
}

/* Corrections spécifiques pour le footer mobile */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 15px;
    }

    .footer-separator {
        width: 80%;
        height: 1px;
    }

    .footer-text h3 {
        font-size: 16px;
    }

    .footer-text p {
        font-size: 13px;
        padding: 0 10px;
    }

    .footer-right a {
        font-size: 13px;
    }
}
/* ===============================================
   GRILLE PLEINE LARGEUR + IMAGE CENTRALE HAUTEUR TOTALE
   =============================================== */

.services-grid-wrapper {
    display: flex;
    gap: clamp(300px, 30vw, 600px);
    width: 100%;
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
    justify-content: center;
}

.services-column-left,
.services-column-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: clamp(350px, 28vw, 500px);
    max-width: 500px;
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.services-center-image {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
   transform: translateX(-50%) translateY(-40px);
    width: clamp(280px, 22vw, 500px);
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.services-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    background: transparent;
}

.services-center-image img:hover {
    transform: scale(1.03);
}

/* Cartes de services - Hauteur uniforme */
.service-card {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}

.service-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.service-left {
    width: 100%;
    text-align: center;
    padding: 15px 12px 3px;
    box-sizing: border-box;
}

.service-name {
    font-size: 24px !important;
    margin-bottom: 4px !important;
    word-wrap: break-word;
    line-height: 1.2;
    padding: 0 5px;
}

.service-icon {
    width: 75px;
    height: 75px;
    margin: 3px auto 0;
}

.service-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-right {
    flex: 1;
    width: 100%;
    padding: 8px 12px 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-text {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.service-subtitle {
    font-size: 17px !important;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    margin: 6px 0 !important;
}

.service-description {
    font-size: 16px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    margin: 6px 0 !important;
}

.service-highlight {
    font-size: 16px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    margin: 6px 0 !important;
}

/* Bouton d'appel premium - Marges réduites */
.premium-call-button {
    width: 100%;
    margin: 10px auto 0;
    padding: 12px 8px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-call-button a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.premium-call-button .phone-number {
    font-size: 28px !important;
    font-weight: bold;
    margin: 5px auto !important;
    word-wrap: break-word;
    line-height: 1.2;
    text-align: center;
}

.premium-call-button p {
    font-size: 16px !important;
    margin: 4px auto !important;
    line-height: 1.3;
    word-wrap: break-word;
    text-align: center;
}

.premium-call-button p:last-child {
    font-size: 14px !important;
}

/* Catégories d'histoires - Marges réduites */
.service-categories {
    width: 100%;
    margin: 8px auto 0;
    box-sizing: border-box;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

.category {
    text-align: center;
    padding: 0px;
    box-sizing: border-box;
    width: 100%;
    max-width: 250px;
}

.category p {
    margin: 0 0 2px 0 !important;
    font-size: 16px !important;
    font-weight: 600;
    word-wrap: break-word;
    line-height: 1.2;
}

.category .phone-number {
    margin: 0 auto;
    max-width: 280px;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.category .phone-number a {
    display: block;
}

.category .phone-number img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transform: scale(1.15);
}

/* Images de live show */
.service-images {
    width: 100%;
    margin: 8px auto 0;
    text-align: center;
    padding: 20px;
}

.service-images a {
    display: inline-block;
    width: 100%;
}

.service-images img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.4);
}

/* Catégories vidéos - Marges supprimées */
.video-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
    gap: 8px;
    width: 100%;
    padding: 0;
    margin: 0;
    justify-items: center;
    box-sizing: border-box;
}

.video-categories a {
    display: block;
    width: 65px;
    transition: transform 0.3s ease;
}

.video-categories a:hover {
    transform: scale(1.08);
}

.video-categories img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Ajustement spécifique pour la carte "Histoires érotiques" */
#histoires-erotiques {
    height: 450px;
}

#histoires-erotiques .service-left {
    padding: 15px 12px 5px;
}

#histoires-erotiques .service-right {
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#histoires-erotiques .service-categories {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

#histoires-erotiques .service-subtitle {
    margin: 0 !important;
}

/* Ajustement spécifique pour la carte "Vidéos X porno" */
#videos-porno .service-subtitle {
    margin: 0 !important;
}

/* Responsive tablette */
@media (max-width: 1024px) {
    .services-charmes {
        margin: 60px auto;
        padding: 0 20px;
    }

    .services-title {
        font-size: 36px;
        padding: 25px 30px;
    }

    .services-description {
        padding: 30px 25px;
        margin-bottom: 60px;
    }

    .services-description p {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* Responsive tablette */
@media (max-width: 1400px) {
    .services-grid-wrapper {
        flex-direction: column;
        align-items: center;
        max-width: 700px;
        gap: 30px;
        margin: 40px auto;
        padding: 0 20px;
    }
    
    .services-column-left,
    .services-column-right {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Centrer les textes aussi sur tablette */
    .service-text,
    .service-subtitle,
    .service-description,
    .service-right p {
        text-align: center !important;
    }
    
    .services-center-image {
        position: static;
        transform: none;
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 10px auto;
        align-self: center;
        pointer-events: auto;
    }
    
    .services-center-image img {
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .service-card {
        min-height: auto;
    }
    
    .service-name {
        font-size: 22px !important;
    }

    /* Icones reduites des le mode colonne */
    .feature-icon {
        width: 90px;
        height: 90px;
    }

    .feature-icon img {
        width: 45px;
        height: 45px;
    }

    .features {
        gap: 30px;
    }

    .feature h3 {
        font-size: 16px;
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    /* FORCER TOUT LE TEXTE DANS LES SERVICES À ÊTRE CENTRÉ */
    .service-card *,
    .service-card p,
    .service-card div {
        text-align: center !important;
    }

    /* FORCER LA LARGEUR COMPLÈTE */
    .service-right {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
    }

    .service-text {
        width: 100% !important;
        max-width: 100% !important;
    }

    .service-description,
    .service-subtitle,
    .service-highlight {
        max-width: 100% !important;
        width: 100% !important;
    }

    .services-charmes {
        margin: 40px auto;
        padding: 0 15px;
    }

    .services-title {
        font-size: 24px;
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .services-description {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .services-description p {
        font-size: 15px;
        line-height: 1.6;
    }

    .services-grid-wrapper {
        padding: 0 12px;
        gap: 25px;
    }
    
    .service-card {
        min-height: auto;
        margin-bottom: 30px;
    }

    .service-left {
        text-align: center !important;
    }

    .service-text {
        text-align: center !important;
    }

    .service-subtitle,
    .service-description,
    .service-highlight {
        text-align: center !important;
    }
    
    .service-name {
        font-size: 20px !important;
        text-align: center !important;
    }

    /* Centrer le contenu premium */
    .service-right {
        text-align: center !important;
    }

    /* Forcer le centrage pour TOUTES les variantes de cartes */
    .purple-premium .service-text,
    .purple-premium .service-subtitle,
    .purple-premium .service-description,
    .purple-premium p {
        text-align: center !important;
    }

    .purple-light .service-text,
    .purple-light .service-subtitle,
    .purple-light .service-description,
    .purple-light p {
        text-align: center !important;
    }

    .purple-medium .service-text,
    .purple-medium .service-subtitle,
    .purple-medium .service-description,
    .purple-medium p {
        text-align: center !important;
    }

    .purple-dark .service-text,
    .purple-dark .service-subtitle,
    .purple-dark .service-description,
    .purple-dark p {
        text-align: center !important;
    }

    /* Forcer TOUS les paragraphes dans service-right */
    .service-right p,
    .service-text p,
    p.service-subtitle,
    p.service-description {
        text-align: center !important;
    }

    /* Centrer aussi les divs conteneurs */
    #telephone-premium .service-text,
    #live-show .service-text,
    #histoires-erotiques .service-text,
    #videos-porno .service-text {
        text-align: center !important;
    }

    /* Forcer avec sélecteurs ID */
    #telephone-premium p,
    #live-show p,
    #histoires-erotiques p,
    #videos-porno p {
        text-align: center !important;
    }

    /* Forcer TOUS les paragraphes dans service-right */
    .service-right p,
    .service-text p,
    p.service-subtitle,
    p.service-description {
        text-align: center !important;
    }

    /* Forcer le centrage des paragraphes dans premium */
    .premium-call-button,
    .premium-call-button a,
    .premium-call-button p,
    .premium-call-button .phone-number {
        text-align: center !important;
    }

    /* Styles inline override - forcer avec attribut */
    [style*="font-size"] {
        text-align: center !important;
    }

    /* Forcer TOUT ce qui a un style inline */
    a[style] p,
    div[style] p,
    p[style] {
        text-align: center !important;
    }

    /* Forcer spécifiquement pour premium-call-button */
    .premium-call-button a p {
        text-align: center !important;
    }

    .premium-call-button a[style] p[style] {
        text-align: center !important;
    }

    /* Forcer avec sélecteur très spécifique */
    #telephone-premium .premium-call-button a p,
    #telephone-premium .service-text p,
    #telephone-premium .service-subtitle,
    #telephone-premium .service-description {
        text-align: center !important;
    }

    #live-show .service-text p,
    #live-show .service-subtitle,
    #live-show .service-description {
        text-align: center !important;
    }

    /* Corriger les images live show */
    .service-images {
        padding: 10px !important;
        overflow: hidden !important;
    }

    .service-images a {
        display: block !important;
        width: 100% !important;
    }

    .service-images img {
        transform: scale(1) !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Forcer les corrections pour live-show spécifiquement */
    #live-show .service-images img {
        max-width: 100% !important;
        transform: scale(1) !important;
    }

    #live-show .service-images img:hover {
        transform: scale(1.05) !important;
    }

    /* Corriger les images vidéos x porno */
    .video-categories {
        padding: 10px 5px !important;
        justify-items: center !important;
        gap: 6px !important;
        grid-template-columns: repeat(4, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .video-categories a {
        width: 100% !important;
        max-width: 65px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .video-categories img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        transform: none !important;
        display: block !important;
    }

    /* Forcer pour videos-porno spécifiquement */
    #videos-porno .video-categories {
        padding: 10px 5px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    /* ========== NOUVELLES CORRECTIONS ========== */
    
    /* 1. Réduire l'espace entre texte et image live-show */
    #live-show .service-text {
        margin-bottom: 5px !important;
    }

    #live-show .service-images {
        margin-top: 5px !important;
        padding: 5px !important;
    }

    /* 2. Forcer le numéro de téléphone sur une seule ligne */
    .phone-number {
        white-space: nowrap !important;
        font-size: 20px !important;
        overflow: visible !important;
    }

    .premium-call-button .phone-number {
        font-size: 20px !important;
        white-space: nowrap !important;
    }

    /* 3. Corriger l'image 0895699867.jpg qui est coupée */
    .category .phone-number {
        width: 100% !important;
        max-width: 100% !important;
    }

    .category .phone-number img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        transform: scale(1) !important;
    }

    /* 4. Augmenter la hauteur de histoires-erotiques */
    #histoires-erotiques {
        min-height: 550px !important;
        height: auto !important;
    }

    #histoires-erotiques .service-right {
        padding: 10px 12px !important;
    }

    #histoires-erotiques .service-categories {
        margin-top: 0 !important;
    }

    #videos-porno .video-categories a {
        width: 100% !important;
        max-width: 65px !important;
    }

    #videos-porno .video-categories img {
        width: 100% !important;
    }

    /* Assurer que le conteneur parent est bien large */
    #videos-porno .service-right {
        width: 100% !important;
        padding: 8px 10px 12px !important;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-subtitle {
        font-size: 14px !important;
    }
    
    .service-description,
    .service-highlight {
        font-size: 13px !important;
    }
    
    .premium-call-button .phone-number {
        font-size: 20px !important;
    }
    
    .premium-call-button p {
        font-size: 13px !important;
    }
    
    .premium-call-button p:last-child {
        font-size: 11px !important;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .category .phone-number {
        max-width: 200px;
    }
    
    .video-categories {
        grid-template-columns: repeat(auto-fit, minmax(55px, 1fr)) !important;
        gap: 6px !important;
        padding: 10px 6px !important;
    }
    
    .video-categories a {
        width: 55px !important;
    }
    
    .category p {
        font-size: 12px !important;
    }
    
    .services-center-image {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 20px;
        padding: 18px 12px;
    }

    .services-description {
        padding: 20px 15px;
    }

    .services-description p {
        font-size: 14px;
    }

    .services-center-image {
        max-width: 240px;
    }
}

/* =============== RESPONSIVE WELCOME & FEATURES =============== */

@media (max-width: 1024px) {
    .welcome {
        padding: 50px 20px;
    }

    .welcome h2 {
        font-size: 32px;
    }

    .features {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .welcome {
        padding: 40px 15px;
    }

    .welcome h2 {
        font-size: 24px;
        padding: 0 10px;
    }

    .features {
        gap: 30px;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .feature {
        width: 100%;
        max-width: 280px;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
    }

    .feature-icon img {
        width: 45px;
        height: 45px;
    }

    .feature h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .welcome {
        padding: 30px 10px;
    }

    .welcome h2 {
        font-size: 20px;
        padding: 0 10px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature h3 {
        font-size: 15px;
    }
}

/* =============== RESPONSIVE HOSTESSES =============== */

@media (max-width: 1024px) {
    .hostesses {
        padding: 50px 20px;
    }

    .hostesses h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .hostesses {
        padding: 40px 15px;
    }

    .hostesses h2 {
        font-size: 24px;
        padding: 0 10px;
    }

    .hostess-iframe-container {
        padding: 15px;
    }

    .hostess-iframe-container iframe {
        min-height: 350px;
    }

    .discover-btn {
        font-size: 18px;
        padding: 12px 30px;
    }

    .discover-button-container {
        padding: 0 15px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hostesses h2 {
        font-size: 20px;
        padding: 0 10px;
    }

    .hostess-iframe-container {
        padding: 10px;
    }

    .hostess-iframe-container iframe {
        min-height: 300px;
    }

    .discover-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

/* =============== RESPONSIVE FOOTER =============== */

@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-left {
        flex-direction: column;
        text-align: center;
    }

    .footer-separator {
        width: 100%;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .footer-column ul {
        text-align: center;
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 10px;
    }

    .footer-image {
        width: 50px;
        height: 50px;
    }

    .footer-text h3 {
        font-size: 16px;
    }

    .footer-text p {
        font-size: 13px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }
}
/* =============== SECTION CARROUSEL HÔTESSES AUTOMATIQUE (COMME ACCUEIL) =============== */
.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 */
    }
}