 /* ===== VARIABLES ===== */
:root {
    --primary-color: #558739;
    --primary-light: #6da85a;
    --primary-dark: #456f2d;
    --secondary-color: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --text-color: #333;
    --text-light: #666;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--white);
    background-color: var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.menu a:hover,
.menu a.active {
    color: var(--primary-color);
}

.menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-about {
    position: relative;
    height: 60vh;
    min-height: 300px;
    background: linear-gradient(135deg, 
                rgba(85, 135, 57, 0.85) 0%,
                rgba(85, 135, 57, 0.75) 100%), 
                url('images/about-bg.jpg') center/cover no-repeat;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 70px;
    overflow: hidden;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 70%);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-about h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-about p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    line-height: 1.8;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MISSION SECTION ===== */
.mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="%23558739" opacity="0.05"/></svg>');
}

.mission img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-hover);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.mission img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mission-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.mission-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
}

.mission-text h2 .green {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.mission-text h2 .green::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

/* ===== VALEURS SECTION ===== */
.valeurs {
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    text-align: center;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.valeurs::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: 1;
}

.valeurs h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.valeurs .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.valeur-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(85, 135, 57, 0.1);
}

.valeur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.valeur-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.valeur-card:hover::before {
    transform: scaleX(1);
}

.valeur-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.valeur-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: rotate 3s linear infinite;
    animation-play-state: paused;
}

.valeur-card:hover .valeur-icon::before {
    animation-play-state: running;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.valeur-icon i {
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.valeur-card:hover .valeur-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(85, 135, 57, 0.3);
}

.valeur-card:hover .valeur-icon i {
    transform: scale(1.2);
}

.valeur-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.valeur-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 300px;
}

/* ===== ÉQUIPE SECTION ===== */
.equipe {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
}

.equipe h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.equipe h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.equipe .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.equipe-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.membre {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.membre::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.membre:hover::before {
    opacity: 0.1;
    transform: scale(1.1);
}

.membre img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.membre:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-light);
}

.membre h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.membre:hover h3 {
    color: var(--primary-color);
}

.membre .poste {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.5rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(85, 135, 57, 0.1);
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
}

.membre:hover .poste {
    background-color: rgba(85, 135, 57, 0.2);
    transform: translateY(-2px);
}

/* ===== STATISTIQUES SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #cccccc 0%, #cccccc 100%);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23558739" opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem;
    background: #558739;
    border-radius: var(--border-radius);
    border: 1px solid rgba(85, 135, 57, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(85, 135, 57, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(85, 135, 57, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 0 20px rgba(85, 135, 57, 0.5);
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.stat-number::after {
    content: attr(data-suffix);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-left: -10px;
}

.stat-label {
    font-size: 1.2rem;
    color:  #cccccc;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: #558739;
    color: var(--text-color);
    padding: 4rem 5% 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-col ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.footer-col ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li:hover::before {
    transform: translateX(5px);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(85, 135, 57, 0.1);
}

.newsletter button {
  background-color: black;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 135, 57, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(85, 135, 57, 0.2);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Extra Large (XL) - >1200px */
@media (min-width: 1200px) {
    .mission,
    .valeurs,
    .equipe,
    .stats-section,
    .footer {
        padding-left: calc((100% - 1200px) / 2);
        padding-right: calc((100% - 1200px) / 2);
    }
}

/* Large (LG) - 992px à 1199px */
@media (max-width: 1199px) {
    .hero-about {
        height: 55vh;
    }
    
    .mission img {
        height: 350px;
    }
    
    .valeur-card {
        padding: 2.5rem 1.5rem;
    }
    
    .membre img {
        width: 180px;
        height: 180px;
    }
}

/* Medium (MD) - 768px à 991px */
@media (max-width: 991px) {
    .hero-about {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-about h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .mission {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .mission img {
        max-width: 400px;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .mission-text {
        margin: 0 auto;
    }
    
    .mission-text p {
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 3px solid var(--primary-color);
    }
    
    .valeurs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .equipe-grid,
    .equipe-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small (SM) - 576px à 767px */
@media (max-width: 767px) {
    .hero-about {
        height: 45vh;
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .hero-about h1 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-about p {
        font-size: 1rem;
    }
    
    .mission,
    .valeurs,
    .equipe,
    .stats-section {
        padding: 4rem 5%;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .valeurs h2,
    .equipe h2 {
        font-size: 2.2rem;
    }
    
    .valeurs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .valeur-card {
        width: 100%;
        height: auto;
        min-height: 280px;
        padding: 2rem;
    }
    
    .valeur-icon {
        width: 80px;
        height: 80px;
    }
    
    .valeur-icon i {
        font-size: 2rem;
    }
    
    .equipe-grid,
    .equipe-bottom {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .membre img {
        width: 160px;
        height: 160px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul li {
        padding-left: 0;
    }
    
    .footer-col ul li::before {
        display: none;
    }
    
    .newsletter {
        flex-direction: column;
    }
}

/* Extra Small (XS) - <576px */
@media (max-width: 575px) {
    .hero-about {
        height: 40vh;
        min-height: 300px;
        padding: 1rem;
    }
    
    .hero-about h1 {
        font-size: 1.8rem;
    }
    
    .hero-about p {
        font-size: 0.95rem;
    }
    
    .mission,
    .valeurs,
    .equipe,
    .stats-section {
        padding: 3rem 4%;
    }
    
    .mission img {
        height: 300px;
    }
    
    .mission-text h2 {
        font-size: 1.8rem;
    }
    
    .mission-text p {
        font-size: 1rem;
    }
    
    .valeurs h2,
    .equipe h2 {
        font-size: 2rem;
    }
    
    .valeurs .subtitle,
    .equipe .subtitle {
        font-size: 1.1rem;
    }
    
    .valeur-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .valeur-card h3 {
        font-size: 1.5rem;
    }
    
    .valeur-card p {
        font-size: 1rem;
    }
    
    .membre img {
        width: 140px;
        height: 140px;
        border-width: 4px;
    }
    
    .membre h3 {
        font-size: 1.2rem;
    }
    
    .membre .poste {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .footer {
        padding: 3rem 4% 1.5rem;
    }
}

/* Very Small (VS) - <375px */
@media (max-width: 374px) {
    .hero-about h1 {
        font-size: 1.6rem;
    }
    
    .hero-about p {
        font-size: 0.9rem;
    }
    
    .valeurs h2,
    .equipe h2 {
        font-size: 1.8rem;
    }
    
    .valeur-icon {
        width: 70px;
        height: 70px;
    }
    
    .valeur-icon i {
        font-size: 1.8rem;
    }
    
    .membre img {
        width: 120px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== ACCESSIBILITY & UTILITIES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero-about {
        background: var(--white) !important;
        color: var(--black) !important;
        height: auto;
        min-height: auto;
    }
    
    .hero-about::before {
        display: none;
    }
    
    .mission img {
        box-shadow: none;
        transform: none !important;
    }
    
    .valeur-card,
    .membre,
    .stat-item {
        box-shadow: none;
        border: 1px solid var(--gray);
        page-break-inside: avoid;
    }
    
    .footer {
        background: var(--white) !important;
        border-top: 2px solid var(--primary-color);
    }
    
    .newsletter {
        display: none;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f0f0f0;
        --text-light: #b0b0b0;
        --secondary-color: #1a1a1a;
        --white: #121212;
        --gray-light: #2a2a2a;
        --gray: #444;
    }
    
    body {
        background-color: var(--white);
    }
    
    .mission,
    .valeurs,
    .equipe {
        background: var(--secondary-color);
    }
    
    .valeur-card,
    .membre .poste {
        background-color: var(--gray-light);
    }
    
    .footer {
        background: #558739;
    }
    
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .secteurs-container,
    .activites-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .menu {
        gap: 1rem;
    }
    
    .galerie-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 150px 20px 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-catalogue {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .secteurs-container,
    .activites-cards,
    .galerie-container {
        grid-template-columns: 1fr;
    }
    
    .clients-slide-track {
        animation: scroll 15s linear infinite;
    }
    
    .client-logo {
        width: 180px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .secteurs h2,
    .galerie h2,
    .clients-title,
    .activites-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .clients-slide-track {
        animation: scroll 12s linear infinite;
    }
}
/* button {*/
/*     background-color: black;*/
/*}*/