/* ============================================
   GPSTC-CONSULTING - FEUILLE DE STYLES
   Expertise Foncière & BTP - Congo
   ============================================ */
 
/* ============================================
   1. VARIABLES CSS (PALETTE DE COULEURS)
   ============================================ */
:root {
    --ink:       #000000;
    --charcoal:  #1c1c1c;
    --slate:     #000000;
    --muted:     #000000;
 
    --green:      #4ca86c;
    --green-lt:   #a7d4a8;
 
    --cream:     #f5f0e8;
    --paper:     #e8f5e9;
    --white:     #ffffff;
 
    --rule:      rgba(95, 214, 137, 0.35);
 
    --serif:     'Playfair Display', Georgia, serif;
    --italic:    'Cormorant Garamond', Georgia, serif;
    --sans:      'DM Sans', sans-serif;
}
 
/* ============================================
   2. RESET ET BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
 
body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Rendre tous les paragraphes en blanc (priorité visuelle globale) */
p, body p {
    color: var(--white);
}
 
/* ============================================
   3. SCROLLBAR PERSONNALISÉE
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
 
/* ============================================
   4. BANDEAU SUPÉRIEUR (TOP BAND)
   ============================================ */
.top-band {
    background: var(--charcoal);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-band a { color: var(--green-lt); text-decoration: none; }
 
/* ============================================
   5. NAVIGATION PRINCIPALE
   ============================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
 
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
 
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: var(--serif);
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.04em;
}
.logo-main span { color: var(--green); }
.logo-sub {
    font-family: var(--italic);
    font-size: clamp(0.55rem, 1vw, 0.7rem);
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 2px;
    /* Empêche le débordement sur petits écrans */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}
 
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--green);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
 
.nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 2px;
    letter-spacing: 0.12em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-lt) !important; color: var(--white) !important; }
 
/* Bouton hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 10;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s;
}
/* Animation hamburger → croix */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* ============================================
   6. SECTION HÉRO (ACCUEIL)
   ============================================ */
.hero {
    position: relative;
    height: clamp(560px, 92vh, 920px);
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: rgba(0,0,0,0.35);
}
 
.hero-img {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(14,14,14,0.15) 0%, rgba(14,14,14,0.7) 100%),
        url('../image/ppppppppp.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
}
 
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(40px, 8vh, 80px) clamp(18px, 5vw, 40px) clamp(40px, 8vh, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}
 
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    max-width: 560px;
}
 
.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeUp 0.9s 0.3s both;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--green-lt);
}
 
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5.2vw, 4.7rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeUp 0.9s 0.5s both;
}
.hero-title em { font-style: italic; color: var(--green-lt); }
 
.hero-desc {
    font-family: var(--italic);
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    color: white;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeUp 0.9s 0.7s both;
}
 
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.9s both;
}
 
.btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-lt); transform: translateY(-2px); }
 
.btn-ghost {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--ink);
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--green-lt); background: rgba(45,138,78,0.15); }
 
.hero-right {
    display: flex;
    color: var(--ink);
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    animation: fadeUp 0.9s 0.6s both;
}
 
.hero-stat-card {
    background: rgba(250,248,244,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(45,138,78,0.4);
    border-radius: 4px;
    padding: 20px 28px;
    text-align: right;
    width: 220px;
}
.hero-stat-card .num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green-lt);
    line-height: 1;
}
.hero-stat-card .lbl {
    font-family: var(--italic);
    font-size: 0.85rem;
    color: var(--ink);
    margin-top: 4px;
}
 
/* ============================================
   7. INDICATEUR DE DÉFILEMENT
   ============================================ */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: bounce 2s infinite;
}
.scroll-hint span {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}
.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green-lt), transparent);
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* ============================================
   8. BANDEAU D'INTRODUCTION (INTRO BAND)
   ============================================ */
.intro-band {
    background: var(--charcoal);
    padding: 60px 40px;
}
.intro-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    gap: 40px;
    align-items: center;
}
.intro-divider { background: var(--rule); height: 60px; }
.intro-item { text-align: center; }
.intro-item .i-num {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}
.intro-item .i-label {
    font-family: var(--italic);
    font-size: 0.9rem;
    color: rgba(245,240,232,0.7);
    margin-top: 6px;
}
 
/* ============================================
   9. EN-TÊTES DE SECTIONS
   ============================================ */
.section-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--rule);
}
.section-kicker {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--green); }
.section-header-right {
    font-family: var(--italic);
    font-size: 1rem;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.65;
    text-align: right;
    flex-shrink: 0;
}
 
.see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.2s;
}
.see-all:hover { gap: 14px; }
.see-all-arrow { font-size: 0.9rem; }
 
/* ============================================
   10. SECTION "À PROPOS"
   ============================================ */
.about-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
 
.about-img-wrap { position: relative; }
.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}
.about-img-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-img-placeholder img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 2px;
}
 
.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 140px;
    height: 140px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(45,138,78,0.4);
}
.about-badge .badge-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.about-badge .badge-lbl {
    font-family: var(--italic);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    text-align: center;
    line-height: 1.3;
    margin-top: 2px;
    padding: 0 10px;
}
 
.about-text .section-kicker { margin-bottom: 12px; }
.about-text h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 24px;
}
.about-text h2 em { font-style: italic; color: var(--green); }
.about-text p {
    font-family: var(--italic);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate);
    margin-bottom: 18px;
}
 
.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: 28px;
}
.about-list li {
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-list li::before {
    content: '◆';
    font-size: 0.5rem;
    color: var(--green);
    flex-shrink: 0;
}
 
/* ============================================
   11. SECTION SERVICES
   ============================================ */
.services-grid-wrap { padding: 0 40px 100px; }
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
 
.svc-card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
}
.svc-card:hover .svc-overlay { opacity: 1; }
.svc-card:hover .svc-img { transform: scale(1.06); }
.svc-card:hover .svc-arrow { transform: translateX(4px); }
 
.svc-inner { position: relative; width: 100%; aspect-ratio: 1 / 1; min-height: 0; }
 
.svc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.svc-img-ph {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}
.svc-img-ph img { width: 100%; height: 100%; object-fit: cover; }
 
.svc-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.2) 50%, transparent 100%);
    z-index: 1;
}
.svc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45,138,78,0.12);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
}
 
.svc-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 3;
}
.svc-num {
    font-family: var(--serif);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--green-lt);
    margin-bottom: 8px;
    display: block;
}
.svc-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}
 
.svc-excerpt {
    font-family: var(--italic);
    font-size: 0.85rem;
    color: rgba(245,240,232,0.75);
    line-height: 1.55;
    margin-bottom: 12px;
    display: none;
}
 
.svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-lt);
    text-decoration: none;
    transition: transform 0.2s;
}
 
/* ============================================
   12. GALERIE / RÉALISATIONS
   ============================================ */
.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
 
.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    width: 100%;
}

.gallery-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item p {
    margin: 0;
    padding: 16px;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
}
 
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay,
.gallery-item:active .gallery-overlay,
.gallery-item.is-active .gallery-overlay { opacity: 1; }
 
.gallery-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.gallery-subtitle {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}
 
/* ── Galerie Équipe & Partenaires (remplace les largeurs fixes inline) ── */
.team-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(22px, 3vw, 36px);
    align-items: stretch;
    margin: clamp(40px, 7vw, 90px) auto 0;
    padding: 0 32px 18px;
    max-width: 1240px;
}
.team-gallery .gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
}
 
/* ============================================
   13. BANDEAU DE CITATION
   ============================================ */
.quote-strip {
    background: var(--green);
    padding: 60px 40px;
    text-align: center;
}
.quote-strip blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
}
.quote-strip cite {
    display: block;
    margin-top: 20px;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    font-style: normal;
}
 
/* ============================================
   13B. SECTION CONTACT
   ============================================ */
.contact-teaser {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-left h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 18px;
}
.contact-left h2 em { font-style: italic; color: var(--green); }
.contact-left p {
    font-family: var(--italic);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
 
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-item {
    border-left: 2px solid var(--green);
    padding-left: 16px;
}
.contact-item .c-label {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.contact-item .c-val {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--ink);
}
 
.contact-map {
    width: 100%;
    height: 340px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    background: hsla(195, 40%, 98%, 0.966);
}
.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(25%) contrast(0.9);
}
.map-pin {
    position: absolute;
    top: 50%; left: 50%;
    width: 40px; height: 40px;
    background: var(--green);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 4px 16px rgba(45,138,78,0.5);
}
.map-pin::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 14px; height: 14px;
    background: var(--white);
    border-radius: 50%;
}
 
/* ============================================
   14. PIED DE PAGE (FOOTER)
   ============================================ */
footer { background: var(--ink); color: var(--cream); }
.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}
 
.footer-brand .logo-main { color: var(--cream); font-size: 1.4rem; }
.footer-brand .logo-sub { color: var(--green); }
.footer-brand p {
    font-family: var(--italic);
    font-size: 0.9rem;
    color: rgba(245,240,232,0.55);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
 
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(45,138,78,0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--green-lt);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.footer-social:hover { background: var(--green); border-color: var(--green); color: var(--white); }
 
.footer-col h4 {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-family: var(--italic);
    font-size: 0.9rem;
    color: rgba(245,240,232,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green-lt); }
 
.footer-hours h4 {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
}
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 0.8rem; }
.hours-row .day { color: rgba(245,240,232,0.55); }
.hours-row .time { color: var(--cream); font-weight: 500; }
.hours-row.today .day,
.hours-row.today .time { color: var(--green-lt); }
 
.footer-address { margin-top: 24px; border-top: 1px solid rgba(45,138,78,0.2); padding-top: 20px; }
.footer-address p { font-family: var(--italic); font-size: 0.85rem; color: rgba(245,240,232,0.55); line-height: 1.6; }
.footer-address strong { color: var(--cream); }
 
.footer-bottom {
    border-top: 1px solid rgba(45,138,78,0.15);
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(245,240,232,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: rgba(245,240,232,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--green-lt); }
 
/* ============================================
   15. MENU MOBILE
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    display: none;
    visibility: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(76,168,108,0.98), rgba(27,88,49,0.98));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3.8vh, 28px);
    padding: 24px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open {
    display: flex;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

/* Liens du menu mobile — classe mm-link */
.mobile-menu a,
.mobile-menu .mm-link {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 4.8vw, 1.8rem);
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: min(320px, 84vw);
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.mobile-menu a:hover,
.mobile-menu .mm-link:hover {
    color: var(--cream);
    transform: translateX(6px);
    background: rgba(255,255,255,0.14);
}
.mobile-menu .mm-link i {
    font-size: 0.9em;
    width: 18px;
    text-align: center;
    opacity: 0.92;
}
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.mobile-menu-close i {
    font-size: 1.1rem;
}
.mobile-menu-close:hover,
.mobile-close:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: scale(1.05);
}
 
/* Ligne décorative dans le menu mobile */
.mobile-menu::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.15);
}
 
/* ============================================
   16. RESPONSIVE — GRAND BUREAU (≤ 1200px)
   ============================================ */
@media (max-width: 1200px) {
    .nav-inner { padding: 0 28px; }
    .nav-links { gap: 22px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .team-gallery .gallery-item { width: clamp(240px, 42vw, 380px); }
}

/* ============================================
   16.5 RESPONSIVE — ÉCRANS MOYENS (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 56px 24px 32px;
    }
    .section-header-right { max-width: 100%; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .team-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================
   17. RESPONSIVE — TABLETTE (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .top-band { display: none; }
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
 
    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 24px 60px;
    }
    .hero-right { display: none; }
 
    .intro-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .intro-divider { display: none; }
 
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 24px 36px;
    }
    .section-header-right { text-align: left; max-width: 100%; }
 
    .about-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .about-badge { right: 0; bottom: -20px; }
 
    .services-grid-wrap { padding: 0 24px 80px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .svc-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
    .svc-card:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
    .svc-card:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
    .svc-card:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
    .svc-card:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }
    .svc-card:nth-child(6) { grid-column: 1 / 2; grid-row: auto; }
    .svc-card:nth-child(7) { grid-column: 2 / 3; grid-row: auto; }
    .svc-inner { min-height: 240px !important; }
    .svc-excerpt { display: block !important; }
 
    .gallery-grid { grid-template-columns: 1fr 1fr; padding: 0 24px 80px; }
 
    .contact-teaser { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .contact-map { height: 260px; }
 
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 24px; }
    .team-gallery { padding: 0 24px; }
    .team-gallery .gallery-item { width: clamp(220px, 44vw, 360px); }
}
 
/* ============================================
   18. RESPONSIVE — MOBILE (≤ 640px)
   ============================================ */
@media (max-width: 640px) {
    .nav-inner { height: 58px; padding: 0 18px; }
    .logo-main { font-size: 0.95rem; }
    .logo-sub { display: none; }         /* Trop long sur mobile */
 
    .hero { height: 88svh; min-height: 500px; }
    .hero-img { background-position: center 35%; background-size: cover; }
    .hero-content { padding: 0 18px 50px; }
    .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }
 
    .intro-band { padding: 40px 18px; }
 
    .section-header { padding: 50px 18px 28px; }
 
    .about-section { padding: 50px 18px; }
    .about-img-placeholder { height: 300px; }
    .about-badge { width: 110px; height: 110px; right: 0; bottom: -16px; }
    .about-badge .badge-num { font-size: 1.6rem; }
    .about-list { grid-template-columns: 1fr; }
 
    .services-grid-wrap { padding: 0 18px 60px; }
    .services-grid { grid-template-columns: 1fr; }
    .svc-card { grid-column: 1 / 2 !important; grid-row: auto !important; }
    .svc-inner { min-height: 240px !important; }
 
    .gallery-grid { grid-template-columns: 1fr; padding: 0 18px 60px; }
 
    .quote-strip { padding: 50px 18px; }
 
    .contact-teaser { padding: 50px 18px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { height: 220px; }
 
    .footer-top { grid-template-columns: 1fr; padding: 40px 18px 30px; gap: 36px; }
    .footer-bottom { padding: 20px 18px; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
 
    .team-gallery { padding: 0 18px; gap: 16px; }
    .team-gallery .gallery-item { width: 100%; aspect-ratio: 4/3; }
}
 
/* ============================================
   19. RESPONSIVE — TRÈS PETIT MOBILE (≤ 400px)
   ============================================ */
@media (max-width: 400px) {
    .hero-title { font-size: 1.7rem; }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; }
    .hero-desc { font-size: 0.9rem; }
    .section-title { font-size: 1.6rem; }
    .mobile-menu a, .mobile-menu .mm-link { font-size: 1.5rem; }
    .about-badge { width: 96px; height: 96px; }
    .about-badge .badge-num { font-size: 1.3rem; }
}
 
/* ============================================
   20. STYLES DE LA PAGE SERVICE.HTML
   ============================================ */
:root {
    --green-deep: #1a4a2e;
    --green-mid:  #2d7a4f;
    --green-light: #4caf50;
    --green-pale: #e8f5e9;
    --gold:       #c9a84c;
    --gold-light: #f0d078;
    --off-white:  #f9f9f6;
    --text-dark:  #000000;
    --text-mid:   #000000;
    --text-light: #000000;
    --shadow:     0 8px 32px rgba(26,74,46,0.12);
    --shadow-lg:  0 24px 64px rgba(26,74,46,0.18);
    --radius:     12px;
    --radius-lg:  24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }
 
/* ─── NAV (service.html) ─────────────────────── */
#navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 18px 5%;
    display: flex; align-items: center; justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}
#navbar.scrolled {
    background: transparent;
    backdrop-filter: blur(12px);
    padding: 12px 5%;
    box-shadow: none;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: linear-gradient(135deg, var(--green-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; color: white;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: 0 4px 12px rgba(124, 243, 130, 0.3);
}
.nav-logo-text { color: #000; }
.nav-logo-text strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; letter-spacing: 1px; }
.nav-logo-text span { font-size: 0.68rem; letter-spacing: 2px; opacity: 0.8; text-transform: uppercase; }
 
.nav-cta {
    background: var(--gold); color: var(--green-deep) !important;
    padding: 10px 22px !important; border-radius: 50px;
    font-weight: 600 !important; letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(136, 207, 139, 0.4);
    transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.5) !important; }
.nav-cta::after { display: none !important; }
 
/* ─── HERO (service.html) ────────────────────── */
#hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../image/brazzaville.jpg') center/cover no-repeat;
    filter: brightness(0.6) contrast(0.9);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,74,46,0.88) 0%, rgba(26,74,46,0.55) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
    position: relative; z-index: 2; padding: 0 8%;
    max-width: 760px;
    animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light); padding: 8px 18px; border-radius: 50px;
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(1.8rem, 4.8vw, 4rem);
    color: white; line-height: 1.1; margin-bottom: 24px; font-weight: 700;
}
.hero-title em { color: var(--gold-light); font-style: normal; }
.hero-subtitle {
    color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.7;
    margin-bottom: 40px; max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-outline {
    border: 2px solid rgba(255,255,255,0.5); color: white; padding: 14px 32px;
    border-radius: 50px; font-weight: 500; text-decoration: none; font-size: 0.95rem;
    transition: var(--transition); background: transparent; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.hero-stats {
    position: absolute; bottom: 48px; left: 8%; z-index: 2;
    display: flex; gap: 40px;
    animation: heroFadeIn 1.4s ease forwards;
}
.stat-item { color: white; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); display: block; }
.stat-label { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; }
.hero-scroll {
    position: absolute; bottom: 48px; right: 8%; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.6); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); }
 
/* ─── SECTIONS (service.html) ────────────────── */
section { padding: 100px 8%; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green-mid); font-size: 0.82rem; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
 
/* ─── SERVICES GRID (service.html) ───────────── */
#services { background: transparent; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-tag { justify-content: center; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: white; border-radius: var(--radius-lg);
    overflow: hidden; cursor: pointer;
    transition: var(--transition); box-shadow: var(--shadow); position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26,74,46,0.7));
}
.service-icon {
    position: absolute; top: 16px; left: 16px;
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--gold); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--green-deep); box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.service-body { padding: 24px; }
.service-body h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-dark); }
.service-body p { font-size: 0.96rem; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.service-link {
    color: var(--green-mid); font-size: 0.88rem; font-weight: 600;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: 10px; }
 
/* ─── ARTICLES (service.html) ────────────────── */
#articles { background: transparent; }
.articles-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
    padding: 10px 22px; border-radius: 50px; border: 2px solid #dde8df;
    background: white; color: var(--text-mid); font-family: 'Outfit', sans-serif;
    font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--green-deep); border-color: var(--green-deep); color: white; }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.article-card {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); background: white; position: relative;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-img { height: 210px; overflow: hidden; position: relative; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.article-card:hover .article-img img { transform: scale(1.06); }
.article-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold); color: var(--green-deep);
    padding: 5px 14px; border-radius: 50px; font-size: 0.76rem; font-weight: 600;
}
.article-status {
    position: absolute; top: 14px; right: 14px;
    padding: 5px 14px; border-radius: 50px; font-size: 0.76rem; font-weight: 600;
}
.article-status.disponible { background: #e8f5e9; color: var(--green-mid); }
.article-status.vendu { background: #ffebee; color: #c62828; }
.article-body { padding: 22px; }
.article-body h4 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text-dark); }
.article-location { color: var(--text-light); font-size: 0.9rem; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.article-details { display: flex; gap: 16px; margin-bottom: 18px; }
.article-detail { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: center; gap: 5px; }
.article-price { display: flex; justify-content: space-between; align-items: center; }
.price-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--green-deep); }
.price-sub { font-size: 0.78rem; color: var(--text-light); }
.btn-sm {
    background: var(--green-mid); color: white; border: none;
    padding: 9px 20px; border-radius: 50px; font-size: 0.84rem;
    font-weight: 500; cursor: pointer; transition: var(--transition);
}
.btn-sm:hover { background: var(--green-deep); transform: scale(1.04); }
 
/* ─── POURQUOI NOUS (service.html) ───────────── */
#why { background: var(--green-deep); color: white; position: relative; overflow: hidden; }
#why::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-tag { color: var(--gold-light); }
.why-left .section-tag::before { background: var(--gold); }
.why-left .section-title { color: white; }
.why-left .section-sub { color: rgba(255,255,255,0.7); max-width: 100%; }
.why-points { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--gold-light);
}
.why-point h4 { color: white; font-size: 1.05rem; margin-bottom: 5px; font-family: 'Outfit', sans-serif; font-weight: 600; }
.why-point p { color: rgba(255,255,255,0.65); font-size: 0.94rem; line-height: 1.7; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.why-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.why-img:hover img { transform: scale(1.06); }
.why-img.tall img { height: 416px; }
 
/* ─── TÉMOIGNAGES (service.html) ─────────────── */
#temoignages { background: var(--off-white); }
.temoignages-header { text-align: center; margin-bottom: 60px; }
.temoignages-header .section-tag { justify-content: center; }
.temoignages-header .section-sub { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow); position: relative; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
    content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 6rem;
    color: var(--green-pale); position: absolute; top: -10px; left: 24px; line-height: 1;
}
.stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-text { color: var(--text-mid); font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green-pale); }
.author-name { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); }
.author-role { font-size: 0.8rem; color: var(--text-light); }
 
/* ─── À PROPOS (service.html) ────────────────── */
#apropos { background: transparent; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.06); }
.about-img.span2 { grid-column: span 2; }
.about-img.span2 img { height: 200px; }
.mvp-grid { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.mvp-item {
    padding: 20px 24px; border-radius: var(--radius);
    border-left: 4px solid var(--green-light);
    background: var(--green-pale);
}
.mvp-item h4 { color: var(--green-deep); font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 6px; font-size: 0.92rem; letter-spacing: 1px; text-transform: uppercase; }
.mvp-item p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; }
.team-section { margin-top: 80px; }
.team-title { font-size: 2rem; color: var(--text-dark); margin-bottom: 40px; text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
    text-align: center; background: var(--off-white);
    border-radius: var(--radius-lg); padding: 32px 24px;
    transition: var(--transition); box-shadow: var(--shadow);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: white; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 4px solid white; box-shadow: 0 6px 20px rgba(45,122,79,0.2); }
.team-name { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 0.84rem; color: var(--text-light); margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-social { width: 34px; height: 34px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-size: 0.85rem; transition: var(--transition); text-decoration: none; }
.team-social:hover { background: var(--green-mid); color: white; }
 
/* ─── CONTACT (service.html) ─────────────────── */
#contact { background: transparent; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-items { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--green-mid); }
.contact-item h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--green-mid); }
.contact-form { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-mid); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid #e8eee9; border-radius: var(--radius);
    font-family: 'Outfit', sans-serif; font-size: 0.92rem; color: var(--text-dark);
    background: var(--off-white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-light); background: white;
    box-shadow: 0 0 0 4px rgba(76,175,80,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; background: var(--green-deep); color: white; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); letter-spacing: 0.5px; }
.form-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,74,46,0.3); }
.form-success { display: none; text-align: center; padding: 20px; color: var(--green-mid); font-size: 1rem; font-weight: 500; }
 
/* ─── FOOTER (service.html) ──────────────────── */
.footer-section { background: #e9f3df; color: #000000; }
.footer-section footer { background: transparent; color: inherit; padding: 60px 8% 30px; }
.footer-section .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-section .footer-brand p { color: rgba(0,0,0,0.82); }
.footer-section .footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-section .footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,0.75); font-size: 0.9rem; transition: var(--transition); text-decoration: none; }
.footer-section .footer-social a:hover { background: var(--gold); color: var(--green-deep); }
.footer-section .footer-col h4 { color: #000000; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; }
.footer-section .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-section .footer-col ul a { color: rgba(0,0,0,0.8); text-decoration: none; transition: color 0.2s; }
.footer-section .footer-col ul a:hover { color: var(--green); }
.footer-section .footer-bottom { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-section .footer-bottom p { font-size: 0.82rem; }
.footer-section .footer-bottom span { color: var(--green); }
 
/* ─── WHATSAPP (service.html) ────────────────── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 500;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25d366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: var(--transition); animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
    50%      { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}
.whatsapp-float:hover { transform: scale(1.12); background: #1ebe5c; }
.whatsapp-label {
    position: absolute; right: 70px; background: var(--text-dark); color: white;
    padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; }
 
/* ─── MODAL (service.html) ───────────────────── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-content { position: relative; max-width: 700px; width: 90%; }
.modal-content img { width: 100%; border-radius: var(--radius-lg); display: block; }
.modal-close {
    position: absolute; top: -16px; right: -16px;
    width: 40px; height: 40px; border-radius: 50%;
    background: white; border: none; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: var(--transition);
}
.modal-close:hover { background: var(--gold); }
 
/* ─── SCROLL REVEAL (service.html) ───────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
 
/* ─── RESPONSIVE SERVICE.HTML ────────────────── */
@media (max-width: 1024px) {
    .why-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
    .why-right { order: -1; }
    .footer-section .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    section { padding: 72px 6%; }
    .hero-stats { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-section .footer-top { grid-template-columns: 1fr; }
    .articles-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .why-right { grid-template-columns: 1fr; }
    .why-img.tall img { height: 240px; }
}
