/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f9f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header et Navigation */
.header {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #f97316 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    /* gap: 1.5rem; */
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Section PublicitÃ© / BanniÃ¨res */
.promo-banner-section {
    margin-top: 80px; /* Compense la hauteur du header fixe */
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative;
    overflow: hidden;
    height: 120px;
}

.promo-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.promo-track {
    display: flex;
    width: 500%; /* 5 slides Ã— 100% */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: autoSlide 20s infinite;
}

@keyframes autoSlide {
    0%, 18% { transform: translateX(0); }
    20%, 38% { transform: translateX(-20%); }
    40%, 58% { transform: translateX(-40%); }
    60%, 78% { transform: translateX(-60%); }
    80%, 98% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

.promo-slide {
    min-width: 20%; /* 100% / 5 slides */
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #f97316 100%);
}

.promo-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.promo-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-slide:hover .promo-image img {
    transform: scale(1.1);
}

.promo-text {
    flex: 1;
    color: white;
}

.promo-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.promo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.promo-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.promo-btn i {
    font-size: 0.8rem;
}

/* Indicateurs de progression */
.promo-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-dot.active {
    background: white;
    transform: scale(1.2);
}

.promo-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* ContrÃ´les de navigation */
.promo-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.promo-nav-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    pointer-events: auto;
    opacity: 0;
}

.promo-banner-section:hover .promo-nav-btn {
    opacity: 1;
}

.promo-nav-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.promo-nav-btn i {
    font-size: 0.9rem;
}

/* Badge d'information */
.promo-info-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 10;
}

.promo-info-badge i {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Effets de parallaxe */
.promo-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,50 1000,100 0,100"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

/* Pause automatique au survol */
.promo-banner-section:hover .promo-track {
    animation-play-state: paused;
}

/* Hero Section Enhanced */
.hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #f97316 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    background-image: url('img/pub/pub-30082025080531.png');
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #d1fae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    color: #d1fae5;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d1fae5;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fb923c;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #d1fae5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #fb923c, #f97316);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #059669;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.building-icon {
    position: relative;
    font-size: 12rem;
    color: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(251, 146, 60, 0.8);
    animation: orbit 8s linear infinite;
}

.floating-icons i:nth-child(1) { animation-delay: 0s; }
.floating-icons i:nth-child(2) { animation-delay: 2s; }
.floating-icons i:nth-child(3) { animation-delay: 4s; }
.floating-icons i:nth-child(4) { animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* Section Directrice */
.directrice-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.directrice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.02) 0%, rgba(251, 146, 60, 0.02) 100%);
}

.directrice-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.directrice-photo {
    position: relative;
    text-align: center;
}

.director-image {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.2);
    border: 4px solid #059669;
    transition: all 0.3s ease;
}

.director-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.3);
}

.photo-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #fb923c;
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
}

.directrice-content {
    background: linear-gradient(135deg, #f0f9f0 0%, #dcfce7 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid #059669;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.directrice-header {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #059669;
    padding-bottom: 1.5rem;
}

.directrice-title {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
    font-weight: 700;
}

.directrice-name {
    font-size: 1.8rem;
    color: #064e3b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.directrice-position {
    font-size: 1.2rem;
    color: #fb923c;
    font-weight: 500;
    font-style: italic;
}

.directrice-message {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: #059669;
    opacity: 0.3;
}

.message-content {
    padding-left: 2rem;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
    text-align: justify;
}

.message-text.signature {
    font-weight: 600;
    color: #059669;
    font-style: italic;
    border-left: 4px solid #fb923c;
    padding-left: 1rem;
    background: rgba(251, 146, 60, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.directrice-signature {
    margin-top: 2rem;
    text-align: right;
    padding-top: 1.5rem;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #059669, #fb923c);
    margin: 0 0 1rem auto;
}

.signature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.5rem;
}

.signature-title {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Section VidÃ©o */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #f97316);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(5, 150, 105, 0.8), rgba(16, 185, 129, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fb923c, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.play-button i {
    margin-left: 5px;
}

.video-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.video-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#video-iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.video-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-highlights h4 {
    color: #059669;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #059669;
    margin-top: 0.2rem;
    min-width: 24px;
}

.highlight-item h5 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.video-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.action-btn.primary {
    background: linear-gradient(45deg, #059669, #10b981);
    color: white;
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

.action-btn.secondary {
    background: white;
    color: #059669;
    border: 2px solid #059669;
}

.action-btn.secondary:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
}

/* Galerie Photos */
.photo-gallery {
    margin-top: 4rem;
}

.photo-gallery h4 {
    color: #059669;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 150, 105, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Modal Galerie */
.gallery-modal {
    z-index: 3000;
}

.gallery-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.gallery-nav {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gallery-nav:hover {
    background: rgba(5, 150, 105, 0.8);
    transform: scale(1.1);
}

#galleryImage {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    background: #000;
}

.gallery-info {
    padding: 2rem;
    background: white;
    text-align: center;
}

.gallery-info h4 {
    color: #059669;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.gallery-info p {
    color: #6b7280;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: orange;
    font-weight: 700;
    background: linear-gradient(45deg, #fb923c, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #fb923c;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview Enhanced */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9f0 0%, #dcfce7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #dcfce7;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #f97316);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card.featured {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    transform: scale(1.05);
}

.service-card.featured .service-icon {
    color: #fb923c;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: inherit;
    font-weight: 600;
}

.service-card p {
    color: inherit;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: left;
}
/* Section Notre Ã‰quipe */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #f97316);
}

.team-category {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    color: #059669;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    justify-content: center;
}

.category-title i {
    font-size: 2.5rem;
    color: #fb923c;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-member.featured {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    transform: scale(1.05);
}

.team-member.featured .member-name,
.team-member.featured .member-position,
.team-member.featured .member-description {
    color: white;
}

.team-member.compact {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
}

.member-photo {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-member.compact .member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(5, 150, 105, 0.9), rgba(16, 185, 129, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-social a:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.team-member.compact .member-info {
    padding: 0;
    flex: 1;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 1rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-member.compact .member-description {
    display: none;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.team-member.featured .member-contact span {
    color: rgba(255,255,255,0.9);
}

.member-contact i {
    color: #fb923c;
    width: 16px;
}

/* Statistiques de l'Ã©quipe */
.team-stats {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 20px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-icon {
    font-size: 3rem;
    color: #fb923c;
    margin-bottom: 1rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Access Section */
.quick-access {
    padding: 60px 0;
    background: white;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-card {
    background: linear-gradient(135deg, #f0f9f0 0%, #dcfce7 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #dcfce7;
    transition: all 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quick-card i {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 1rem;
}

.quick-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #059669;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* Section Ã‰vÃ©nements */
.events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9f0 0%, #dcfce7 100%);
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #f97316);
}

.events-carousel {
    position: relative;
    margin-top: 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.event-card {
    min-width: 100%;
    background: white;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-image {
    position: relative;
    width: 40%;
    min-height: 300px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #059669, #10b981);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.event-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.event-category i {
    font-size: 1rem;
}

.event-title {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.event-summary {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.event-info i {
    color: #fb923c;
}

.event-btn {
    background: linear-gradient(45deg, #fb923c, #f97316);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* ContrÃ´les du carrousel */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: linear-gradient(45deg, #059669, #10b981);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #059669;
    transform: scale(1.2);
}

.dot:hover {
    background: #10b981;
}

/* Modal pour les dÃ©tails d'Ã©vÃ©nement */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.close:hover {
    background: rgba(255,255,255,0.3);
}

.modal-body {
    padding: 2rem;
}

.modal-event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f0f9f0;
    border-radius: 15px;
}

.modal-date, .modal-location, .modal-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 600;
}

.modal-date i, .modal-location i, .modal-time i {
    color: #fb923c;
    width: 20px;
}

.modal-description {
    margin-bottom: 2rem;
}

.modal-description p {
    color: #374151;
    line-height: 1.7;
    font-size: 1.1rem;
}

.modal-program, .modal-contact {
    margin-bottom: 1.5rem;
}

.modal-program h4, .modal-contact h4 {
    color: #059669;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-program ul {
    list-style: none;
    padding: 0;
}

.modal-program li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.modal-program li:before {
    content: 'â€¢';
    color: #fb923c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-contact p {
    color: #374151;
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

/* Service Details Enhanced */
.service-details {
    padding: 80px 0;
    background: #f7fdf7;
}

.service-detail {
    margin-bottom: 5rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb923c, #f97316);
}

.service-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-header i {
    margin-right: 1rem;
}

.service-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    padding: 3rem 2rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f0f9f0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #059669;
    transition: all 0.3s ease;
}

.info-card.highlight {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border-left: 4px solid #fb923c;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
}

.info-card h3 {
    color: inherit;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.stat {
    text-align: center;
    margin: 1.5rem 0;
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fb923c;
}

.label {
    color: inherit;
    opacity: 0.8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid Compact */
.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-compact {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-compact-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-compact-header i {
    font-size: 1.5rem;
}

.service-compact-content {
    padding: 1.5rem;
}

.compact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f0f9f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.feature-item i {
    color: #059669;
}

.clubs-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.club-tag {
    background: #059669;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.sports-categories {
    margin-bottom: 1rem;
}

.sport-category {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.bourses-conditions {
    margin-bottom: 1rem;
}

.condition-item {
    background: #f0f9f0;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Lists Styling */
.procedure-list, .criteria-list, .access-conditions {
    list-style: none;
    padding: 0;
}

.procedure-list {
    counter-reset: step-counter;
}

.procedure-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #dcfce7;
    position: relative;
    padding-left: 3rem;
    counter-increment: step-counter;
}

.procedure-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background: #059669;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.criteria-list li, .access-conditions li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #dcfce7;
}

.criteria-list i, .access-conditions i {
    color: #059669;
    width: 1.5rem;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.schedule-item i {
    color: #fb923c;
    font-size: 1.2rem;
}

/* Carte Section Enhanced */
.carte-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #f97316 100%);
    color: white;
    position: relative;
}

.carte-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,200 1000,0"/></svg>');
    background-size: cover;
}

.carte-section .container {
    position: relative;
    z-index: 1;
}

.carte-section .section-title {
    color: white;
}

.carte-section .section-subtitle {
    color: #d1fae5;
}

.procedure-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fb923c, #f97316);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

.carte-info {
    margin-top: 3rem;
}

.info-highlight {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-highlight i {
    font-size: 1.5rem;
    color: #fb923c;
    margin-top: 0.2rem;
}

/* Contact Section Enhanced */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9f0 0%, #dcfce7 100%);
    border-radius: 15px;
    border: 1px solid #dcfce7;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item a {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
}
 a {
    text-decoration: none;

}
.contact-item a:hover {
    text-decoration: underline;
}

.contact-badge {
    display: inline-block;
    background: #059669;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Footer Enhanced */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #10b981;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #10b981;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #10b981;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

.footer-stat {
    text-align: center;
}

.footer-stat .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fb923c;
    display: block;
}

.footer-stat .stat-label {
    font-size: 0.8rem;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* BanniÃ¨res responsive */
    .promo-banner-section {
        height: 100px;
    }

    .promo-content {
        padding: 0 1rem;
        gap: 1rem;
    }

    .promo-image {
        width: 60px;
        height: 60px;
    }

    .promo-text h3 {
        font-size: 1.1rem;
    }

    .promo-text p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .promo-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .promo-info-badge {
        top: 5px;
        right: 10px;
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }

    .promo-nav-btn {
        width: 30px;
        height: 30px;
    }

    .promo-nav-btn i {
        font-size: 0.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .building-icon {
        font-size: 8rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .directrice-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .director-image {
        width: 200px;
        height: 240px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .procedure-steps {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .compact-features {
        grid-template-columns: 1fr;
    }

    .clubs-mini {
        justify-content: center;
    }

    .footer-stats {
        justify-content: center;
    }

    /* Ã‰vÃ©nements responsive */
    .event-card {
        flex-direction: column;
    }

    .event-image {
        width: 100%;
        min-height: 200px;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .event-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .carousel-controls {
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-event-info {
        grid-template-columns: 1fr;
    }

    /* VidÃ©o responsive */
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-placeholder {
        height: 250px;
    }

    #video-iframe {
        height: 250px;
    }

    .video-details {
        order: -1;
    }

    .highlights-grid {
        gap: 0.5rem;
    }

    .highlight-item {
        padding: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 120px;
    }

    .gallery-modal-content {
        width: 95%;
        max-width: none;
    }

    #galleryImage {
        height: 50vh;
    }

    .gallery-info {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .promo-banner-section {
        height: 80px;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .promo-image {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    .promo-text h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .promo-text p {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }

    .promo-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }

    .promo-indicators {
        bottom: 5px;
    }

    .promo-dot {
        width: 6px;
        height: 6px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .service-header h2 {
        font-size: 1.8rem;
    }

    .building-icon {
        font-size: 6rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        min-width: 200px;
    }

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

    .directrice-name {
        font-size: 1.4rem;
    }

    .director-image {
        width: 180px;
        height: 220px;
    }

    .event-content {
        padding: 1rem;
    }

    .event-title {
        font-size: 1.3rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .video-placeholder {
        height: 200px;
    }

    #video-iframe {
        height: 200px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-info h3 {
        font-size: 1.4rem;
    }

    .video-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .action-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animations supplÃ©mentaires */
.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.service-detail {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.service-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation active state */
.nav-link.active {
    background: rgba(255,255,255,0.3) !important;
    transform: translateY(-2px);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Print styles */
@media print {
    .header, .footer, .hero-buttons, .quick-access, .carousel-controls, .modal, .video-section, .promo-banner-section {
        display: none;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: 2rem 0;
    }
    
    .service-card, .info-card, .event-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}