/* ══════════════════════════════════════════════════════════════
   GULIWE INVEST — Organic Modern Corporate Template
   Palette: Forest Green · Gold · Warm Cream · Charcoal
   ══════════════════════════════════════════════════════════════ */

:root {
    --forest:       #0B2C1E;
    --forest-mid:   #134D36;
    --forest-light: #1E7A4A;
    --gold:         #C8962E;
    --gold-light:   #E2B44B;
    --gold-pale:    #F5E7C6;
    --cream:        #F8F4EE;
    --cream-mid:    #EFE9DF;
    --white:        #FFFFFF;
    --charcoal:     #1C1C1E;
    --text:         #2A2A2A;
    --text-muted:   #6B6B6B;
    --text-light:   #9B9B9B;
    --border:       #E0D9CE;
    --border-dark:  rgba(255,255,255,0.1);
    --shadow-sm:    0 2px 16px rgba(11,44,30,0.07);
    --shadow-md:    0 8px 40px rgba(11,44,30,0.11);
    --shadow-lg:    0 20px 60px rgba(11,44,30,0.14);
    --radius:       14px;
    --radius-sm:    8px;
    --radius-lg:    24px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ─────────────────────────────────────────────── */
.font-display {
    font-family: 'Cormorant Garamond', Georgia, serif;
}
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.1;
}
h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* ── Preloader ──────────────────────────────────────────────── */
.loader-wrapper {
    position: fixed; inset: 0;
    background: var(--forest);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
}
.sk-cube-grid { width: 36px; height: 36px; }
.sk-cube {
    width: 33%; height: 33%;
    background: var(--gold);
    float: left;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube1{animation-delay:.2s} .sk-cube2{animation-delay:.3s} .sk-cube3{animation-delay:.4s}
.sk-cube4{animation-delay:.1s} .sk-cube5{animation-delay:.2s} .sk-cube6{animation-delay:.3s}
.sk-cube7{animation-delay:0s}  .sk-cube8{animation-delay:.1s} .sk-cube9{animation-delay:.2s}
@keyframes sk-cubeGridScaleDelay {
    0%,70%,100% { transform: scale3D(1,1,1); }
    35%          { transform: scale3D(0,0,1); }
}

/* ── Top Bar ────────────────────────────────────────────────── */
.top-header {
    background: var(--forest);
    color: rgba(255,255,255,0.6);
    padding: 9px 0;
    font-size: 0.76rem;
    letter-spacing: 0.1px;
}
.top-header .contact-info { display: flex; gap: 28px; align-items: center; }
.top-header .contact-item { display: flex; align-items: center; gap: 7px; }
.top-header .contact-item i { color: var(--gold-light); font-size: 0.68rem; }
.top-header .social-links { text-align: right; }
.top-header .social-links a {
    color: rgba(255,255,255,0.35);
    margin-left: 14px; font-size: 0.82rem;
    transition: color .2s;
    text-decoration: none;
}
.top-header .social-links a:hover { color: var(--gold-light); }

/* ── Navigation ─────────────────────────────────────────────── */
.navbar-modern {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: background .35s, box-shadow .35s, border-color .35s;
}
.navbar-modern.scrolled {
    background: rgba(255,255,255,0.99);
    box-shadow: 0 4px 32px rgba(11,44,30,0.09);
    border-bottom-color: transparent;
}
.navbar-brand-modern { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 18px 0; }
.logo-modern { height: 44px; width: auto; }
.brand-text-block { display: flex; flex-direction: column; }
.brand-name { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); font-family: 'Inter', sans-serif; line-height: 1.1; }
.brand-tagline { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-family: 'Inter', sans-serif; margin-top: 2px; }

.nav-link-modern {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: 28px 14px !important;
    text-decoration: none;
    position: relative;
    transition: color .2s;
}
.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 20px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
    border-radius: 1px;
}
.nav-link-modern:hover,
.nav-link-modern.active { color: var(--forest) !important; }
.nav-link-modern:hover::after,
.nav-link-modern.active::after { transform: scaleX(1); }

.contact-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 6px;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background .2s, transform .2s, box-shadow .2s !important;
    margin-left: 6px;
}
.contact-cta::after { display: none !important; }
.contact-cta:hover {
    background: var(--gold-light) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,150,46,0.35) !important;
}

/* Navbar mobile toggle */
.navbar-toggler-modern {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; padding: 8px; cursor: pointer;
}
.navbar-toggler-modern span {
    display: block; width: 24px; height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all .3s;
}
@media (max-width: 991px) {
    .navbar-toggler-modern { display: flex; }
    .nav-link-modern { padding: 14px 0 !important; }
    .nav-link-modern::after { bottom: 8px; left: 0; right: 0; }
    .contact-cta { margin: 10px 0 0; display: inline-block; }
    .navbar-collapse { padding: 16px 0 24px; border-top: 1px solid var(--border); margin-top: 16px; }
}
/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 200px;
}
.dropdown-item {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--text);
    padding: 9px 14px;
    border-radius: 6px;
    transition: background .15s;
}
.dropdown-item:hover { background: var(--cream); color: var(--forest); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary-modern {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    border: none; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-primary-modern:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,150,46,0.35);
}
.btn-outline-modern {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.45);
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}
.btn-outline-modern:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-forest {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--forest);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, transform .2s;
    border: none; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-forest:hover { background: var(--forest-mid); color: var(--white); transform: translateY(-2px); }

/* ── Section Labels ─────────────────────────────────────────── */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--forest);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.section-title-white {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.section-lead {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 560px;
}
.section-lead-white {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero-section-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
}
.hero-video-background {
    position: absolute; inset: 0; z-index: 0;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.hero-overlay-modern {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11,44,30,0.88) 0%,
        rgba(11,44,30,0.65) 50%,
        rgba(11,44,30,0.75) 100%
    );
}
/* Organic bottom curve */
.hero-curve {
    position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2;
    line-height: 0;
}
.hero-curve svg { display: block; width: 100%; height: 80px; }

.hero-content-wrapper {
    position: relative; z-index: 1;
    width: 100%; padding: 120px 0 140px;
}
.hero-content-modern {
    max-width: 760px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,150,46,0.15);
    border: 1px solid rgba(200,150,46,0.35);
    color: var(--gold-light);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.5; transform:scale(0.7); }
}

.hero-title-modern {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-title-modern span {
    color: var(--gold-light);
    font-style: italic;
}
.hero-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin-bottom: 24px;
}
.hero-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px;
}
.hero-metrics {
    display: flex; gap: 40px; flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.metric-item { }
.metric-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 4px;
}
.metric-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-family: 'Inter', sans-serif;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 100px; right: 48px; z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif;
}
.hero-scroll-line {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* Video switcher */
.video-selector {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; gap: 6px;
}
.video-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}
.video-btn:hover,
.video-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Fade-in animation */
.fade-in { animation: fadeInUp 0.8s ease both; }
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Stats Strip ────────────────────────────────────────────── */
.stats-section-modern {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    position: relative; z-index: 2;
}
.stat-card-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px 48px;
    border-right: 1px solid var(--border);
    transition: background .2s;
    position: relative;
}
.stat-card-modern::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.stat-card-modern:hover::before { transform: scaleX(1); }
.stat-card-modern:hover { background: var(--white); }
.stat-number-large {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label-modern {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}
.stat-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}
.stat-icon-modern {
    width: 52px; height: 52px;
    background: var(--forest);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.stat-card-modern:hover .stat-icon-modern { background: var(--gold); }
.stat-icon-modern i { color: var(--white); font-size: 1.1rem; }

/* ── About Section ──────────────────────────────────────────── */
.about-section {
    background: var(--white);
    padding: 110px 0;
    position: relative; overflow: hidden;
}
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 520px;
    box-shadow: var(--shadow-lg);
}
.about-image-wrapper img { width:100%; height:100%; object-fit:cover; }
.about-image-badge {
    position: absolute; bottom: 32px; left: 32px;
    background: var(--gold);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
}
.about-image-badge .badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700; line-height: 1;
}
.about-image-badge .badge-label {
    font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85;
}
.capability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.capability-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: all .25s;
    cursor: default;
}
.capability-card:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.cap-icon {
    width: 40px; height: 40px;
    background: var(--forest);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    transition: background .2s;
}
.capability-card:hover .cap-icon { background: var(--gold); }
.cap-icon i { color: var(--white); font-size: 0.9rem; }
.cap-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--forest); margin-bottom: 8px; }
.cap-desc { font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* ── Services Section ───────────────────────────────────────── */
.services-section { background: var(--cream); padding: 110px 0; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--gold-pale);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 52px; height: 52px;
    background: var(--forest);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background .2s;
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon i { color: var(--white); font-size: 1.15rem; }
.service-card h4 {
    font-size: 1rem; font-weight: 700; color: var(--forest);
    margin-bottom: 14px; font-family: 'Inter', sans-serif;
}
.service-list {
    list-style: none; margin: 0; padding: 0;
}
.service-list li {
    font-size: 0.83rem; color: var(--text-muted);
    padding: 6px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Global Footprint ───────────────────────────────────────── */
.global-footprint { padding: 110px 0; background: var(--white); }
.footprint-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.footprint-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.footprint-item:last-child { border-bottom: none; }
.footprint-item i {
    color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0;
}
.footprint-item h5 {
    font-size: 0.85rem; font-weight: 700; color: var(--forest); margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}
.footprint-item p {
    font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.6;
    font-family: 'Inter', sans-serif;
}
.continent-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.continent-pill {
    background: var(--cream); border: 1px solid var(--border);
    color: var(--forest); font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px;
    font-family: 'Inter', sans-serif;
}
.footprint-image-wrap {
    border-radius: var(--radius-lg); overflow: hidden;
    height: 600px; position: relative;
    box-shadow: var(--shadow-lg);
}
.footprint-image-wrap img { width:100%; height:100%; object-fit:cover; }
.footprint-image-tag {
    position: absolute; top: 28px; left: 28px;
    background: var(--forest); color: var(--white);
    padding: 10px 18px; border-radius: 8px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* ── Partners Grid ──────────────────────────────────────────── */
.partners-section { background: var(--cream); padding: 100px 0; }
.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all .25s;
    height: 100%;
}
.partner-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
    transform: translateY(-3px);
}
.partner-logo {
    height: 52px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    filter: grayscale(1); opacity: 0.55;
    transition: filter .2s, opacity .2s;
}
.partner-card:hover .partner-logo { filter: grayscale(0); opacity: 1; }
.partner-logo img { max-height: 48px; max-width: 120px; object-fit: contain; }
/* Real uploaded partner logos — same grey/colour behaviour, white bg for transparency */
.partner-logo-real {
    height: 72px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(0,0,0,.06);
}
.partner-logo-real img { max-height: 56px; max-width: 140px; }
.partner-card h4 { font-size: 0.75rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; }
.partner-card p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ── Insights Section ───────────────────────────────────────── */
.insights-section { background: var(--white); padding: 110px 0; }
.insight-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.insight-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
    transform: translateY(-3px);
}
.featured-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}
.insight-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--forest);
    margin-bottom: 12px; line-height: 1.3;
}
.insight-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
}
.insight-meta small { font-size: 0.72rem; color: var(--text-light); font-family: 'Inter', sans-serif; }

/* ── AI Insights Widget ─────────────────────────────────────── */
.ai-insight-widget {
    background: var(--forest);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}
.ai-insight-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(200,150,46,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.ai-widget-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px;
}
.ai-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,150,46,0.15);
    border: 1px solid rgba(200,150,46,0.3);
    color: var(--gold-light);
    padding: 7px 16px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
.ai-badge .ai-dot {
    width: 7px; height: 7px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}
.ai-refresh-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    padding: 8px 18px; border-radius: 8px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; transition: all .2s;
    font-family: 'Inter', sans-serif;
    display: flex; align-items: center; gap: 7px;
}
.ai-refresh-btn:hover { background: rgba(200,150,46,0.15); border-color: var(--gold); color: var(--gold-light); }
.ai-content-area { min-height: 180px; }
.ai-price-strip {
    display: flex; gap: 24px; flex-wrap: wrap;
    padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 28px;
}
.ai-price-chip {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 100px;
}
.ai-price-chip .commodity-name {
    font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif;
}
.ai-price-chip .price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1;
}
.ai-price-chip .price-change {
    font-size: 0.72rem; font-weight: 600; font-family: 'Inter', sans-serif;
}
.price-up { color: #4ade80; }
.price-down { color: #f87171; }

#aiAnalysisText {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
}
#aiAnalysisText .ai-cursor {
    display: inline-block;
    width: 2px; height: 1em;
    background: var(--gold-light);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.ai-source-tag {
    font-size: 0.65rem; color: rgba(255,255,255,0.3);
    font-family: 'Inter', sans-serif; margin-top: 12px;
    font-style: italic;
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
    background: var(--forest);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200,150,46,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.cta-watermark {
    position: absolute; right: -40px; bottom: -40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22vw; font-weight: 700;
    color: rgba(255,255,255,0.025);
    line-height: 1; pointer-events: none; user-select: none;
    letter-spacing: -0.05em;
}

/* ── Chairman Feature ───────────────────────────────────────── */
.chairman-section {
    background: var(--cream);
    padding: 110px 0;
}
.chairman-photo-wrap {
    position: relative;
}
.chairman-photo {
    width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 560px;
    box-shadow: var(--shadow-lg);
}
.chairman-quote-card {
    position: absolute;
    bottom: -36px; right: -36px;
    background: var(--forest);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    max-width: 280px;
    box-shadow: var(--shadow-lg);
}
.chairman-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-style: italic; line-height: 1.6;
    color: rgba(255,255,255,0.9); margin-bottom: 14px;
}
.chairman-sig {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light); font-family: 'Inter', sans-serif;
}
.chairman-bio p {
    font-size: 1rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 16px;
}
.chairman-credentials { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.cred-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.cred-item i { color: var(--gold); font-size: 0.85rem; margin-top: 2px; }
.cred-item span { font-size: 0.82rem; color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.5; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--forest);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-widget h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-widget p { font-size: 0.85rem; line-height: 1.8; }
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a {
    color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none;
    transition: color .2s;
}
.footer-widget ul li a:hover { color: var(--gold-light); }
.footer-widget .contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-widget .contact-info p {
    display: flex; align-items: flex-start; gap: 10px; margin: 0; font-size: 0.83rem;
}
.footer-widget .contact-info p i { color: var(--gold); font-size: 0.72rem; margin-top: 4px; flex-shrink: 0; }
.footer-credentials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.footer-credentials .badge {
    background: rgba(200,150,46,0.15) !important;
    border: 1px solid rgba(200,150,46,0.25);
    color: var(--gold-light) !important;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; padding: 5px 12px;
    border-radius: 50px;
}
.footer hr { border-color: rgba(255,255,255,0.08); margin: 48px 0 28px; }
.footer p { font-size: 0.8rem; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
    font-size: 0.8rem;
    transition: all .2s;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ── Page Headers ───────────────────────────────────────────── */
.page-header {
    background: var(--forest) !important;
    background-image: none !important;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(200,150,46,0.1) 0%, transparent 60%);
}
.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600; color: var(--white);
    line-height: 1.1; margin-bottom: 14px;
}
.page-subtitle {
    font-size: 1rem; color: rgba(255,255,255,0.6);
    line-height: 1.7; max-width: 520px;
    font-family: 'Inter', sans-serif;
}
.page-overlay { display: none; }

/* ── Scroll wave dividers ───────────────────────────────────── */
.wave-divider { line-height: 0; position: relative; z-index: 1; }
.wave-divider svg { display: block; width: 100%; }

/* ── Utility ─────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest); }
.rounded-org { border-radius: var(--radius); }
.border-gold { border-color: var(--gold) !important; }

/* ── Inner Page Compatibility ───────────────────────────────── */
/* These styles support existing inner pages (about, services, etc.) */

.section-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-top: 8px; }
.section-title { color: var(--forest); }

.vision-card, .mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s, transform .25s;
}
.vision-card:hover, .mission-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
    width: 52px; height: 52px;
    background: var(--forest);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.card-icon i { color: var(--white); font-size: 1.2rem; }
.vision-card h3, .mission-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--forest); margin-bottom: 14px;
}
.mission-list { list-style: none; padding: 0; margin: 0; }
.mission-list li {
    padding: 8px 0; border-bottom: 1px solid var(--border);
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
    display: flex; align-items: flex-start; gap: 10px;
}
.mission-list li:last-child { border-bottom: none; }
.mission-list li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.edge-card, .esg-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    transition: all .25s;
}
.edge-card:hover, .esg-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold-pale); }
.edge-icon, .esg-icon {
    width: 56px; height: 56px;
    background: var(--forest);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: background .2s;
}
.edge-card:hover .edge-icon, .esg-card:hover .esg-icon { background: var(--gold); }
.edge-icon i, .esg-icon i { color: var(--white); font-size: 1.2rem; }
.edge-card h4, .esg-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 10px; }
.edge-card p, .esg-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.license-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.license-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.license-item:last-child { border-bottom: none; }
.license-item i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.license-item h5 { font-size: 0.88rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.license-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* bg-light override to use cream */
.bg-light { background: var(--cream) !important; }

/* text-primary override */
.text-primary { color: var(--gold) !important; }
.btn-primary { background: var(--forest) !important; border-color: var(--forest) !important; border-radius: 8px !important; padding: 12px 28px !important; font-family: 'Inter',sans-serif !important; font-size: 0.78rem !important; font-weight: 600 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; }
.btn-primary:hover { background: var(--forest-mid) !important; border-color: var(--forest-mid) !important; }
.btn-outline-primary { color: var(--forest) !important; border-color: var(--forest) !important; border-radius: 8px !important; font-family: 'Inter',sans-serif !important; font-size: 0.78rem !important; font-weight: 600 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; }
.btn-outline-primary:hover { background: var(--forest) !important; color: var(--white) !important; }

/* Alert styles */
.alert-success { background: rgba(30,122,74,0.1); border-left: 4px solid var(--forest-light); color: var(--forest); }
.alert-danger { background: rgba(200,150,46,0.1); border-left: 4px solid var(--gold); color: #7c4a00; }

/* Forms */
.form-control:focus, .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(200,150,46,0.12) !important;
}
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--forest); letter-spacing: 0.04em; font-family: 'Inter',sans-serif; }

/* Tables */
.table thead th { background: var(--forest); color: var(--white); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Inter',sans-serif; border: none; }
.table tbody tr:hover { background: var(--cream); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
    .stat-card-modern { padding: 28px 20px; border-right: none; border-bottom: 1px solid var(--border); }
    .hero-scroll { display: none; }
    .chairman-quote-card { position: static; margin-top: 20px; max-width: 100%; }
    .ai-insight-widget { padding: 24px 20px; }
    .global-footprint, .about-section, .services-section, .partners-section,
    .insights-section, .cta-section, .chairman-section { padding: 70px 0; }
}
