/* =============== GLOBAL =============== */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* =============== HERO SECTION =============== */
.hero {
    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/image-hotesses.png');
    background-size: cover;
    background-position: center 19%;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.hero::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-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Partie gauche - Texte + Stats */
.hero-left {
    flex: 1;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-title-underline {
    width: 140px;
    height: 4px;
    background: white;
    margin-bottom: 30px;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Partie droite - 2 images */
.hero-right {
    display: flex;
    gap: 30px;
}

.hero-image-card {
    width: 280px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.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;
}
  .services-description {
        padding: 30px 25px;
    }

    .services-description p {
        font-size: 18px;
    }
}

.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;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.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);
}


/* Responsive pour services-title */
@media (max-width: 1024px) {
    .services-title {
        font-size: 38px;
        padding: 25px 30px;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 32px;
        padding: 20px 25px;
        margin-bottom: 40px;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 28px;
        padding: 18px 20px;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
}

	
.hero-image-card:hover {
    transform: translateY(-10px);
}

.image-1 {
    background-image: url('../Images/hotesses.jpg');
    background-size: cover;
	margin-top: 60px;
    background-position: center;
}

.image-2 {
    background-image: url('../Images/hotesses2.jpg');
    background-size: cover;
	margin-top: 20px;
    background-position: center;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* =============== GRILLE DES HÔTESSES =============== */
.hostesses-grid-section {
    background: white;
    padding: 50px 40px;
}

.hostesses-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hostesses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Carte hôtesse */
.hostess-card {
    background: white;
    border: 3px solid #cb6ce6;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.hostess-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.3);
}

.hostess-name-badge {
    background: #cb6ce6;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hostess-photo-round {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #cb6ce6;
    position: relative;
}

.hostess-photo-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cb6ce6 0%, #8e44ad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    font-weight: bold;
    opacity: 0.5;
}

.audio-presentation {
    margin-top: 20px;
}

.audio-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.audio-player {
    width: 100%;
    height: 40px;
}

/* =============== FILTRES =============== */
.filters-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #cb6ce6;
    border: 2px solid #cb6ce6;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(203, 108, 230, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #cb6ce6;
    color: white;
}

/* =============== CALL TO ACTION =============== */
.call-action-section {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0ff 100%);
    padding: 80px 40px;
    text-align: center;
}

.call-action-container {
    max-width: 900px;
    margin: 0 auto;
}

.call-action-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.call-action-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.call-action-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.call-action-phone {
    margin-bottom: 40px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #cb6ce6;
    padding: 25px 50px;
    border-radius: 60px;
    border: 3px solid #cb6ce6;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.3);
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.5);
    background: rgba(203, 108, 230, 0.1);
}

.phone-icon {
    font-size: 2.5rem;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.phone-number {
    letter-spacing: 3px;
    color: #cb6ce6;
}

.call-action-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.call-action-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #cb6ce6;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #cb6ce6;
    box-shadow: 0 5px 15px rgba(203, 108, 230, 0.2);
    transition: all 0.3s ease;
}

.call-action-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(203, 108, 230, 0.3);
    background: rgba(203, 108, 230, 0.05);
}

.call-action-features .feature-icon {
    font-size: 1.8rem;
}

.call-action-features .feature-text {
    font-weight: 600;
    color: #cb6ce6;
}

/* =============== SECTION CONFIDENTIALITÉ =============== */
.privacy-section {
    background: linear-gradient(135deg, #cb6ce6 0%, #b968ff 50%, #d896ff 100%);
    padding: 80px 40px;
    color: white;
    text-align: center;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.privacy-divider {
    width: 150px;
    height: 3px;
    background: white;
    margin: 20px auto 40px;
    border-radius: 2px;
}

.privacy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.privacy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
}

.privacy-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 15px;
}

.privacy-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.privacy-card p {
    color: #666;
    line-height: 1.6;
}

.privacy-cta {
    margin-top: 50px;
}

.privacy-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.privacy-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #cb6ce6;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1200px) {
    .hostesses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
.hero-description {
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.feature-item{
	text-align:center;
	}
	
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-title-underline {
        margin: 0 auto 30px;
    }
    
    .hostesses-grid {
        grid-template-columns: 1fr;
    }
    
    .call-action-title {
        font-size: 2rem;
    }
    
    .phone-link {
        font-size: 1.5rem;
        padding: 20px 35px;
        flex-direction: column;
        gap: 10px;
    }
    
    .call-action-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .privacy-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
/* =============== SECTIONS INFORMATIVES =============== */
.info-sections {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-card {
    background: white;
    border: 2px solid #cb6ce6;
    border-radius: 20px;
    padding: 40px 45px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(203, 108, 230, 0.15);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(203, 108, 230, 0.25);
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: #cb6ce6;
    margin-bottom: 20px;
    text-align: left;
}

.info-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.list-number {
    background: #cb6ce6;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.list-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.list-content strong {
    color: #cb6ce6;
    display: block;
    margin-bottom: 5px;
}

/* Responsive pour info-sections */
@media (max-width: 768px) {
    .info-sections {
        padding: 0 15px;
        margin: 40px auto;
    }
    
    .info-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .info-title {
        font-size: 24px;
    }
    
    .info-intro {
        font-size: 16px;
    }
    
    .list-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .list-content {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 25px 20px;
    }
    
    .info-title {
        font-size: 20px;
    }
    
    .info-intro {
        font-size: 15px;
    }
    
    .list-content {
        font-size: 14px;
    }
}
/* =============== BOUTON "LA REJOINDRE" DANS LES CARTES =============== */
.cta-section {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-rejoindre {
    display: block;
    width: 100%;
    max-width: 250px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #cb6ce6 0%, #b968ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    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%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 108, 230, 0.5);
}

.btn-rejoindre:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(203, 108, 230, 0.4);
}

/* Animation pulse pour attirer l'attention */
@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(203, 108, 230, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(203, 108, 230, 0.6);
    }
}

.btn-rejoindre {
    animation: pulse-cta 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-rejoindre {
        font-size: 1.1rem;
        padding: 12px 25px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .btn-rejoindre {
        font-size: 1rem;
        padding: 10px 20px;
        max-width: 200px;
    }
}
/* =============== BOUTON FLOTTANT TÉLÉPHONE =============== */
.floating-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: #cb6ce6;
    border: 2px solid #cb6ce6;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(203, 108, 230, 0.3);
    transition: all 0.3s ease;
}

.floating-phone-btn:hover {
    background-color: #cb6ce6;
    color: white;
    box-shadow: 0 6px 20px rgba(203, 108, 230, 0.5);
    transform: translateY(-2px);
}

.floating-phone-btn svg {
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .floating-phone-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ===== BOUTON EN SAVOIR + MOBILE UNIQUEMENT ===== */

.mobile-more {
    display: inline;
}

.read-more-btn {
    display: none;
}

@media (max-width: 768px) {

    .mobile-more {
        display: none;
    }

    .hero-description.expanded .mobile-more {
        display: inline;
    }

    .read-more-btn {
        display: inline-block;
        margin-top: 15px;
        background: transparent;
        border: 2px solid white;
        color: white;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .read-more-btn:hover {
        background: white;
        color: #cb6ce6;
    }
}