
/* ========================================
   DESIGN TOKENS
======================================== */
:root {
    --green:        #005c00;
    --green-mid:    #007a00;
    --green-light:  #1a8c1a;
    --green-pale:   #eaf5ea;
    --green-border: #a8d4a8;

    --gold:         #f4c430;
    --gold-dark:    #d4a017;
    --gold-text:    #7a5200;
    --gold-pale:    #fef9e7;
    --gold-border:  #e8c84a;

    --body-bg:      #f6f8f6;
    --surface:      #ffffff;
    --surface-2:    #f0f5f0;
    --card-bg:      #ffffff;
    --border:       #dce8dc;

    --text:         #0f1f0f;
    --text-muted:   #3d5230;
    --text-light:   #6a8a60;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow:     0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
    --shadow-lg:  0 12px 36px rgba(0,0,0,.11), 0 2px 8px rgba(0,0,0,.06);

    --radius:     12px;
    --radius-lg:  18px;
    --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--body-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(46,125,50,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,125,50,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 90px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid transparent;
    transition: height 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.navbar.scrolled {
    height: 64px;
    border-bottom-color: var(--gold-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 58px; width: auto; transition: height 0.3s ease; }
.navbar.scrolled .nav-logo img { height: 36px; }

.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a {
    display: block;
    padding: 0.5rem 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--green); background: var(--green-pale); }
.nav-links a.active { color: var(--gold-text); background: var(--gold-pale); font-weight: 700; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.6; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px); left: 0;
    background: var(--surface);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 240px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.dropdown-menu a { display: flex; align-items: center; gap: 0.5rem; }
.dropdown-menu a:hover { color: var(--gold-text); background: var(--gold-pale); }
.dropdown-icon { width: 1.2rem; text-align: center; font-size: 0.82rem; color: var(--green); flex-shrink: 0; }
.dropdown-divider { height: 1px; background: var(--border); margin: 0.4rem 0; }
.mobile-nav-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-text); padding: 0.75rem 0 0.25rem; pointer-events: none; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    background: var(--gold); color: #0b0f1a !important;
    border-radius: 8px; font-size: 0.875rem; font-weight: 800;
    text-decoration: none; transition: var(--transition);
    box-shadow: 0 2px 12px rgba(249,168,37,0.4);
}
.nav-cta:hover { background: var(--gold-dark); color: #fff !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(249,168,37,0.5); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* ========================================
   MAIN / LAYOUT
======================================== */
main { position: relative; z-index: 1; padding-top: 90px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ========================================
   HERO
======================================== */
.hero {
    min-height: 90vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--surface) 55%, var(--gold-pale) 100%);
}
.hero::before {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(249,168,37,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; right: -60px; top: 15%;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(46,125,50,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.hero-content { max-width: 680px; position: relative; z-index: 2; flex: 1; }

/* ── Years badge ─────────────────────────────────────────── */
.hero-badge-wrap {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    animation: fade-in-up 0.6s 0.4s ease both;
}

/* Shared base */
.years-badge { position: relative; }
.years-badge svg {
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0,80,0,.4));
    transition: transform .3s ease;
}
.years-badge:hover svg { transform: scale(1.05); }
.years-badge-glow {
    position: absolute; inset: 18%; border-radius: 50%;
    background: radial-gradient(circle, rgba(244,196,48,.14) 0%, transparent 70%);
    pointer-events: none;
}

/* Large (hero) */
.years-badge--large { width: 196px; height: 196px; }

/* Small fixed FAB (bottom-left, all pages) */
.years-fab {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 900;
    opacity: .88;
    transition: opacity .2s, transform .2s;
}
.years-fab:hover { opacity: 1; transform: scale(1.06); }
.years-badge--small { width: 76px; height: 76px; cursor: default; }

@keyframes badge-pulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

/* Stat highlight */
.stat-item--highlight .stat-number { color: var(--gold-text); }
.stat-item--highlight .stat-label  { color: var(--gold-text); font-weight: 700; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--gold-pale); border: 1px solid var(--gold-border);
    border-radius: 100px; font-size: 0.78rem; font-weight: 700; color: var(--gold-text);
    margin-bottom: 1.5rem; animation: fade-in-up 0.5s ease both; letter-spacing: 0.04em;
}
.hero-badge::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 6px var(--gold);
    animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
    color: var(--text); margin-bottom: 1.25rem;
    animation: fade-in-up 0.5s 0.1s ease both;
}
.hero p {
    font-size: 1.1rem; color: var(--text-muted); max-width: 560px;
    margin-bottom: 2rem; line-height: 1.75;
    animation: fade-in-up 0.5s 0.2s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fade-in-up 0.5s 0.3s ease both; }

.gradient-text {
    background: linear-gradient(135deg, var(--green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.75rem; border-radius: var(--radius);
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none; transition: var(--transition);
    cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: #0b0f1a; box-shadow: 0 4px 20px rgba(249,168,37,0.35); }
.btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,168,37,0.5); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--green-pale); border-color: var(--green-border); color: var(--green); transform: translateY(-1px); }
.btn-accent { background: var(--green); color: #fff; box-shadow: 0 4px 20px rgba(76,175,80,0.35); }
.btn-accent:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(76,175,80,0.5); }
.btn-full { width: 100%; justify-content: center; }
.mb-3  { margin-bottom: 0.75rem; }
.mt-2  { margin-top: 2rem; }
.mt-xl { margin-top: 4rem; }

/* ========================================
   SECTIONS
======================================== */
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-alt  { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-pale { background: var(--surface-2); border-top: 1px solid var(--border); }

.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold-text); margin-bottom: 1rem;
}
.section-label::before {
    content: ''; display: block; width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--green)); border-radius: 2px;
}
.section-label-center { justify-content: center; }

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800; line-height: 1.2; letter-spacing: -0.025em;
    color: var(--text); margin-bottom: 1rem;
}
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.75; }

/* ========================================
   CARDS
======================================== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.card {
    background: var(--card-bg); border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: var(--transition); position: relative; overflow: hidden;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--green)); opacity: 0; transition: var(--transition);
}
.card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }

.card-icon {
    width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--green) 0%, #1a8c1a 100%);
    border-radius: 14px; font-size: 1.25rem; margin-bottom: 1.25rem;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,92,0,.22);
}
.card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.65rem; color: var(--text); }
.card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.card-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.84rem; font-weight: 700; color: var(--gold-text);
    text-decoration: none; margin-top: 1.25rem; transition: var(--transition);
}
.card-link:hover { gap: 0.7rem; color: var(--green); }

.cards-center { text-align: center; margin-top: 2.5rem; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 0.85rem; }
.feature-item {
    display: flex; gap: 1rem; align-items: center;
    padding: 1.1rem 1.25rem;
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-item:hover { border-color: var(--gold-border); background: var(--gold-pale); transform: translateX(4px); }
.feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,92,0,.22);
}
.feature-title { display: block; color: var(--text); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.15rem; }
.feature-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Tech stack card */
.tech-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.tech-card-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 1.5rem; }

/* Location card */
.location-card { background: var(--gold-pale); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 2rem; margin-top: 1.5rem; }
.location-card-title { font-size: 0.9rem; font-weight: 700; color: var(--gold-text); margin-bottom: 0.5rem; }
.location-card-body  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.location-card a { color: var(--gold-text); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }

/* ========================================
   PAGE BANNER
======================================== */
.page-banner {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 0;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.35));
}

/* ========================================
   PAGE HERO (inner pages)
======================================== */
.page-hero {
    padding: 4.5rem 0 3rem;
    background: linear-gradient(160deg, var(--surface) 60%, var(--surface-2) 100%);
    border-bottom: 1px solid rgba(249,168,37,0.2);
}
.has-banner .page-hero {
    background: transparent;
    border-bottom: none;
    margin-top: -320px;
    padding-top: calc(320px + 3rem);
    position: relative;
    z-index: 1;
    color: #fff;
}
.has-banner .page-hero h1,
.has-banner .page-hero .section-label,
.has-banner .page-hero .breadcrumb,
.has-banner .page-hero .page-hero-sub { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.has-banner .page-hero .breadcrumb a { color: #f4c430; }
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
    max-width: 800px; animation: fade-in-up 0.6s ease both;
}
.page-hero-sub {
    font-size: 1.05rem; color: var(--text-muted); max-width: 600px;
    margin-top: 1rem; animation: fade-in-up 0.6s 0.1s ease both;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; animation: fade-in-up 0.6s 0.2s ease both; }

.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--gold-text); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { opacity: 0.4; }

.page-content { padding: 4rem 0 5rem; }

/* ========================================
   CONTENT BODY
======================================== */
.content-body { max-width: 860px; }
.content-body h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: var(--green);
    margin-top: 2rem; margin-bottom: 0.75rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold-border);
}
.content-body h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 700; color: var(--text);
    margin-top: 2.5rem; margin-bottom: 1rem;
    padding-left: 1rem; border-left: 4px solid var(--gold);
}
.content-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-top: 1.75rem; margin-bottom: 0.65rem; }
.content-body p { font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.1rem; }
.content-body strong { color: var(--text); font-weight: 700; }
.content-body a { color: var(--green); text-underline-offset: 3px; }
.content-body a:hover { color: var(--green-mid); }
.content-body ul, .content-body ol { margin: 0.75rem 0 1.25rem 1.5rem; color: var(--text-muted); }
.content-body li { margin-bottom: 0.45rem; line-height: 1.7; }

/* ========================================
   STATS
======================================== */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; padding: 2.5rem 0; }
.stat-item { text-align: center; padding: 1.5rem 1rem; background: var(--card-bg); border: 1.5px solid var(--gold-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; font-weight: 900; color: var(--gold-text); display: block; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ========================================
   TECH STACK BADGES
======================================== */
.tech-stack { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.tech-badge {
    display: inline-flex; align-items: center;
    padding: 0.35rem 0.85rem;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 100px; font-size: 0.78rem; font-weight: 600;
    color: var(--text-muted); font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition);
}
.tech-badge:hover { background: var(--gold-pale); border-color: var(--gold-border); color: var(--gold-dark); }

/* ========================================
   TWO-COLUMN LAYOUT
======================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ========================================
   CTA SECTION
======================================== */
.cta-section { padding: 5rem 0; background: var(--surface-2); }
.cta-card {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--surface) 100%);
    border: 1.5px solid var(--gold-border); border-radius: var(--radius-lg);
    padding: 4rem 3rem; text-align: center;
    position: relative; overflow: hidden;
    box-shadow: 0 0 80px rgba(249,168,37,0.08);
}
.cta-card::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(249,168,37,0.12) 0%, transparent 65%); pointer-events: none;
}
.cta-card::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(76,175,80,0.1) 0%, transparent 65%); pointer-events: none;
}
.cta-card h2 {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800; color: var(--text); margin-bottom: 1rem; position: relative; z-index: 1;
}
.cta-card h2 span { color: var(--gold-text); }
.cta-card p { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-info {
    display: flex; align-items: center; justify-content: center;
    gap: 1.75rem; flex-wrap: wrap; margin-top: 1.75rem;
    font-size: 0.84rem; color: var(--text-muted); position: relative; z-index: 1;
}
.cta-info span { display: flex; align-items: center; gap: 0.35rem; }
.cta-info .dot { color: var(--gold); font-size: 0.7rem; }

/* ========================================
   FOOTER
======================================== */
footer { background: #003a00; border-top: 4px solid var(--gold); padding: 5rem 0 2.5rem; position: relative; z-index: 1; }
footer, footer p, footer span, footer li { color: rgba(255,255,255,0.75); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-brand img { height: 44px; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.75rem; max-width: 300px; }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a { font-size: 0.875rem; color: rgba(255,255,255,0.8); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact-item { font-size: 0.875rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.5rem; }
.footer-contact svg { flex-shrink: 0; opacity: 0.85; }

.footer-col h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.85rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

.nepal-row { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2.5rem; margin-bottom: 2.5rem; }
.nepal-card {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(244,196,48,0.2);
    border-radius: 14px; padding: 1.25rem 1.75rem;
}
.nepal-block {
    display: flex; flex-direction: column; justify-content: center;
}
.nepal-block-flag {
    flex-shrink: 0; padding-right: 1.5rem;
    display: flex; align-items: center;
}
.nepal-flag-wrap {
    width: 36px; height: 48px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    flex-shrink: 0;
}
.nepal-flag-svg {
    width: 36px; height: 48px; display: block;
}
.nepal-divider {
    width: 1px; align-self: stretch;
    background: rgba(255,255,255,0.12); flex-shrink: 0;
}
.nepal-block-name {
    padding: 0 1.5rem; flex-shrink: 0;
}
.nepal-block-info {
    padding-left: 1.5rem; flex: 1;
}
.nepal-label { font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: .2rem; }
.nepal-name { font-size: 1rem; font-weight: 700; color: #fff; text-decoration: none; transition: color 0.2s; display: block; margin-bottom: .15rem; }
.nepal-name:hover { color: var(--gold); }
.nepal-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.nepal-details { display: flex; flex-direction: column; gap: 0.32rem; }
.nepal-details span { font-size: 0.78rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: .4rem; }
.nepal-details a { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; transition: color .2s; }
.nepal-details a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.75rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.8rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-sep { color: rgba(255,255,255,0.25); }

/* ========================================
   CONTACT PAGE
======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-info-card { background: var(--card-bg); border: 1px solid rgba(249,168,37,0.2); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-sm); }
.contact-info-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.contact-info-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--green-light); border: 1px solid rgba(46,125,50,.15); border-radius: 10px; font-size: 1.05rem; color: var(--green); flex-shrink: 0; }
.contact-info-text strong { display: block; color: var(--text); font-size: 0.88rem; margin-bottom: 0.2rem; }
.contact-info-text span, .contact-info-text a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; }
.contact-info-text a:hover { color: var(--gold-text); }

.contact-area-card { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: var(--radius-lg); padding: 2rem; margin-top: 1.5rem; }
.contact-area-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--green); }
.contact-area-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.contact-form-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.contact-form-card .form-intro { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }

.alert-success { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; color: var(--green); font-size: 0.9rem; line-height: 1.5; }
.alert-error { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.875rem; }
.alert-error strong { color: #dc2626; display: block; margin-bottom: 0.5rem; }
.alert-error ul { color: #b91c1c; margin: 0; padding-left: 1.25rem; line-height: 1.8; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-control { width: 100%; padding: 0.8rem 1rem; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 0.95rem; font-family: inherit; transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249,168,37,0.12); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ========================================
   SERVICE PAGE
======================================== */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.service-sidebar { position: sticky; top: 100px; }

.sidebar-cta { background: var(--green-pale); border: 1.5px solid var(--green-border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.sidebar-cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--green); }
.sidebar-cta p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; }

.sidebar-related { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.sidebar-related h2 { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-related ul { list-style: none; }
.sidebar-related li { border-bottom: 1px solid var(--border); }
.sidebar-related li:last-child { border-bottom: none; }
.sidebar-related a { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.sidebar-related a:hover { color: var(--green); }

.sidebar-location { background: var(--gold-pale); border: 1.5px solid var(--gold-border); border-radius: var(--radius-lg); padding: 1.75rem; }
.sidebar-location-emoji { font-size: 1.1rem; color: var(--green); margin-bottom: 0.75rem; }
.sidebar-location-name { font-size: 0.875rem; color: var(--gold-text); font-weight: 700; margin-bottom: 0.5rem; }
.sidebar-location-body { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ========================================
   SERVICES LISTING
======================================== */
.services-section { padding-top: 3rem; }
.services-category { margin-bottom: 3.5rem; }
.services-cat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.services-cat-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green) 0%, #1a8c1a 100%);
    color: #fff; font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,92,0,.2);
}
.services-cat-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text); letter-spacing: -0.01em; margin: 0; }
.services-cat-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold-border), transparent); }
.services-cat-count { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }
.services-cat-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; max-width: 600px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.service-card { display: flex; align-items: flex-start; gap: 0.9rem; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1rem; text-decoration: none; color: var(--text); transition: all 0.2s ease; }
.service-card:hover { border-color: var(--gold-border); background: var(--gold-pale); transform: translateY(-2px); box-shadow: var(--shadow); }
.service-card:hover .service-card-arrow { color: var(--green); transform: translateX(4px); }
.service-card-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--green-pale);
    color: var(--green);
    font-size: 0.95rem;
    transition: var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,92,0,.25);
}
.service-card-body { flex: 1; min-width: 0; }
.service-card-title { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 0.3rem; }
.service-card-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.service-card-arrow { font-size: 1rem; color: var(--border); flex-shrink: 0; transition: all 0.2s ease; align-self: center; }

.services-cta { background: var(--green-pale); border: 1.5px solid var(--green-border); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; margin-top: 1rem; }
.services-cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--text); margin-bottom: 0.6rem; }
.services-cta p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.services-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.services-desc-section { background: var(--surface-2); border-top: 1.5px solid var(--border); }
.services-desc-inner { max-width: 820px; margin: 0 auto; padding: 3rem 0; }
.services-desc-heading { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.services-desc-bar { width: 4px; height: 28px; background: linear-gradient(180deg, var(--green), var(--gold)); border-radius: 4px; flex-shrink: 0; }
.services-desc-heading h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin: 0; }

.services-body h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--text); margin-top: 2.5rem; margin-bottom: 0.9rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold-border); letter-spacing: -0.015em; }
.services-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

/* ========================================
   LEGAL PAGE
======================================== */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3.5rem; align-items: start; }
.legal-toc { position: sticky; top: 100px; }
.legal-toc-box { background: var(--surface); border: 1.5px solid var(--green-border); border-radius: var(--radius); padding: 1.25rem; font-size: 0.82rem; }
.legal-toc-heading { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-text); margin-bottom: 0.9rem; }
.legal-toc-links { display: flex; flex-direction: column; gap: 0.5rem; color: var(--text-muted); }
.legal-toc-contact { margin-top: 1rem; background: var(--green-pale); border: 1.5px solid var(--green-border); border-radius: var(--radius); padding: 1.1rem; font-size: 0.82rem; text-align: center; }
.legal-toc-contact-title { font-size: 0.8rem; font-weight: 700; color: var(--green); margin-bottom: 0.4rem; }
.legal-toc-contact a { color: var(--green); font-weight: 600; text-decoration: none; font-size: 0.8rem; }
.legal-updated { font-size: 0.82rem; color: var(--text-light); margin-top: 0.75rem; }

.legal-body h2 { font-size: 1.2rem !important; margin-top: 2.25rem !important; padding-left: 0 !important; border-left: none !important; border-bottom: 2px solid var(--gold-border); padding-bottom: 0.5rem; color: var(--text) !important; }
.legal-body h3 { font-size: 1rem !important; color: var(--green) !important; margin-top: 1.5rem !important; }
.legal-body p  { font-size: 0.925rem !important; }
.legal-body ul { margin-left: 1.25rem; }
.legal-body li { font-size: 0.925rem; margin-bottom: 0.4rem; color: var(--text-muted); }
.legal-toc a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; padding: 0.2rem 0; transition: color 0.15s; }
.legal-toc a:hover, .legal-toc a.active { color: var(--green); font-weight: 600; }

/* ========================================
   FAQ
======================================== */
.faq-section { padding: 5rem 0; background: var(--surface-2); border-top: 1px solid var(--border); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header p { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item.open { border-color: var(--gold-border); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.faq-question { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; transition: background 0.2s ease; }
.faq-question:hover { background: var(--gold-pale); }
.faq-item.open .faq-question { background: var(--gold-pale); }

.faq-q-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; font-weight: 800; color: var(--gold-text); background: var(--gold-pale); border: 1px solid var(--gold-border); border-radius: 6px; padding: 0.2rem 0.5rem; flex-shrink: 0; letter-spacing: 0.04em; }
.faq-item.open .faq-q-num { background: var(--gold); color: var(--green); border-color: var(--gold); }
.faq-q-text { flex: 1; font-size: 0.975rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.faq-icon { flex-shrink: 0; color: var(--gold-text); transition: transform 0.3s ease, color 0.2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 1.1rem 1.5rem 1.5rem calc(1.5rem + 2.5rem + 1rem); font-size: 0.925rem; color: var(--text-muted); line-height: 1.85; border-top: 1px solid var(--border); }

/* ========================================
   WHATSAPP FAB
======================================== */
.whatsapp-fab { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; align-items: center; gap: 0.6rem; background: #25d366; color: #fff; text-decoration: none; padding: 0.75rem 1.25rem 0.75rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease; animation: wa-glow 2.5s ease-in-out infinite; }
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 32px rgba(37,211,102,0.65); color: #fff; }
.whatsapp-fab svg { flex-shrink: 0; }
.whatsapp-fab-label { white-space: nowrap; }
@keyframes wa-glow { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.85), 0 0 0 8px rgba(37,211,102,0.12); } }

/* ========================================
   MOBILE NAV
======================================== */
.mobile-nav { display: none; position: fixed; inset: 72px 0 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); z-index: 999; padding: 1.5rem; overflow-y: auto; border-top: 2px solid var(--gold-border); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--border); }
.mobile-nav ul a { display: block; padding: 0.9rem 0; color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 600; }
.mobile-nav ul a:hover { color: var(--gold-dark); }
.mobile-cta { display: block; margin-top: 1.5rem; text-align: center; }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fade-in-up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fade-in    { from { opacity:0; } to { opacity:1; } }
.animate-fade-up { opacity:0; transform:translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-fade-up.visible { opacity:1; transform:translateY(0); }
.stagger > * { opacity:0; transform:translateY(18px); transition:opacity .5s ease, transform .5s ease; }
.stagger.visible > *:nth-child(1){opacity:1;transform:translateY(0);transition-delay:.0s}
.stagger.visible > *:nth-child(2){opacity:1;transform:translateY(0);transition-delay:.1s}
.stagger.visible > *:nth-child(3){opacity:1;transform:translateY(0);transition-delay:.2s}
.stagger.visible > *:nth-child(4){opacity:1;transform:translateY(0);transition-delay:.3s}
.stagger.visible > *:nth-child(5){opacity:1;transform:translateY(0);transition-delay:.4s}
.stagger.visible > *:nth-child(6){opacity:1;transform:translateY(0);transition-delay:.5s}

/* ========================================
   SCROLLBAR
======================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--body-bg); }
::-webkit-scrollbar-thumb { background: rgba(249,168,37,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .footer-grid    { grid-template-columns: 1fr 1fr; }
    .contact-grid   { grid-template-columns: 1fr; }
    .service-layout { grid-template-columns: 1fr; }
    .service-sidebar{ position: static; }
    .legal-layout   { grid-template-columns: 1fr; }
    .legal-toc      { position: static; }
}
@media (max-width: 768px) {
    .navbar        { padding: 0 1rem; }
    .nav-links, .nav-cta { display: none; }
    .hamburger     { display: flex; }
    .container     { padding: 0 1rem; }
    .hero          { min-height: 80vh; }
    .hero-actions  { flex-direction: column; }
    .hero-inner      { flex-direction: column; }
    .hero-badge-wrap { display: none; }
    .btn           { width: 100%; justify-content: center; }
    .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links  { justify-content: center; }
    .cta-card      { padding: 2.5rem 1.5rem; }
    .section       { padding: 4rem 0; }
    .two-col       { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row-2    { grid-template-columns: 1fr; }
    .nepal-divider      { display: none; }
    .nepal-card         { flex-direction: column; gap: 1rem; padding: 1.25rem; }
    .nepal-block-flag   { padding-right: 0; }
    .nepal-block-name   { padding: 0; }
    .nepal-block-info   { padding-left: 0; }
    .whatsapp-fab-label { display: none; }
    .whatsapp-fab  { padding: 0.85rem; border-radius: 50%; bottom: 1.5rem; right: 1.25rem; }
}

/* ── Icon system ─────────────────────────────────────────── */
.dropdown-icon {
    width: 1.25rem; text-align: center;
    font-size: 0.8rem; color: var(--green); flex-shrink: 0;
}

/* ── Clients Carousel ───────────────────────────────────── */
.clients-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.clients-label { text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.clients-swiper { overflow: hidden; }
.clients-swiper .swiper-slide {
    display: flex; align-items: center; justify-content: center;
    height: 64px; /* uniform row height across image and chip slides */
}
.client-chip {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .55rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: var(--card-bg);
    color: var(--text-muted);
    font-size: .82rem; font-weight: 600;
    white-space: nowrap;
    transition: color .2s, border-color .2s, box-shadow .2s;
    user-select: none;
    text-decoration: none;
}
.client-chip:hover { color: var(--green); border-color: var(--green-border); box-shadow: 0 2px 10px rgba(0,92,0,.08); }
.client-chip-icon { font-size: 1.1rem; flex-shrink: 0; }
.client-chip-name { font-size: .8rem; }
.client-logo-img-wrap {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .45rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
    height: 52px;
    transition: border-color .2s, box-shadow .2s, opacity .2s;
    text-decoration: none;
}
.client-logo-img-wrap:hover { border-color: var(--green-border); box-shadow: 0 2px 10px rgba(0,92,0,.08); opacity: .85; }
.client-logo-img { height: 32px; width: auto; max-width: 130px; object-fit: contain; display: block; }

/* ── Services Swiper Carousel ────────────────────────────── */
.services-carousel-wrap {
    position: relative;
    margin-top: 3rem;
    padding: 0 3rem;
}
.services-swiper { width: 100%; }

.svc-slide-card {
    display: flex; flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    text-decoration: none;
    color: inherit;
    position: relative; overflow: hidden;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.svc-slide-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    opacity: 0; transition: opacity .3s;
}
.svc-slide-card:hover {
    box-shadow: 0 16px 48px rgba(0,92,0,.13);
    transform: translateY(-6px);
    border-color: var(--green-border);
    text-decoration: none;
}
.svc-slide-card:hover::after { opacity: 1; }
.svc-slide-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green) 0%, #1a8c1a 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,92,0,.25);
    transition: transform .25s, box-shadow .25s;
}
.svc-slide-card:hover .svc-slide-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(0,92,0,.35);
}
.svc-slide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .65rem;
    line-height: 1.3;
}
.svc-slide-desc {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.svc-slide-link {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: 1.25rem;
    font-size: .825rem;
    font-weight: 600;
    color: var(--green);
}
.svc-slide-link i { font-size: .75rem; transition: transform .2s; }
.svc-slide-card:hover .svc-slide-link i { transform: translateX(4px); }

/* Swiper nav overrides */
.swiper-button-prev.services-swiper-prev,
.swiper-button-next.services-swiper-next {
    color: var(--green);
    background: #fff;
    width: 2.4rem; height: 2.4rem;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    top: 50%;
}
.swiper-button-prev.services-swiper-prev::after,
.swiper-button-next.services-swiper-next::after {
    font-size: .85rem; font-weight: 900;
}
.swiper-button-prev.services-swiper-prev { left: 0; }
.swiper-button-next.services-swiper-next { right: 0; }

.swiper-pagination.services-swiper-pagination { position: static; margin-top: 1.75rem; }
.swiper-pagination.services-swiper-pagination .swiper-pagination-bullet { background: var(--green); opacity: .3; }
.swiper-pagination.services-swiper-pagination .swiper-pagination-bullet-active { opacity: 1; }

@media (max-width: 640px) {
    .services-carousel-wrap { padding: 0 2.5rem; }
}

@media (max-width: 480px) {
    .years-fab { bottom: 1rem; left: 1rem; }
    .years-badge--small { width: 60px; height: 60px; }
}

/* ── Icon detail polish ──────────────────────────────────── */
.nepal-label i,
.nepal-details span i { font-size: .75rem; }
.footer-contact a i,
.footer-contact-item i { font-size: .8rem; width: 14px; text-align: center; flex-shrink: 0; opacity: .85; }
.services-cat-icon i { font-size: 0.9rem; }
.sidebar-related li a i { font-size: .8rem; color: var(--green); width: 16px; text-align: center; flex-shrink: 0; }
.service-card-icon i { font-size: .9rem; }
