/* ============================================
   ELIT'COM – Design System (Refonte)
   Palette claire · Plus Jakarta Sans
   Fond clair #F5F7FB | Bleu #043578 | Orange #F76301
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}

:root {
    /* Base */
    --stage: #f5f7fb; /* fond principal clair */
    --white: #ffffff;

    /* Couleurs de marque */
    --primary: #043578; /* bleu Elit'com */
    --gold: #f76301; /* utilisé comme accent / CTA */
    --earth: #e2e8f0; /* gris-bleu doux pour blocs et bandes */
    --sand: #ffffff;

    /* Variantes */
    --gold-hover: #ff7b26;
    --gold-subtle: rgba(247, 99, 1, 0.12);
    --gold-border: rgba(4, 53, 120, 0.18);
    --text-muted: rgba(15, 23, 42, 0.7);
    --container-max: 1200px;
    --margin: clamp(1.25rem, 6vw, 80px);
    --gutter: 24px;
    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    /* Spacing scale (use these for consistent gaps/margins) */
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 3rem;
    --space-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: #111827;
    background-color: var(--stage);
    overflow-x: hidden;
    font-weight: 400;
}

/* Icon utilities */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
.icon--sm {
    width: 1.125rem;
    height: 1.125rem;
}
.icon--xs {
    width: 0.875rem;
    height: 0.875rem;
}

/* Hero specific icons */
.hero-label .icon {
    width: 1rem;
    height: 1rem;
}

.hero-meta .icon {
    width: 0.75rem;
    height: 0.75rem;
}

.hero-buttons .icon {
    width: 1rem;
    height: 1rem;
}
.icon svg,
svg.icon {
    width: 100%;
    height: 100%;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--margin);
    padding-right: var(--margin);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
    padding: 0.55rem 0;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gutter);
}

.logo {
    background-image: url("img/logo-elitcom.gif");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 64px;
    height: 64px;
}

.nav-links {
    display: none;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-actions {
    display: none;
    gap: 0.5rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--stage);
    border-color: var(--gold);
    box-shadow: 0 10px 28px rgba(4, 53, 120, 0.12);
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease,
        background 0.16s ease;
}

.btn-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(247, 99, 1, 0.16);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold-subtle);
    color: var(--gold-hover);
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
}

/* Menu toggle (mobile) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: rgb(249, 78, 5);
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("img/hero-elitcom.gif") center/cover no-repeat;
    animation: subtle-zoom 25s ease-in-out infinite;
}

@keyframes subtle-zoom {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.015);
    }
}

/* ========== HERO IMPACTANT ========== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--stage) 0%, var(--earth) 100%);
    padding-top: 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--stage) 100%);
    opacity: 0.03;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--gold) 0%, transparent 0.5%),
        radial-gradient(circle at 80% 20%, var(--primary) 0%, transparent 0.5%),
        radial-gradient(circle at 40% 40%, var(--gold) 0%, transparent 0.3%);
    background-size: 50px 50px, 60px 60px, 40px 40px;
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Badge animé */
.hero-label-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 99, 1, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Titre impactant */
.hero-title-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title-large {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    color: var(--primary);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-accent {
    color: var(--gold);
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes expandWidth {
    to {
        opacity: 1;
        width: 200px;
    }
}

/* Sous-titre percutant */
.hero-subtitle-impact {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.highlight {
    color: var(--gold);
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    animation: expandLine 0.6s ease-out 1.5s forwards;
}

@keyframes expandLine {
    to { transform: scaleX(1); }
}

/* Boutons stratégiques */
.hero-actions-strategic {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(247, 99, 1, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 99, 1, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: 2px solid var(--gold-border);
}

.btn-hero-secondary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon,
.btn-hero-secondary:hover .btn-icon {
    transform: translateX(4px);
}

/* Indicateurs de confiance */
.hero-trust-indicators {
    display: flex;
    gap: 3rem;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.4s forwards;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Éléments flottants */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-border);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.card-icon {
    font-size: 1.25rem;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-actions-strategic {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(247, 99, 1, 0.1);
        border-radius: 12px;
        min-width: 200px;
        transition: all 0.3s ease;
    }
    
    .trust-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(247, 99, 1, 0.2);
        transform: translateY(-2px);
    }
    
    .trust-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .trust-label {
        font-size: 0.875rem;
        color: var(--text-muted);
        font-weight: 500;
        text-align: center;
        line-height: 1.3;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-title-large {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding: 0.6rem 1.2rem;
    background: rgba(201, 162, 77, 0.12);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    width: fit-content;
    animation: fade-in-up 0.8s ease 0.2s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.1rem, 6vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1;
    animation: fade-in-up 0.8s ease 0.3s both;
    max-width: 720px; /* limit line length for better reading */
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    color: rgba(249, 250, 251, 0.86);
    margin-bottom: 1.75rem;
    font-weight: 500;
    line-height: 1.4;
    animation: fade-in-up 0.8s ease 0.4s both;
}

.hero-quote {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    margin: 1.75rem 0 2rem 0;
    padding: 1.25rem 1.75rem;
    padding-left: 1.75rem;
    border-left: 4px solid var(--gold);
    background: rgba(201, 162, 77, 0.1);
    border-radius: 0 10px 10px 0;
    animation: fade-in-up 0.8s ease 0.5s both;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fade-in-up 0.8s ease 0.6s both;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.hero-meta span:hover {
    background: rgba(201, 162, 77, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    animation: fade-in-up 0.8s ease 0.7s both;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    box-shadow: 0 8px 24px rgba(201, 162, 77, 0.2);
    padding: 1.05rem 2.25rem; /* slightly larger CTA */
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 162, 77, 0.3);
}

.hero-buttons .btn-outline {
    border-width: 2px;
}

/* Utility spacing classes for consistent margins/paddings */
.u-mb-sm {
    margin-bottom: var(--space-sm) !important;
}
.u-mb-md {
    margin-bottom: var(--space-md) !important;
}
.u-mb-lg {
    margin-bottom: var(--space-lg) !important;
}
.u-pt-sm {
    padding-top: var(--space-sm) !important;
}
.u-pt-md {
    padding-top: var(--space-md) !important;
}
.u-pt-lg {
    padding-top: var(--space-lg) !important;
}

/* ========== FOOTER MODERN ========== */
.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-icon--modern {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link--modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link--modern:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.social-icon-modern {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-link--modern:hover .social-icon-modern {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Logo rectangulaire */
.footer-logo-rectangular {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-rectangular .footer-logo-text:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 2rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
}

.footer-logo-rectangular .footer-logo-text:last-child {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Icônes rondes avec noms */
.social-icon-round {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.social-name {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-socials-vertical .social-link:hover .social-name {
    color: var(--white);
}

.footer-socials-vertical .social-link:hover .social-icon-round {
    background: var(--gold);
}

/* Réseaux sociaux verticaux */
.footer-socials-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-socials-vertical .social-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-socials-vertical .social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateX(4px);
}

.footer-socials-vertical .social-icon-modern {
    margin-right: 0.75rem;
}

/* Responsive Footer Modern */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-logo-text {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
}

/* Footer contact icon (orange round background) */
.footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Orange circular background used for contact and social icons */
.contact-icon--orange {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--stage);
    flex-shrink: 0;
    font-size: 0.95rem;
}
.contact-icon--orange i,
.contact-icon--orange svg {
    color: var(--stage);
    font-size: 0.95rem;
}

.footer .footer-contact-item a,
.footer .footer-contact-item span {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

/* Hover / color transition for orange icon backgrounds */
.contact-icon--orange {
    transition:
        transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1),
        box-shadow 0.18s ease,
        background 0.18s ease;
}
.contact-icon--orange i,
.contact-icon--orange svg {
    transition: color 0.18s ease;
}
.contact-icon--orange:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 26px rgba(247, 99, 1, 0.18);
    background: var(--stage); /* white bg on hover */
}
.contact-icon--orange:hover i,
.contact-icon--orange:hover svg {
    color: var(--gold); /* orange icon on white bg */
}

/* Ensure contact section content is left-aligned (override utility classes) */
#contacts-1 .section-title,
#contacts-1 .section-desc {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-buttons .btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(201, 162, 77, 0.15);
}

/* ========== SECTIONS GLOBAL ========== */
.section {
    padding: clamp(2rem, 8vw, var(--space-lg)) 0;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-title-center {
    text-align: left;
}

.section-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-desc-center {
    text-align: left;
    max-width: 42ch;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* ========== MISSION & VISION COMPACT ========== */
.mission-vision-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card-compact,
.vision-card-compact {
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card-compact::before,
.vision-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-card-compact:hover,
.vision-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.mission-card-compact:hover::before,
.vision-card-compact:hover::before {
    transform: scaleX(1);
}

.card-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), #1a5490);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.vision-card-compact .card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
}

.mission-card-compact:hover .card-icon,
.vision-card-compact:hover .card-icon {
    transform: scale(1.1);
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #1a5490);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.vision-card-compact .card-tags span {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
}

.card-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mission-vision-cta {
    text-align: center;
}

/* Responsive pour Mission & Vision Compact */
@media (max-width: 767px) {
    .mission-vision-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card-compact,
    .vision-card-compact {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-icon {
        margin: 0 auto;
    }
    
    .card-tags {
        justify-content: center;
    }
}

/* ========== MISSION & VISION (Original) ========== */
.section-mission-vision {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.section-mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.section-mission-vision::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.mission-card,
.vision-card {
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #1a5490);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
}

.mission-icon::after,
.vision-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.vision-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
}

.vision-icon::after {
    background: linear-gradient(135deg, var(--gold), var(--primary));
}

.mission-content,
.vision-content {
    position: relative;
    z-index: 2;
}

.mission-desc,
.vision-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 1.5rem 0;
    font-weight: 400;
}

.mission-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.keyword {
    background: linear-gradient(135deg, var(--primary), #1a5490);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.keyword:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 53, 120, 0.3);
}

.vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pillar {
    text-align: center;
    padding: 1rem;
    background: rgba(247, 99, 1, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(247, 99, 1, 0.1);
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(247, 99, 1, 0.1);
    transform: translateY(-2px);
}

.pillar-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pillar-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.mission-vision-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(247, 99, 1, 0.3);
}

/* ========== ABOUT ========== */
.section-about {
    background: var(--stage);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    order: 1;
}

.about-body p {
    color: var(--text-muted);
    margin-bottom: 1.125rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.about-highlights {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.about-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.about-highlights li .icon {
    color: var(--gold);
    width: 0.9rem;
    height: 0.9rem;
}

.about-visual {
    position: relative;
    order: 2;
}

.about-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.about-image-wrap {
    margin-left: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

/* About Statistics Compact */
.about-stats-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.about-stats-compact span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-stats-compact strong {
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.25rem;
}

/* About Statistics Grid (alternative) */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(247, 99, 1, 0.05);
    border-radius: 12px;
    border: 1px solid var(--gold-border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(247, 99, 1, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 99, 1, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    padding: 2px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 16px;
    opacity: 0.1;
    z-index: 1;
}

.about-image-wrapper .about-image {
    border-radius: 14px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}

/* ========== VALUES SECTION MODERN ========== */
.values-section-modern {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5490 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.values-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.values-title-modern {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.values-title-modern::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-item-modern {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.value-item-modern[data-animate].animate {
    opacity: 1;
    transform: translateY(0);
}

.value-item-modern:nth-child(1) { transition-delay: 0.1s; }
.value-item-modern:nth-child(2) { transition-delay: 0.2s; }
.value-item-modern:nth-child(3) { transition-delay: 0.3s; }
.value-item-modern:nth-child(4) { transition-delay: 0.4s; }

.value-item-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.value-icon-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-icon-modern svg {
    width: 2rem;
    height: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-item-modern:hover .value-icon-modern {
    background: var(--gold);
    transform: rotate(360deg) scale(1.1);
}

.value-item-modern:hover .value-icon-modern svg {
    transform: scale(1.1);
}

.value-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.value-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
}

.value-item-modern:hover .value-name {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Responsive Values Modern */
@media (max-width: 768px) {
    .values-section-modern {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .values-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .value-item-modern {
        padding: 1.5rem 1rem;
    }
    
    .value-icon-modern {
        width: 3rem;
        height: 3rem;
    }
    
    .value-icon-modern svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .value-name {
        font-size: 1.125rem;
    }
    
    .value-text {
        font-size: 0.875rem;
    }
}

/* Values Section (Original) */
.values-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.values-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gold-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(4, 53, 120, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
}

.value-card:hover .value-icon svg {
    color: var(--white);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
}

.team-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gold-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.member-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 0.9375rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== PERFORMANCES ========== */
.section-performances {
    background: var(--primary);
}

.perf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.perf-card {
    background: rgba(4, 24, 54, 0.96);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 1.25rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.3s ease;
    height: 100%;
}

.perf-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 24px var(--gold-subtle);
}

.perf-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    color: var(--gold);
}

.perf-icon svg {
    width: 100%;
    height: 100%;
}

/* Ensure font-awesome icons inside perf-icon are sized and centered */
.perf-icon i,
.perf-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
}

/* Center testimonial (témoignages) content: name, role and note */
#reviews-1 .team-meta {
    text-align: center;
}

#reviews-1 .team-avatar img {
    display: block;
    margin: 0 auto 0.75rem auto;
}

.perf-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 0.35rem;
}

.perf-desc {
    font-size: 0.8125rem;
    color: rgba(226, 232, 240, 0.86);
    line-height: 1.5;
}

/* ========== GALLERY ========== */
.section-gallery {
    background: var(--stage);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.portfolio-filter-btn {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--gold-border);
    background: var(--white);
    font-size: 0.8125rem;
    color: #0b1120;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-filter-btn.active,
.portfolio-filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--gold-border);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(201, 162, 77, 0.15);
}

.gallery-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--earth);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 162, 77, 0.3) 0%,
        rgba(15, 15, 15, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========== PROJECT / EP ========== */
.section-project {
    background: linear-gradient(180deg, var(--stage) 0%, var(--earth) 100%);
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.project-cover {
    order: 2;
}

.ep-cover {
    aspect-ratio: 1;
    max-width: 320px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--earth) 0%, var(--stage) 100%);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ep-icon {
    width: 3rem;
    height: 3rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.ep-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
}

.ep-subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.project-content {
    order: 1;
}

.project-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-themes-label {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.project-themes {
    list-style: none;
}

.project-themes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-themes li {
    list-style: none;
}

.project-themes li span {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
}

/* ========== MEDIA ========== */
.section-media {
    background: var(--stage);
}

.media-quote {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: 1rem;
}

.media-item {
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.media-item:hover {
    border-color: var(--gold);
}

.media-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--earth);
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 15, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.media-play:hover {
    background: rgba(15, 15, 15, 0.6);
}

.media-play svg {
    width: 3rem;
    height: 3rem;
    color: var(--gold);
}

.media-item-content {
    padding: 1rem 1.25rem;
}

.media-item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0b1120;
    margin-bottom: 0.25rem;
}

.media-caption {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.media-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
}

.media-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.media-list li .icon {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
}

/* ========== COLLABORATIONS ========== */
.section-collab {
    background: var(--stage);
}

.collab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.collab-item {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.collab-item:hover {
    border-color: var(--gold);
    color: var(--white);
}

.collab-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.collab-icon.icon {
    width: 1.2rem;
    height: 1.2rem;
}

.collab-item small {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0.9;
}

/* ========== TEAM ========== */
.section-team {
    background: var(--sand);
}

.team-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--primary);
    background: var(--earth);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-meta-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0b1120;
    margin-bottom: 0.15rem;
}

.team-meta-role {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.team-meta-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* TEAM carousel like articles */
.team-carousel-container {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.team-cards-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.team-cards-strip::-webkit-scrollbar {
    display: none;
}

.team-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex: 0 0 clamp(260px, 30vw, 320px);
    max-height: 700px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gold-border);
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.team-card .media-thumb {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.team-card .media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-nav-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--gold-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

@media (min-width: 992px) {
    .team-card {
        flex: 0 0 30%;
    }
}

/* ========== ARTICLES & COUVERTURES ========== */
.section-articles {
    background: var(--stage);
}

.carousel-container {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(201, 162, 77, 0.1);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--stage);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-container {
        gap: 0.5rem;
    }
}

.articles-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.articles-grid::-webkit-scrollbar {
    display: none;
}

.article-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex: 0 0 clamp(300px, calc(100% - 4rem), 380px);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--earth), rgba(107, 78, 61, 0.8));
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), transparent);
    transition: height 0.3s ease;
    border-radius: 10px 0 0 0;
    z-index: 1;
}

.article-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.1);
}

.article-card:hover::before {
    height: 100%;
}

.article-date {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.article-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: rgba(201, 162, 77, 0.08);
    border-radius: 4px;
}

.article-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.45;
    flex: 1;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-link:hover {
    color: var(--gold-hover);
    gap: 0.75rem;
}

.article-link .icon {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .articles-grid {
        gap: 2rem;
    }

    .article-card {
        flex: 0 0 clamp(320px, 100%, 450px);
    }

    .article-image {
        aspect-ratio: 16/10;
    }

    .article-title {
        font-size: 1.05rem;
    }

    .article-excerpt {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .articles-grid {
        gap: 2.25rem;
    }

    .article-card {
        flex: 0 0 clamp(350px, 100%, 500px);
    }

    .article-image {
        aspect-ratio: 16/9;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .article-excerpt {
        font-size: 0.85rem;
    }
}

/* ========== PRESSBOOK ========== */
.section-pressbook {
    background-image: url("img/hero-elitcom-devis.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.pressbook-box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    border: 2px solid var(--gold-border);
    border-radius: 16px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pressbook-box:hover {
    border-color: var(--gold);
    background: rgba(15, 15, 15, 0.85);
    box-shadow: 0 12px 40px rgba(201, 162, 77, 0.15);
}

.pressbook-icon {
    display: inline-flex;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(201, 162, 77, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pressbook-box:hover .pressbook-icon {
    background: rgba(201, 162, 77, 0.2);
    transform: scale(1.1);
}

.pressbook-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
}

.pressbook-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.pressbook-desc {
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pressbook-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
}

.pressbook-list li {
    font-size: 0.875rem;
    color: white;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.pressbook-list li:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.pressbook-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.btn-pressbook {
    padding: 1rem 2rem;
    font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 28px rgba(201, 162, 77, 0.25);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    max-width: 100%;
}

.btn-pressbook::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-pressbook:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201, 162, 77, 0.35);
    background: var(--gold-hover);
}

.btn-pressbook:hover::before {
    opacity: 1;
}

.btn-pressbook .icon {
    width: 1.1rem;
    height: 1.1rem;
}

/* ========== CONTACT ========== */
.section-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.contact-info {
    text-align: left;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-block--whatsapp .contact-icon {
    color: var(--gold);
}

.contact-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--text-muted);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info a {
    color: #0b1120;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--gold);
}

.social-link svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Contact form */
.contact-form {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A24D' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-closing {
    text-align: center;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

/* ========== FOOTER ========== */
.footer {
    padding: clamp(3rem, 8vw, 5rem) 0 2rem 0;
    border-top: 2px solid var(--gold-border);
    background: linear-gradient(180deg, var(--primary) 0%, #021835 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
}

.footer-quote {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-style: italic;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.5;
    max-width: 60ch;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.footer-copy {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    color: rgba(226, 232, 240, 0.8);
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 162, 77, 0.2);
}

/* Ensure all footer textual elements are left-aligned like the rest of the site */
.footer-quote,
.footer-copy,
.footer-grid,
.footer-list,
.footer-col-title {
    text-align: left;
}

.footer-copy a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-copy a:hover {
    color: var(--gold-hover);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem; /* reduced gap for tighter columns */
    margin-bottom: 1rem; /* reduced bottom spacing */
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 0.18rem; /* tighter list spacing */
}

.footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--gold);
}

@media (min-width: 768px) {
    .footer-grid {
        /* Make room for logo/quote + 4 columns so Contact stays on same row */
        grid-template-columns: 1.8fr repeat(4, minmax(0, 1fr));
        gap: 1.25rem; /* slightly larger on wider screens */
    }
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--stage);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.2s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: scale(1.08);
    background: var(--gold-hover);
}

.scroll-top-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== ANIMATIONS (fade-in) ========== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-actions {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-text {
        order: 1;
    }

    .about-visual {
        order: 2;
    }

    .perf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .project-cover {
        order: 1;
    }

    .project-content {
        order: 2;
    }

    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        text-align: left;
    }

    .contact-info {
        text-align: left;
    }

    .contact-socials {
        justify-content: flex-start;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .vision-pillars {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (min-width: 992px) {
    .perf-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collab-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile menu open */
@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--stage);
        border-left: 1px solid var(--gold-border);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-socials {
        justify-content: center;
    }
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--stage);
}

.team-cards-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    overflow: hidden;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-thumb,
.team-avatar {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-meta {
    padding: 1.5rem;
}

.team-meta-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--elite-dark);
    margin-bottom: 0.5rem;
}

.team-meta-role {
    color: var(--elite-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-meta-note {
    color: var(--elite-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--elite-orange);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.team-nav-btn:hover {
    background: #e55a01;
    transform: translateY(-50%) scale(1.1);
}

.team-nav-prev {
    left: -20px;
}

.team-nav-next {
    right: -20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* ===================================
   PRESSBOOK SECTION
   =================================== */
.section-pressbook {
    background: linear-gradient(135deg, var(--elite-blue), #1a5490);
    color: white;
    padding: 4rem 0;
}

.pressbook-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pressbook-icon {
    width: 80px;
    height: 80px;
    background: var(--elite-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.pressbook-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pressbook-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pressbook-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pressbook-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pressbook-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--elite-orange);
    font-weight: bold;
}

.btn-pressbook {
    background: var(--elite-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pressbook:hover {
    background: #e55a01;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 99, 1, 0.3);
}

/* ===================================
   ARTICLES / BLOG SECTION
   =================================== */
.section-articles {
    background: var(--elite-light);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-item-content {
    padding: 1.5rem;
}

.media-item-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--elite-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.media-caption {
    color: var(--elite-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-date {
    color: var(--elite-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.article-link {
    color: var(--elite-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--elite-orange);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.section-contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--elite-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 700;
    color: var(--elite-dark);
    margin-bottom: 0.25rem;
}

.contact-block a,
.contact-block p {
    color: var(--elite-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block a:hover {
    color: var(--elite-orange);
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--elite-orange);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 99, 1, 0.3);
}

.contact-form {
    background: var(--elite-light);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--elite-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--elite-orange);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    /* background: var(--elite-dark); */
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--elite-orange);
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #b8c3cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--elite-orange);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

.footer-copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c3cc;
    font-size: 0.9rem;
}

/* ===================================
   DIVIDER
   =================================== */
.divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--elite-orange), transparent);
    margin: 3rem 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-actions {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .perf-grid,
    .gallery-grid,
    .team-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .mission-keywords {
        justify-content: center;
    }
    
    .vision-pillars {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .portfolio-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-socials {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-mission-vision {
        padding: 3rem 0;
    }
    
    .mission-vision-grid {
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 3rem;
    }
    
    .pressbook-box {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
