:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --navy-light: #1a3055;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E8C0;
    --gold-dim: #7A6228;
    --cream: #FAF7F0;
    --white: #FFFFFF;
    --text-dark: #0a1628;
    --text-mid: #3a4a5c;
    --text-light: #6b7c93;
    --border: rgba(201,168,76,0.2);
    --border-light: rgba(201,168,76,0.1);
    --glass: rgba(255,255,255,0.92);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ── HEADER ── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 60px;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    background: transparent;
}

    #header.scrolled {
        background: rgba(10,22,40,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201,168,76,0.15);
        padding: 0 60px;
        box-shadow: 0 4px 40px rgba(0,0,0,0.3);
    }

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #C9A84C, #E8C96A);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1px;
    position: relative;
    overflow: hidden;
}

    .logo-icon::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 9px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 3px;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

    nav a {
        font-size: 13px;
        font-weight: 400;
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        position: relative;
        transition: color 0.3s;
    }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
        }

        nav a:hover {
            color: var(--gold);
        }

            nav a:hover::after {
                width: 100%;
            }

.btn-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 26px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .btn-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gold);
        transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
        z-index: -1;
    }

    .btn-cta:hover {
        color: var(--navy);
    }

        .btn-cta:hover::before {
            left: 0;
        }

/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

/* Cinematic slideshow */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s cubic-bezier(0.4,0,0.2,1), transform 8s cubic-bezier(0.4,0,0.2,1);
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }

.hero-slide-1 {
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1800&q=90');
}

.hero-slide-2 {
    background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=90');
}

.hero-slide-3 {
    background-image: url('banner3.png');
}

.hero-slide-4 {
    background-image: url('https://images.unsplash.com/photo-1610375461246-83df859d849d?w=1800&q=90');
}

.hero-slide-5 {
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1800&q=90');
}

/* Deep cinematic overlay */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.72) 45%, rgba(10,22,40,0.82) 100%);
}

    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.13) 0%, transparent 65%), radial-gradient(ellipse at 5% 80%, rgba(10,22,40,0.8) 0%, transparent 40%);
    }

/* Animated gold particle dots */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-120vh) translateX(30px);
        opacity: 0;
    }
}

/* Slide progress bar */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.06);
    z-index: 10;
}

.hero-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: none;
}

/* Slide dots navigation */
.hero-slide-nav {
    position: absolute;
    bottom: 36px;
    right: 60px;
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.slide-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
}

    .slide-dot.active {
        background: var(--gold);
        width: 44px;
    }

/* Slide counter */
.hero-slide-counter {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s 2.2s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.slide-current {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(255,255,255,0.12);
    line-height: 1;
}

.slide-total {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.slide-divider {
    width: 1px;
    height: 60px;
    background: rgba(201,168,76,0.3);
}

.hero-geometric {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
    border-left: 1px solid rgba(201,168,76,0.1);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 60px;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
    margin-top: 100px;
}

.hero-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 86px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 800px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

    .hero-headline em {
        font-style: italic;
        color: var(--gold-light);
    }

.hero-subtext {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(201,168,76,0.4);
    }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 15px 36px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.hero-stats {
    display: flex;
    gap: 60px;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.hero-photo-stack {
    position: absolute;
    right: 60px;
    bottom: 80px;
    display: flex;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1.2s 1.2s forwards;
    z-index: 2;
}

.hero-thumb {
    width: 120px;
    height: 80px;
    border: 2px solid rgba(201,168,76,0.3);
    overflow: hidden;
    position: relative;
}

    .hero-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75) saturate(0.9);
    }

.hero-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.85);
    padding: 4px 8px;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── MARQUEE TICKER ── */
.ticker-strip {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.4;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── SECTION COMMONS ── */
section {
    position: relative;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-tag-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-tag-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy);
}

    .section-title em {
        font-style: italic;
        color: var(--gold-dim);
    }

.section-title-light {
    color: var(--white);
}

/* ── CHAIRMAN ── */
#chairman {
    padding: 120px 0;
    background: var(--white);
}

.chairman-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: center;
}

.chairman-photo-wrap {
    position: relative;
}

.chairman-photo-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--navy-mid);
}

    .chairman-photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: saturate(0.85);
    }

.chairman-photo-border {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 0;
}

.chairman-photo-frame {
    z-index: 1;
}

.chairman-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    z-index: 3;
}

.chairman-badge-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    display: block;
    color: var(--white);
}

.chairman-badge-title {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.chairman-content {
}

.chairman-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    line-height: 0.5;
    color: var(--gold-pale);
    display: block;
    margin-bottom: 20px;
}

.chairman-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--navy);
    font-style: italic;
    margin-bottom: 32px;
    border-left: 3px solid var(--gold);
    padding-left: 28px;
}

.chairman-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.chairman-sign {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    color: var(--gold-dim);
}

/* ── MISSION VISION ── */
#mission {
    padding: 120px 0;
    background: var(--navy);
    overflow: hidden;
}

    #mission::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
        pointer-events: none;
    }

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: stretch;
}

.mv-divider {
    background: rgba(201,168,76,0.2);
}

.mv-block {
    padding: 60px 80px;
}

.mv-icon-circle {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.mv-icon {
    font-size: 26px;
}

.mv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1;
}

.mv-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
}

/* ── WHO WE ARE ── */
#whoweare {
    padding: 120px 0;
    background: var(--cream);
}

.wwa-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.wwa-content {
}

.wwa-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-mid);
    margin: 28px 0 40px;
}

.wwa-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 48px;
}

.wwa-metric {
    background: var(--white);
    padding: 28px 20px;
    text-align: center;
}

.wwa-metric-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--navy);
    display: block;
}

.wwa-metric-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}

.wwa-photos {
    position: relative;
    height: 580px;
}

.wwa-photo-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 80%;
    overflow: hidden;
    background: var(--navy-mid);
}

    .wwa-photo-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.9);
    }

.wwa-photo-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    overflow: hidden;
    background: var(--navy);
    border: 4px solid var(--cream);
}

    .wwa-photo-accent img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.wwa-gold-box {
    position: absolute;
    top: 40%;
    right: -20px;
    background: var(--gold);
    padding: 20px 24px;
    z-index: 3;
}

.wwa-gold-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--navy);
    display: block;
    line-height: 1;
}

.wwa-gold-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy-mid);
    display: block;
    margin-top: 4px;
}

/* ── DIVISIONS ── */
#divisions {
    padding: 120px 0px 60px 0px;
    background: var(--white);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(10,22,40,0.08);
    border: 1px solid rgba(10,22,40,0.08);
    margin-top: 60px;
}

.divisions-grid4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(10, 22, 40, 0.08);
    border: 1px solid rgba(10, 22, 40, 0.08);
    margin-top: 60px;
    padding: 15px;
}
.division-card {
    background: var(--white);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    group: true;
}

    .division-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--navy);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
        z-index: 0;
    }

    .division-card:hover::before {
        transform: scaleY(1);
    }

    .division-card > * {
        position: relative;
        z-index: 1;
    }

.division-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 300;
    color: rgb(10 22 40 / 50%);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.4s;
    display: block;
}

.division-card:hover .division-num {
    color: #fff;
}

.division-icon-wrap {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s;
    font-size: 22px;
}

.division-card:hover .division-icon-wrap {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.08);
}

.division-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 16px;
    transition: color 0.4s;
    line-height: 1.2;
}

.division-card:hover .division-name {
    color: var(--white);
}

.division-services {
    list-style: none;
    margin-bottom: 28px;
}

    .division-services li {
        font-size: 13px;
        font-weight: 300;
        color: var(--text-light);
        padding: 5px 0;
        border-bottom: 1px solid rgba(10,22,40,0.06);
        transition: color 0.4s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .division-services li::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

.division-card:hover .division-services li {
    color: rgba(255,255,255,0.55);
    border-color: rgba(255,255,255,0.06);
}

.division-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

    .division-link:hover {
        gap: 16px;
    }

.division-link-arrow {
    width: 28px;
    height: 1px;
    background: var(--gold);
    position: relative;
    transition: width 0.3s;
}

    .division-link-arrow::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        border-right: 1px solid var(--gold);
        border-top: 1px solid var(--gold);
        transform: translateY(-50%) rotate(45deg);
    }

.division-card:hover .division-link-arrow {
    width: 40px;
}

/* ── GOLD SECTION ── */
#gold {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    #gold::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1610375461246-83df859d849d?w=1600&q=60') center/cover;
        opacity: 0.08;
    }

    #gold::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(transparent, var(--navy));
    }

.gold-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gold-content .section-title {
    color: var(--white);
}

.gold-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
    margin: 28px 0 40px;
}

.gold-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gold-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.03);
    transition: all 0.3s;
}

    .gold-feature:hover {
        border-color: rgba(201,168,76,0.4);
        background: rgba(201,168,76,0.07);
    }

.gold-feature-icon {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.gold-feature-name {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.gold-feature-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

.gold-visual {
    position: relative;
}

.gold-bar-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gold-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.04);
    position: relative;
    overflow: hidden;
}

.gold-bar-inner {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(201,168,76,0.12), transparent);
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.gold-bar-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    flex: 1;
}

.gold-bar-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.gold-cert {
    margin-top: 32px;
    padding: 20px 24px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    gap: 16px;
}

.gold-cert-icon {
    font-size: 28px;
}

.gold-cert-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    display: block;
}

.gold-cert-sub {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-top: 3px;
}

/* ── MAP / PRESENCE ── */
#presence {
    padding: 120px 0;
    background: var(--cream);
}

.presence-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.map-wrap {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px;
    overflow: hidden;
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-location-dot {
    cursor: pointer;
    transition: transform 0.3s;
}

    .map-location-dot:hover {
        transform: scale(1.3);
    }

.map-pulse {
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.presence-list {
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.presence-item {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
    cursor: pointer;
}

    .presence-item:hover {
        transform: translateX(6px);
        border-left-color: var(--navy);
        box-shadow: 4px 0 20px rgba(10,22,40,0.08);
    }

.presence-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.presence-flag {
    font-size: 24px;
}

.presence-country {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
}

.presence-role {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--gold-dim);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.presence-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── WHY MUSSA ── */
#why {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    margin-top: 60px;
}

.why-card {
    background: var(--navy);
    padding: 48px 40px;
    border-top: 2px solid transparent;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .why-card:hover::before {
        transform: scaleX(1);
    }

    .why-card:hover {
        background: rgba(255,255,255,0.03);
    }

.why-icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: block;
}

.why-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

/* ── COMPLIANCE ── */
#compliance {
    padding: 120px 0;
    background: var(--white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
    margin-top: 0;
}

.compliance-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--border);
}

.compliance-item {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

    .compliance-item:last-child {
        border-bottom: none;
    }

    .compliance-item:hover {
        background: var(--cream);
        padding-left: 36px;
    }

.compliance-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.compliance-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    display: block;
}

.compliance-sub {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    display: block;
    margin-top: 3px;
}

.compliance-visual {
    position: relative;
}

.compliance-photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--navy);
}

    .compliance-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.85);
    }

.compliance-overlay {
    position: absolute;
    bottom: -20px;
    left: 40px;
    right: -20px;
    background: var(--navy);
    padding: 32px 40px;
    z-index: 2;
}

.compliance-overlay-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
}

.compliance-overlay-author {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 12px;
    display: block;
}

/* ── CORPORATE RELATIONS ── */
#relations {
    padding: 120px 0;
    background: var(--cream);
}

.relations-cats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 40px 0 48px;
}

.rel-cat {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

    .rel-cat.active, .rel-cat:hover {
        background: var(--navy);
        color: var(--gold);
        border-color: var(--navy);
    }

.relations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(10,22,40,0.08);
    border: 1px solid rgba(10,22,40,0.08);
}

.relation-card {
    background: var(--white);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

    .relation-card:hover {
        background: var(--navy);
        transform: translateY(-4px);
    }

.relation-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.relation-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.relation-card:hover .relation-name {
    color: var(--gold);
}

.relation-type {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 6px;
    transition: color 0.3s;
}

.relation-card:hover .relation-type {
    color: rgba(255,255,255,0.4);
}

/* ── CONTACT ── */
#contact {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
}

    #contact::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
}

    .contact-info .section-title {
        color: var(--white);
        margin-bottom: 40px;
    }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    display: block;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

.form-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: rgba(201,168,76,0.5);
    }

    .form-input::placeholder, .form-textarea::placeholder {
        color: rgba(255,255,255,0.2);
    }

    .form-select option {
        background: var(--navy);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    padding: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    font-family: 'DM Sans', sans-serif;
}

    .btn-submit:hover {
        background: var(--gold-light);
        box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    }

/* ── FOOTER ── */
footer {
    background: #060e1a;
    padding: 80px 0 0;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-grid {
    display: flex;
    justify-content: center;
}

.footer-brand {
}

.footer-brand {
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    margin: 16px 0 24px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

    .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        font-size: 13px;
        font-weight: 300;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
}

.footer-legal {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 20px;
}

    .footer-legal a {
        font-size: 11px;
        font-weight: 300;
        color: rgba(255,255,255,0.25);
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.3s;
    }

        .footer-legal a:hover {
            color: var(--gold);
        }

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* ── MOBILE MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        width: 24px;
        height: 1px;
        background: var(--white);
        transition: all 0.3s;
    }
i.fa-regular.fa-file-pdf.add-font {
    font-size: 43px;
}
@media (max-width: 1024px) {
    .chairman-grid, .wwa-grid, .gold-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .divisions-grid4 {
        grid-template-columns: repeat(2, 1fr);
    }


    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-divider {
        display: none;
    }

    .relations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .presence-grid {
        grid-template-columns: 1fr;
    }

    .wwa-photos {
        display: none;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }
}
.map-fram {
    width:100%;
    height:900px
}
@media (max-width: 768px) {
    #header {
        padding: 0 24px;
    }
    .map-fram {
        width: 100%;
        height: 350px
    }

        #header.scrolled {
            padding: 0 24px;
        }

    .header-inner {
        height: 64px;
    }

    nav, .btn-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-inner {
        padding: 0;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero-photo-stack {
        display: none;
    }

    .divisions-grid {
        grid-template-columns: 1fr;
    }
    .divisions-grid4 {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px 0px 0px 0px;
        border-radius: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .relations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        Display: block
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-inner {
        padding: 0 24px;
    }

    .mv-block {
        padding: 48px 24px;
    }
}

/* Chairman inset thumbnail row */
.chairman-inset-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.chairman-inset-thumb {
    flex: 1;
    height: 80px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(201,168,76,0.25);
}

    .chairman-inset-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75) saturate(0.85);
        transition: filter 0.4s;
    }

    .chairman-inset-thumb:hover img {
        filter: brightness(0.9) saturate(1);
    }

.chairman-inset-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.85);
    padding: 4px 6px;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
}

.logo-wrap img {
    width: 150px;
}

a.btn-outline.phone-show {
    display: none !important
}

a.btn-outline.desktop-block {
    display: block !important
}
.heading-icon-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add-font{
    font-size:16px
}
.flexing-icons-text {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
}


img.woldmap {
    width: 100%;
}
@media(max-width:991px) {

    a.btn-outline.desktop-block {
        display: none !important
    }

    .add-font {
        font-size: 24px
    }

    .divisions-grid4 .btn-primary {
        border-radius: 4px;
        height: 60px;
        align-items: center !important;
        display: flex !important;
        justify-content: space-between;
    }

    #divisions {
        padding: 50px 20px 30px;
        background: var(--white);
    }

    a.btn-outline.phone-show {
        display: block !important
    }

    .remove-margin-phone.visible {
        margin: 0px !important;
    }

    .division-num {
        color: rgb(10 22 40);
    }

    .gold-features {
        grid-template-columns: auto;
    }

    .compliance-overlay {
        right: 0px;
    }

    .chairman-photo-border {
        right: 0px;
    }

    #chairman {
        padding: 0px 0;
    }

    .chairman-badge {
        left: 0px;
    }

    #mission {
        padding: 50px 20px 0;
    }

    #whoweare {
        padding: 50px 20px 0;
    }

    .wwa-metric {
        padding: 24px 12px;
    }

    #gold {
        padding: 50px 20px 30px;
    }

    #presence {
        padding: 50px 20px 30px;
    }

    #why {
        padding: 50px 20px 30px;
    }

    #compliance {
        padding: 50px 20px 30px;
    }

    #relations {
        padding: 50px 20px 30px;
    }

    #contact {
        padding: 120px 30px;
    }

    .reveal-left.visible {
        padding: 0px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .footer-tagline {
        text-align: center
    }

    .chairman-body {
        padding-left: 28px;
        padding-right: 40px;
    }

    .chairman-sign {
        padding-left: 28px;
        margin-bottom: 20px;
        display: block;
    }

    .chairman-quote-mark {
        margin-left: 30px;
    }

    .chairman-quote {
        font-family: 'Cormorant Garamond', serif;
        font-size: 25px;
        font-weight: 400;
        line-height: 1.5;
        color: var(--navy);
        font-style: italic;
        margin-bottom: 32px;
        border-left: 3px solid var(--gold);
        padding-left: 28px;
        padding-right: 40px;
    }

    .hero-stats {
        padding-top: 10px;
        flex-wrap: nowrap;
        gap: 30px;
    }

    .stat-label {
        font-size: 8px;
    }

    .stat-num {
        font-size: 20px;
    }

    .hero-btns {
        margin-bottom: 20px;
    }

    .hero-eyebrow {
        margin-top: 30px;
    }

    i.fa-regular.fa-file-pdf.add-font {
        font-size: 20px;
    }
    .presence-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
