/* ============================================================
   Backbone East Africa — Main Stylesheet
   Design: Classical Italian-inspired luxury with warm earthy tones
   Palette: Gold, Caramel, Limestone, Deep Brown
   ============================================================ */

/* ----- CSS Reset & Variables ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Primary palette — classical Italian warmth */
    --gold:          #c4963d;
    --gold-dark:     #a07828;
    --gold-light:    #d4a853;
    --gold-pale:     #f0d78c;
    --caramel:       #c4915e;
    --caramel-dark:  #a0724a;
    --caramel-light: #d9b18a;
    --limestone:     #ede4d3;
    --limestone-dark:#d9cfbe;
    --limestone-light:#f5efe8;
    --brown-deep:    #2a1a0a;
    --brown-dark:    #3d2b1f;
    --brown-mid:     #5c3d2e;
    --brown-warm:    #4a3525;
    --cream:         #faf7f2;
    --white:         #ffffff;
    --dark:          #1a1a1a;
    --text:          #3a3028;
    --text-light:    #7a6e64;
    --text-muted:    #a0988c;
    --border:        #d9cfbe;
    --border-light:  #ede4d3;

    /* Typography */
    --font-heading:  'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
    --font-body:     'Inter', system-ui, -apple-system, sans-serif;
    --font-display:  'Montserrat', system-ui, sans-serif;

    --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm:     0 2px 12px rgba(42,26,10,0.06);
    --shadow-md:     0 4px 24px rgba(42,26,10,0.1);
    --shadow-lg:     0 8px 40px rgba(42,26,10,0.14);
    --radius:        3px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 36px; }
.container-wrap { overflow: hidden; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--brown-deep); }
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); }
em, .em { font-style: italic; color: var(--gold); }

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-subtitle {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Ornament Divider */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ornament-divider.left { justify-content: flex-start; }
.od-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-divider.light .od-line { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); }
.od-diamond {
    color: var(--gold);
    font-size: 0.5rem;
    line-height: 1;
}
.ornament-divider.light .od-diamond { color: var(--gold-pale); }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 2px 12px rgba(196,150,61,0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(196,150,61,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition), color var(--transition);
}
.text-link:hover { gap: 14px; color: var(--gold); }
.text-link i { font-size: 0.8rem; }

/* ----- Header ----- */
.header-top-bar {
    background: var(--brown-deep);
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
    padding: 6px 0;
}
.htb-inner { display: flex; justify-content: space-between; align-items: center; }
.htb-left { display: flex; gap: 20px; align-items: center; }
.htb-left i { color: var(--gold); margin-right: 4px; font-size: 0.7rem; }
.htb-right { display: flex; gap: 14px; align-items: center; }
.htb-right a {
    font-size: 0.75rem; font-weight: 500;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.htb-right a:hover { color: var(--gold); }
.htb-lang {
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1px;
}
.htb-lang.active { color: var(--gold); border-color: var(--gold); }

#header-main {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}
.col-left { display: flex; align-items: center; gap: 20px; }
.col-right { display: flex; align-items: center; }

/* Logo */
#logo { display: block; }
.header-logo-img { height: 38px; width: auto; display: block; }

/* Desktop Nav */
.desktop-nav ul { display: flex; gap: 8px; align-items: center; }
.desktop-nav a {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--brown-deep); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger .line {
    display: block;
    width: 22px; height: 2px;
    background: var(--brown-deep);
    transition: all var(--transition);
}

.slide-out-menu {
    position: fixed; inset: 0; z-index: 2000;
    pointer-events: none; opacity: 0;
    transition: opacity 0.4s ease;
}
.slide-out-menu.open { pointer-events: auto; opacity: 1; }
.slide-out-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0; transition: opacity 0.4s ease;
}
.slide-out-menu.open .slide-out-bg { opacity: 1; }
.slide-out-inner {
    position: absolute; top: 0; right: 0;
    width: 85%; max-width: 360px; height: 100%;
    background: var(--cream);
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}
.slide-out-menu.open .slide-out-inner { transform: translateX(0); }
.slide-out-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
}
.som-brand { font-family: var(--font-heading); font-weight: 600; color: var(--brown-deep); }
.slide-out-close {
    background: none; border: none;
    font-size: 1.8rem; cursor: pointer; color: var(--text-light);
}
.mobile-nav { padding: 12px 0; }
.mobile-nav a {
    display: block;
    padding: 15px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--limestone); color: var(--gold-dark); }
.mobile-flags { padding: 24px 28px; }
.flag-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.mobile-flag-list { display: flex; gap: 16px; margin-top: 10px; }
.mobile-flag-list a { font-size: 0.9rem; font-weight: 600; color: var(--gold-dark); }

/* ----- Hero Section ----- */
.hero-section {
    position: relative;
    width: 100%; height: 100dvh;
    min-height: 560px;
    overflow: hidden;
    background: var(--brown-deep);
}
@supports not (height: 100dvh) {
    .hero-section { height: 100vh; }
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(42,26,10,0.82) 0%, rgba(42,26,10,0.4) 45%, rgba(42,26,10,0.7) 100%);
}

/* Corner ornaments */
.hero-ornament {
    position: absolute; z-index: 5;
    width: 80px; height: 80px;
    border-color: rgba(196,150,61,0.3);
    border-style: solid;
    pointer-events: none;
}
.hero-ornament.top-left    { top: 40px;   left: 40px;   border-width: 2px 0 0 2px; }
.hero-ornament.top-right   { top: 40px;   right: 40px;  border-width: 2px 2px 0 0; }
.hero-ornament.bottom-left { bottom: 40px; left: 40px;  border-width: 0 0 2px 2px; }
.hero-ornament.bottom-right{ bottom: 40px; right: 40px; border-width: 0 2px 2px 0; }

.hero-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    z-index: 10;
    padding: 0 40px;
}
.hero-border-top, .hero-border-bottom {
    width: 100px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin: 24px 0 12px;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
}
.hero-accent {
    display: block;
    color: var(--gold);
    font-weight: 300;
    font-size: 0.7em;
    letter-spacing: 6px;
}
.hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}
.hero-divider .divider-line {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.hero-divider .divider-icon {
    color: var(--gold);
    font-size: 1.1rem;
}
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: italic;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.slider-dots {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}
.slider-dots .dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%; cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.slider-dots .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.4);
}

/* ----- About Preview ----- */
.about-preview {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}
.about-preview::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--caramel), var(--gold));
}
.about-preview-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}
.intro-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brown-deep);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-preview-text p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}
.about-preview-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-preview-stats .highlight-card {
    flex: 1;
    text-align: center;
}

/* ----- Mission & Vision Section ----- */
.mission-vision-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-mid), var(--brown-deep));
    color: var(--white);
}
.mv-bg-overlay {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
}
.mv-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.mv-card {
    position: relative;
    padding: 50px 36px;
}
.mv-ornament {
    position: absolute;
    width: 40px; height: 40px;
    border-color: rgba(196,150,61,0.3);
    border-style: solid;
}
.mv-ornament.top    { top: 0;   left: 50%; transform: translateX(-50%); border-width: 2px 0 0 2px; }
.mv-ornament.bottom { bottom: 0; left: 50%; transform: translateX(-50%); border-width: 0 2px 2px 0; }
.mv-icon-wrap {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border: 1px solid rgba(196,150,61,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    background: rgba(196,150,61,0.08);
}
.mv-card h3 {
    color: #f0d78c;
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mv-quote { position: relative; }
.quote-mark {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(196,150,61,0.3);
    line-height: 0;
    vertical-align: top;
    position: absolute; top: 10px; left: -10px;
}
.mv-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    padding: 0 20px;
}
.mv-interpretation {
    margin-top: 14px;
    padding: 12px 20px 0;
    border-top: 1px solid rgba(196,150,61,0.15);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ----- Split Mission / Vision Sections ----- */
.mission-section,
.vision-section {
    position: relative;
    padding: 80px 0;
    color: var(--white);
}
.mission-section { background: linear-gradient(135deg, var(--brown-deep), var(--brown-mid), var(--brown-deep)); }
.vision-section  { background: linear-gradient(135deg, var(--brown-mid), var(--brown-deep), var(--brown-mid)); }
.mv-block {
    position: relative; z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* ----- Values Overview ----- */
.values-overview {
    padding: 100px 0;
    background: var(--white);
}
.values-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.values-cat {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
}
.vc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.vc-ornament {
    display: block;
    width: 4px; height: 28px;
    background: var(--gold);
}
.vc-header h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown-deep);
    text-transform: uppercase;
}
.vc-items { display: flex; flex-direction: column; gap: 20px; }
.vc-item { display: flex; gap: 16px; align-items: flex-start; }
.vci-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    background: var(--white);
}
.vci-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown-deep);
    margin-bottom: 2px;
}
.vci-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ----- Footprint Section ----- */
.footprint-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.footprint-panel {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.fp-map-col {
    flex: 0 0 48%;
    padding: 32px;
    display: flex;
    align-items: center;
    background: #fdfaf7;
}
.fp-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    flex-shrink: 0;
}
.fp-cards-col {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.africa-map { width: 100%; position: relative; }
.map-frame { position: relative; padding: 8px; }
.map-frame .map-img { width: 100%; height: auto; display: block; border-radius: 2px; }
.mf-corner { position: absolute; width: 24px; height: 24px; border-color: var(--gold); border-style: solid; opacity: 0.6; }
.mf-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.mf-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.mf-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.mf-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.africa-map area { cursor: pointer; }
.footprint-countries { display: flex; flex-direction: column; gap: 12px; }
.country-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: all var(--transition);
    position: relative;
    cursor: pointer;
}
.country-card::after {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform var(--transition);
}
.country-card:hover::after,
.country-card.highlight::after { transform: scaleY(1); }
.country-card:hover,
.country-card.highlight { box-shadow: var(--shadow-md); transform: translateX(4px); }
.country-card.highlight { border-color: var(--gold); }
.country-card.highlight .cc-dot { transform: scale(1.4); }
.country-card.coming-soon { opacity: 0.55; border-style: dashed; cursor: default; }
.country-card.coming-soon .cc-dot { background: var(--text-muted); width: 8px; height: 8px; }
.country-card.coming-soon:hover { transform: none; box-shadow: none; }
.country-card.coming-soon:hover::after { transform: scaleY(0); }
.country-card.coming-soon.highlight { border-color: var(--border); }
.country-card.coming-soon.highlight .cc-dot { transform: scale(1); }
.cc-flag { flex-shrink: 0; width: 28px; height: 20px; border-radius: 2px; overflow: hidden; border: 1px solid var(--border); }
.cc-flag-color { display: block; width: 100%; height: 100%; }
.cc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.country-card h4 { font-size: 0.95rem; color: var(--brown-deep); margin-bottom: 2px; display: flex; align-items: center; gap: 8px; }
.country-card p { font-size: 0.78rem; color: var(--text-light); }
.cc-location { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.5px; }
.cc-badge { display: inline-block; font-size: 0.58rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); background: rgba(196,150,61,0.12); padding: 2px 7px; border-radius: 2px; vertical-align: middle; }

/* Map dot pulse indicators */
.africa-map .map-dot {
    position: absolute;
    width: 14px; height: 14px;
    background: var(--gold);
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(196,150,61,0.5);
    animation: map-dot-pulse 2s infinite;
}
.africa-map .map-dot.highlight {
    background: var(--gold-dark);
    width: 18px; height: 18px;
    box-shadow: 0 0 0 8px rgba(196,150,61,0.3);
    animation: none;
}
@keyframes map-dot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(196,150,61,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(196,150,61,0); }
    100% { box-shadow: 0 0 0 0 rgba(196,150,61,0); }
}

/* ----- CTA Section ----- */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-mid), var(--brown-deep));
    text-align: center;
    overflow: hidden;
}
.cta-bg-overlay {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(196,150,61,0.02) 2px, rgba(196,150,61,0.02) 4px);
}
.cta-ornament-frame {
    position: absolute; inset: 30px;
    pointer-events: none; z-index: 2;
}
.cof-corner {
    position: absolute;
    width: 60px; height: 60px;
    border-color: rgba(196,150,61,0.2);
    border-style: solid;
}
.cof-corner.tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.cof-corner.tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.cof-corner.bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.cof-corner.br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.cta-content {
    position: relative; z-index: 3;
    color: var(--white);
}
.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
}
.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
}

/* ============================================================
   SUB PAGES
   ============================================================ */

/* ----- Page Hero ----- */
.page-hero {
    position: relative;
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: rgba(42,26,10,0.28);
}
.page-hero-ornament {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-ornament.top { top: 60px; }
.page-hero-ornament.bottom { bottom: 60px; }
.page-hero-content {
    position: relative; z-index: 1;
    color: var(--white);
    padding: 60px 20px;
}
.page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
}
.page-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
}
.phd-line { display: block; width: 36px; height: 1px; background: rgba(255,255,255,0.3); }
.phd-icon { color: var(--gold); font-size: 0.9rem; }
.page-hero-content p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
}

/* ----- Mission / Vision (mv2) ----- */
.mv-section { padding: 100px 0; background: var(--cream); }
.mv2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 960px; margin: 0 auto; }
.mv2-card { background: var(--white); padding: 44px 36px; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.mv2-icon { width: 64px; height: 64px; margin: 0 auto 16px; border: 1px solid var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); }
.mv2-card h3 { font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; color: var(--brown-deep); }
.mv2-quote { position: relative; padding: 0 12px; margin-bottom: 12px; }
.mv2-mark { font-family: Georgia, serif; font-size: 2.5rem; color: var(--gold-pale); position: absolute; top: 2px; left: -2px; line-height: 0; }
.mv2-quote p { font-size: 1rem; font-style: italic; color: var(--text-light); line-height: 1.6; }
.mv2-desc { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; padding-top: 12px; border-top: 1px solid var(--border-light); }

/* ----- Company Profile ----- */
.company-profile {
    padding: 80px 0;
    background: var(--white);
}
.profile-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 60px;
    align-items: stretch;
}
.profile-text h2 { margin-bottom: 14px; }
.profile-text p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
}
.profile-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 60%;
    align-self: start;
}
.highlight-card {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 18px 20px;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hc-ornament {
    display: block;
    width: 24px; height: 1px;
    background: var(--gold);
    margin: 0 auto 10px;
}
.hc-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hc-label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ----- Mission & Vision Detail ----- */
.mission-vision-detail {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-mid), var(--brown-deep));
}
.mvd-overlay {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.006) 2px, rgba(255,255,255,0.006) 4px);
}
.mvd-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.mvd-card { padding: 10px; }
.mvd-frame {
    position: relative;
    padding: 50px 40px;
    text-align: center;
}
.frame-corner {
    position: absolute;
    width: 36px; height: 36px;
    border-color: rgba(196,150,61,0.3);
    border-style: solid;
}
.frame-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.mvd-icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    border: 1px solid rgba(196,150,61,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}
.mvd-inner h2 { color: #f0d78c; font-size: 1.4rem; letter-spacing: 2px; }
.mvd-quote { position: relative; padding: 10px 16px 0; }
.mvd-quote-mark {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(196,150,61,0.3);
    line-height: 0;
    vertical-align: middle;
}
.mvd-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.6;
}
.mvd-interpretation {
    margin-top: 12px;
    padding: 10px 16px 0;
    border-top: 1px solid rgba(196,150,61,0.15);
}
.mvd-interpretation p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ----- Core Values Detail ----- */
.core-values-detail {
    padding: 100px 0;
    background: var(--cream);
}
.values-detail-sections { display: flex; flex-direction: column; gap: 64px; }
.vds-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    justify-content: center;
}
.vds-ornament { display: block; width: 4px; height: 28px; background: var(--gold); }
.vds-header h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown-deep);
    text-transform: uppercase;
}
.vds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vds-grid.two-col { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
.vds-card {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.vds-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vds-card-top {
    position: absolute; top: 0; left: 20px; right: 20px;
    height: 3px;
    background: var(--gold);
}
.vds-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
}
.vds-card h4 { font-size: 1.05rem; color: var(--brown-deep); margin-bottom: 10px; }
.vds-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ----- Core Values Pyramid ----- */
.pyramid { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 960px; margin: 0 auto; }
.pyramid-row { display: flex; gap: 20px; justify-content: center; }
.pyramid-row-2 { max-width: 600px; margin: 0 auto; }
.pyramid-row-3 { max-width: 900px; margin: 0 auto; }
.pyramid-connector { width: 100%; height: 44px; overflow: visible; }
.pyramid-connector svg { width: 100%; height: 100%; }
.pyramid-connector svg line { stroke: var(--gold); stroke-opacity: 0.35; }
.pyramid-card {
    background: var(--white); padding: 28px 20px; text-align: center;
    border: 1px solid var(--border); border-radius: var(--radius);
    border-top: 3px solid var(--gold); transition: all var(--transition);
    flex: 1; max-width: 280px; min-width: 200px;
}
.pyramid-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pyramid-icon { font-size: 1.3rem; color: var(--gold); margin-bottom: 10px; display: block; }
.pyramid-card h4 { font-size: 0.9rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; color: var(--brown-deep); }
.pyramid-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }
@media (max-width: 768px) {
    .pyramid-row { flex-direction: column; align-items: center; }
    .pyramid-card { max-width: 100%; }
    .pyramid { gap: 12px; }
    .pyramid-card { padding: 22px 18px; }
    .pyramid-card p { font-size: 0.78rem; }
    .pyramid-icon { font-size: 1.1rem; margin-bottom: 8px; }
    .pyramid-connector { display: none; }
}

/* ----- Business Value Chain ----- */
.business-value-chain {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 40%, var(--white) 100%);
    position: relative;
}
.business-value-chain::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* VC Overview Image */
.vc-flow-diagram { text-align: center; margin-top: 48px; }
.vc-overview-img { max-width: 100%; height: auto; border-radius: 4px; box-shadow: 0 2px 16px rgba(42,26,10,0.08); }

/* VC Steps Grid */
.vc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.vc-step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(42,26,10,0.04);
}
.vc-step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(42,26,10,0.1); }
.vc-step-img { width: 100%; height: 180px; overflow: hidden; }
.vc-step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vc-step-card:hover .vc-step-img img { transform: scale(1.05); }
.vc-step-body { padding: 20px; }
.vc-step-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}
.vc-step-body h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--brown-deep);
    margin-bottom: 8px;
}
.vc-step-body p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .vc-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .vc-steps-grid { grid-template-columns: 1fr; }
}

/* ----- Footprints Detail ----- */
.footprints-detail { padding: 100px 0; background: var(--white); }
.footprint-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.fd-map { max-width: 400px; margin: 0 auto; position: relative; }
.fd-map .map-img { width: 100%; height: auto; display: block; border-radius: 4px; }
.fd-map area { cursor: pointer; }
.fd-offices { display: flex; flex-direction: column; gap: 16px; }
.fd-office-card {
    background: var(--cream);
    padding: 24px;
    border-left: 4px solid var(--gold);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}
.fd-office-card:hover,
.fd-office-card.highlight { transform: translateX(4px); }
.fd-office-card.highlight { background: #fdf8f0; border-left-color: var(--gold-dark); }
.fd-office-card.highlight .fd-oc-dot { transform: scale(1.4); }
.fd-oc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.fd-oc-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); transition: transform var(--transition); }
.fd-oc-header h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--brown-deep); }
.fd-oc-name { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.fd-oc-detail {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.82rem; color: var(--text-light); margin-bottom: 3px;
}

/* Map dot indicators (detail page) */
.fd-map .map-dot {
    position: absolute;
    width: 16px; height: 16px;
    background: var(--gold);
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(196,150,61,0.5);
    animation: map-dot-pulse 2s infinite;
}
.fd-map .map-dot.highlight {
    width: 20px; height: 20px;
    background: var(--gold-dark);
    box-shadow: 0 0 0 8px rgba(196,150,61,0.3);
    animation: none;
}
.fd-oc-detail i { color: var(--gold); width: 12px; margin-top: 3px; }

/* ----- Corporate Structure Page ----- */
.corporate-content { padding: 80px 0; background: var(--white); }

/* Org Chart */
.org-chart { margin: 60px auto 80px; max-width: 700px; }
.org-level { display: flex; justify-content: center; gap: 30px; }
.org-node { padding: 10px; display: flex; }
.org-node-inner {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px 16px;
    text-align: center;
    width: 200px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all var(--transition);
}
.org-node-inner::after {
    content: '';
    position: absolute; top: 0; left: 20px; right: 20px;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.org-node-inner:hover { box-shadow: var(--shadow-md); }
.org-node-inner:hover::after { transform: scaleX(1); }
.org-node-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 8px; }
.org-node h3 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--brown-deep); margin-bottom: 4px; }
.org-node span { font-size: 0.75rem; color: var(--text-muted); }

.org-connector { display: flex; justify-content: center; padding: 4px 0; }
.org-connector.single { padding: 8px 0; }
.oc-line { display: block; width: 2px; height: 28px; background: var(--border); }
.org-connector.triple { flex-direction: column; align-items: center; padding: 8px 0; }
.oc-line-v { display: block; width: 2px; height: 20px; background: var(--border); }
.oc-branches { position: relative; width: 460px; height: 24px; }
.oc-line-h { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--border); }
.oc-line-v.l, .oc-line-v.c, .oc-line-v.r {
    position: absolute; top: 0; width: 2px; height: 24px; background: var(--border);
}
.oc-line-v.l { left: 76px; }
.oc-line-v.c { left: 50%; transform: translateX(-50%); }
.oc-line-v.r { right: 76px; }

/* Value Chain */
.value-chain-section { margin-top: 60px; }
.value-chain-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 40px;
}
.vc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    min-width: 100px;
}
.vc-step-icon {
    width: 60px; height: 60px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 10px;
    background: var(--cream);
    transition: all var(--transition);
}
.vc-step:hover .vc-step-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.vc-step-info h4 { font-size: 0.9rem; color: var(--brown-deep); }
.vc-step-info span { font-size: 0.75rem; color: var(--text-muted); }
.vc-arrow { display: flex; flex-direction: column; align-items: center; }
.vca-line { display: block; width: 30px; height: 1px; background: var(--border); }
.vc-arrow i { color: var(--gold); font-size: 0.6rem; margin-left: -1px; }

/* ----- Stakeholders Page ----- */
.stakeholders-content { padding: 80px 0; background: var(--white); }
.stakeholder-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.sh-card { padding: 2px; }
.sh-card-frame {
    position: relative;
    padding: 36px 28px;
    background: var(--cream);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}
.sh-card-frame:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sh-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0;
    transition: opacity var(--transition);
}
.sh-card-frame:hover .sh-corner { opacity: 1; }
.sh-corner.tl { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.sh-corner.tr { top: 6px; right: 6px; border-width: 1px 1px 0 0; }
.sh-corner.bl { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }
.sh-corner.br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }
.sh-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    background: var(--white);
}
.sh-card h3 { font-size: 1rem; color: var(--brown-deep); margin-bottom: 12px; }
.sh-divider {
    width: 30px; height: 2px;
    background: var(--gold);
    margin: 0 auto 14px;
}
.sh-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.stakeholders-cta { margin-top: 40px; }
.scta-frame {
    position: relative;
    padding: 60px;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-mid));
    text-align: center;
    color: var(--white);
}
.scta-inner h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.scta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.scta-frame .frame-corner { border-color: rgba(196,150,61,0.3); }

/* ----- Contact Page ----- */
.contact-section { padding: 80px 0; background: var(--cream); }
.flash-messages { margin-bottom: 32px; }
.flash-message {
    padding: 16px 24px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.9rem;
}
.flash-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.flash-message.error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    padding: 48px 40px;
    border: 1px solid var(--border);
    position: relative;
}
.cfw-header h2 { margin-bottom: 12px; }
.cfw-header p { color: var(--text-light); margin-bottom: 28px; }
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form .form-group.full { grid-column: 1 / -1; }
.contact-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.required { color: var(--gold-dark); }
.contact-form input,
.contact-form textarea {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196,150,61,0.08);
    background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* Contact Info */
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
}
.cic-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.cic-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.cic-header h3 { font-size: 1.05rem; color: var(--brown-deep); }
.cic-header span { font-size: 0.8rem; color: var(--text-muted); }
.cic-divider { height: 1px; background: var(--border-light); margin-bottom: 16px; }
.cic-detail { display: flex; gap: 12px; align-items: flex-start; }
.cic-detail i { color: var(--gold); margin-top: 2px; width: 16px; }
.cic-detail strong { display: block; font-size: 0.85rem; color: var(--brown-deep); }
.cic-detail a { color: var(--gold-dark); font-size: 0.9rem; }
.cic-detail span { font-size: 0.88rem; color: var(--text-light); }

.office-mini-card {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}
.office-mini-card:last-child { border-bottom: none; padding-bottom: 0; }
.omc-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.omc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.omc-header h4 { font-family: var(--font-display); font-size: 0.85rem; color: var(--brown-deep); }
.omc-name { font-weight: 600; font-size: 0.82rem; color: var(--text); margin-bottom: 4px; }
.omc-detail {
    display: flex; align-items: flex-start; gap: 6px;
    font-size: 0.78rem; color: var(--text-light); margin-bottom: 2px;
}
.omc-detail i { color: var(--gold); width: 12px; margin-top: 3px; }
.omc-detail a { color: var(--gold-dark); }

/* ----- Footer ----- */
#footer-outer { background: var(--brown-deep); color: rgba(255,255,255,0.7); }
.footer-top { padding: 64px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-img { height: 32px; width: auto; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.footer-contact li i { color: var(--gold); margin-top: 3px; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { text-align: center; }
.footer-bottom-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1050px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .header-top-bar { display: none; }
    .container { padding: 0 24px; }

    .hero-section { height: auto; min-height: 60vh; }

    .about-preview-grid { grid-template-columns: 1fr; }
    .about-preview-stats {
        flex-direction: row;
        gap: 12px;
    }
    .about-preview-stats .highlight-card { flex: 1; }

    .mv-grid { grid-template-columns: 1fr; gap: 32px; }
    .mv-card { padding: 36px 24px; }

    .values-cat-grid { grid-template-columns: 1fr; }

    .footprint-panel { flex-direction: column; }
    .fp-map-col { flex: auto; padding: 24px; }
    .fp-divider { width: auto; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .fp-cards-col { padding: 20px 24px; }
    .africa-map { max-width: 340px; margin: 0 auto; }

    .profile-grid { grid-template-columns: 1fr; }
    .profile-highlights { flex-direction: row; }
    .highlight-card { flex: 1; }

    .mvd-grid { grid-template-columns: 1fr; gap: 24px; }
    .mvd-frame { padding: 36px 28px; }

    .vds-grid { grid-template-columns: repeat(2, 1fr); }
    .vds-grid.two-col { grid-template-columns: 1fr; }

    .footprint-detail-grid { grid-template-columns: 1fr; }
    .fd-map { max-width: 280px; }

    .stakeholder-card-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .org-connector.triple .oc-branches { width: 300px; }
    .oc-line-v.l { left: 50px; }
    .oc-line-v.r { right: 50px; }
    .value-chain-flow { flex-direction: column; }
    .vc-arrow { flex-direction: row; }
    .vca-line { width: 1px; height: 20px; }

    .company-profile, .mission-section, .vision-section,
    .core-values-detail, .footprints-detail, .stakeholders-content,
    .business-value-chain, .footprint-section, .cta-section,
    .contact-section, .mv-section { padding: 64px 0; }
}

@media (max-width: 690px) {
    .container { padding: 0 20px; }

    /* --- Hero --- */
    .hero-section { min-height: 480px; height: 92vh; }
    .hero-ornament { width: 40px; height: 40px; }
    .hero-ornament.top-left { top: 20px; left: 20px; }
    .hero-ornament.top-right { top: 20px; right: 20px; }
    .hero-ornament.bottom-left { bottom: 20px; left: 20px; }
    .hero-ornament.bottom-right { bottom: 20px; right: 20px; }
    .hero-content { padding: 0 24px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-accent { font-size: 0.8em; letter-spacing: 3px; }
    .hero-tagline { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .slider-dots { bottom: 24px; }

    /* --- Page Hero --- */
    .page-hero { min-height: 32vh; }
    .page-hero-ornament { width: 60px; }
    .page-hero-ornament.top { top: 36px; }
    .page-hero-ornament.bottom { bottom: 36px; }
    .page-hero-content { padding: 48px 16px; }
    .page-hero-content h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .page-hero-content p { font-size: 0.92rem; }

    /* --- Section padding --- */
    .about-preview, .values-overview, .footprint-section,
    .core-values-detail, .company-profile, .corporate-content,
    .stakeholders-content, .contact-section, .business-value-chain,
    .footprints-detail { padding: 60px 0; }
    .cta-section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }

    .about-preview-stats { flex-direction: column; }
    .profile-highlights { flex-direction: column; }

    .values-cat { padding: 24px; }
    .vc-item { flex-direction: column; align-items: center; text-align: center; }

    .mvd-frame { padding: 28px 20px; }
    .frame-corner { width: 20px; height: 20px; }

    .vds-grid { grid-template-columns: 1fr; }

    .stakeholder-card-grid { grid-template-columns: 1fr; }
    .mv2-grid { grid-template-columns: 1fr; gap: 22px; }
    .mv2-card { padding: 28px 20px; }
    .mv2-card h3 { font-size: 1rem; }
    .mv2-quote p { font-size: 0.9rem; }
    .mv2-desc { font-size: 0.8rem; }
    .scta-frame { padding: 40px 24px; }

    .contact-form-wrap { padding: 32px 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; }

    /* --- Mobile menu touch --- */
    .mobile-nav a { padding: 16px 28px; font-size: 1rem; min-height: 48px; }
    .slide-out-close { font-size: 2rem; padding: 8px; }

    /* --- Buttons --- */
    .btn { padding: 16px 32px; min-height: 48px; }

    /* --- Footer --- */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo-wrap { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-top { padding: 44px 0 28px; }

    /* --- Org chart --- */
    .org-node-inner { width: 160px; min-height: 80px; padding: 14px; }
    .org-level.subsidiaries { flex-direction: column; align-items: center; gap: 16px; }
    .oc-branches { width: 200px !important; }
    .oc-line-v.l { left: 33px !important; }
    .oc-line-v.r { right: 33px !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* --- Hero --- */
    .hero-section { min-height: 420px; height: 90vh; }
    .hero-content { padding: 0 16px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-accent { font-size: 0.75em; letter-spacing: 2px; }
    .hero-tagline { font-size: 0.85rem; margin-bottom: 20px; }
    .hero-ornament { width: 28px; height: 28px; }
    .hero-ornament.top-left { top: 12px; left: 12px; }
    .hero-ornament.top-right { top: 12px; right: 12px; }
    .hero-ornament.bottom-left { bottom: 12px; left: 12px; }
    .hero-ornament.bottom-right { bottom: 12px; right: 12px; }
    .hero-buttons { gap: 12px; }
    .hero-buttons .btn { padding: 12px 24px; font-size: 0.78rem; }
    .slider-dots { bottom: 14px; gap: 8px; }

    /* --- Page Hero --- */
    .page-hero { min-height: 28vh; }
    .page-hero-ornament { display: none; }
    .page-hero-content { padding: 36px 12px; }
    .page-hero-content h1 { font-size: 1.5rem; }
    .page-hero-content p { font-size: 0.82rem; }

    /* --- Section padding --- */
    .about-preview, .values-overview, .footprint-section,
    .core-values-detail, .company-profile, .corporate-content,
    .stakeholders-content, .contact-section, .business-value-chain,
    .footprints-detail, .mv-section { padding: 46px 0; }
    .mv2-grid { grid-template-columns: 1fr; gap: 18px; }
    .mv2-card { padding: 24px 16px; }
    .mv2-icon { width: 52px; height: 52px; font-size: 1.1rem; }
    .cta-section { padding: 54px 0; }
    .section-header { margin-bottom: 32px; }

    /* --- Typography --- */
    h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
    .section-header h2 { font-size: 1.4rem; }
    .section-subtitle { font-size: 0.88rem; }

    /* --- Buttons --- */
    .btn { padding: 14px 24px; min-height: 44px; font-size: 0.78rem; width: 100%; }
    .section-tag { font-size: 0.65rem; letter-spacing: 2px; }

    /* --- Value chain steps --- */
    .vc-step-img { height: 120px; }
    .vc-step-body { padding: 14px; }
    .vc-step-num { font-size: 1.6rem; }

    /* --- Contact --- */
    .contact-form-wrap { padding: 24px 16px; }
    .contact-form input, .contact-form textarea { padding: 10px 14px; font-size: 0.85rem; }
    .contact-info-card { padding: 20px; }

    /* --- Org chart --- */
    .org-connector { display: none; }
    .org-level { flex-direction: column; align-items: center; gap: 12px; }
    .org-node-inner { width: 150px; min-height: 72px; padding: 12px 14px; }

    /* --- Footer --- */
    .footer-top { padding: 32px 0 20px; }
    .footer-grid { gap: 20px; }
    .footer-logo-img { height: 28px; }

    /* --- Cards --- */
    .highlight-card { padding: 14px 12px; }
    .hc-number { font-size: 1.4rem; }
    .country-card { padding: 12px 14px; }
    .vds-card { padding: 24px 16px; }

    /* --- CTA --- */
    .cta-ornament-frame { inset: 14px; }
    .cof-corner { width: 28px; height: 28px; }
    .cta-content h2 { font-size: 1.5rem; }
}
