/* ========================================================================
   ZEE BANK PLC — World-Class Corporate Design System
   Navy Blue (#1B3B6F) & Gold (#C9A84C) Brand Identity
   ======================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties — matched to ZeeBank Plc brand logo --- */
:root {
    /* Brand Primaries */
    --navy-deepest: #060b18;
    --navy-deep: #0a1224;
    --navy-dark: #0e1830;
    --navy: #132240;
    --navy-mid: #1B3B6F;
    --navy-light: #2C5AA0;
    --blue-bright: #3B7DDA;
    --blue-sky: #5BA3F5;

    /* Gold / Amber Accents */
    --gold: #C9A84C;
    --gold-light: #E0C76E;
    --gold-lightest: #F0E0A0;
    --gold-dark: #A88B3A;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --gold-glow: rgba(201, 168, 76, 0.4);

    /* Cyan (Secondary Accent) */
    --cyan: #00D4FF;
    --cyan-dim: rgba(0, 212, 255, 0.12);

    /* Text */
    --text-white: #ffffff;
    --text-primary: #E8EDF5;
    --text-secondary: #94A3C4;
    --text-muted: #5D7099;
    --text-gold: #C9A84C;

    /* Glass Effects */
    --glass-bg: rgba(19, 34, 64, 0.55);
    --glass-bg-strong: rgba(11, 18, 36, 0.75);
    --glass-border: rgba(201, 168, 76, 0.12);
    --glass-border-hover: rgba(201, 168, 76, 0.35);
    --glass-border-blue: rgba(59, 125, 218, 0.12);

    /* Surfaces */
    --surface-card: rgba(14, 24, 48, 0.85);
    --surface-elevated: rgba(27, 59, 111, 0.15);

    /* Gradients */
    --gradient-hero: linear-gradient(160deg, #060b18 0%, #0e1830 25%, #1B3B6F 55%, #132240 85%, #0a1224 100%);
    --gradient-gold: linear-gradient(135deg, #C9A84C, #E0C76E, #C9A84C);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    --gradient-blue: linear-gradient(135deg, #1B3B6F, #3B7DDA);
    --gradient-blue-gold: linear-gradient(135deg, #1B3B6F 0%, #2C5AA0 50%, #C9A84C 100%);
    --gradient-card: linear-gradient(145deg, rgba(27, 59, 111, 0.25), rgba(14, 24, 48, 0.7));
    --gradient-card-gold: linear-gradient(145deg, rgba(201, 168, 76, 0.08), rgba(14, 24, 48, 0.7));
    --gradient-shine: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.06), transparent);
    --gradient-text-gold: linear-gradient(135deg, #C9A84C, #F0E0A0, #C9A84C);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    --container-narrow: 900px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Borders */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-gold-sm: 0 2px 12px rgba(201, 168, 76, 0.12);
    --shadow-gold-md: 0 8px 32px rgba(201, 168, 76, 0.15);
    --shadow-gold-lg: 0 20px 60px rgba(201, 168, 76, 0.2);
    --shadow-blue-sm: 0 4px 20px rgba(27, 59, 111, 0.3);
    --shadow-blue-lg: 0 20px 60px rgba(27, 59, 111, 0.4);
    --shadow-dark: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deepest);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-white);
    line-height: 1.2;
    font-weight: 700;
}

/* --- Containers & Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section--alt {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deepest) 100%);
}

/* Section Headers */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-pill);
}

.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
    animation: label-pulse 2s ease-in-out infinite;
}

@keyframes label-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.section-header {
    max-width: 680px;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid System */
.grid {
    display: grid;
    gap: 28px;
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .grid--4,
    .grid--3,
    .grid--2 {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   NAVIGATION — Premium Sticky Nav
   ======================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: all var(--transition-base);
    background: transparent;
}

.nav.scrolled {
    background: rgba(6, 11, 24, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1), var(--shadow-dark);
    padding: 0 32px;
}

.nav__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    transition: height var(--transition-base);
}

.nav.scrolled .nav__inner {
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
}

.nav__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.2));
}

.nav.scrolled .nav__logo-img {
    height: 44px;
}

.nav__logo-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-deep);
    box-shadow: var(--shadow-gold-sm);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.nav__logo-text span {
    color: var(--gold);
}

.footer__logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.15));
}

/* Nav Links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__links a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav__links a:hover {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.06);
}

.nav__links a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.nav__links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

/* Mobile Toggle */
.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav__mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav__mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav__mobile-toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 11, 24, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        gap: 0;
        padding: 24px;
        transform: translateY(-120%);
        transition: transform var(--transition-base);
        z-index: 999;
    }

    .nav__links.open {
        transform: translateY(0);
    }

    .nav__links a {
        font-size: 1.1rem;
        padding: 16px;
        width: 100%;
    }
}

/* ========================================================================
   HERO SECTION — Cinematic
   ======================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(27, 59, 111, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--navy-deepest), transparent);
    z-index: 2;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    max-width: 750px;
    letter-spacing: -0.03em;
}

.hero__title .gradient-text {
    background: var(--gradient-text-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer-text 4s ease-in-out infinite;
}

@keyframes shimmer-text {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 400;
}

.hero__cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ========================================================================
   BUTTONS — Premium
   ======================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--navy-deep);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
    font-weight: 700;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
    color: var(--navy-deep);
}

.btn--outline {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid rgba(201, 168, 76, 0.35);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.12);
}

.btn--gold {
    background: var(--gradient-gold);
    color: var(--navy-deep);
    font-weight: 700;
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
    color: var(--navy-deep);
}

.btn--lg {
    padding: 20px 44px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* ========================================================================
   METRICS / STATS — Impact Numbers
   ======================================================================== */
.metrics {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deepest) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
}

.metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    animation: metrics-shine 6s ease-in-out infinite;
}

@keyframes metrics-shine {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.metric {
    text-align: center;
    padding: 56px 28px;
    position: relative;
    transition: all var(--transition-base);
}

.metric:hover {
    background: rgba(201, 168, 76, 0.03);
}

.metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

.metric__value {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.metric__value .accent {
    background: var(--gradient-text-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 900px) {
    .metrics__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .metrics__grid {
        grid-template-columns: 1fr;
    }

    .metric::after {
        display: none !important;
    }

    .metric {
        padding: 32px 24px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    }
}

/* ========================================================================
   CARDS — Premium Glassmorphism
   ======================================================================== */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold-md);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: 1;
}

.card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.7rem;
    transition: all var(--transition-base);
}

.card:hover .card__icon {
    box-shadow: var(--shadow-gold-sm);
    transform: scale(1.05);
}

.card__icon--gold {
    background: rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.25);
}

.card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.card__link:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* Glass Card Variant */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-gold-sm);
    transform: translateY(-4px);
}

/* ========================================================================
   GLOBAL PRESENCE / WORLD MAP
   ======================================================================== */
.global-presence {
    position: relative;
}

.global-presence__map {
    position: relative;
    margin: 48px 0;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-presence__map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.global-presence__map svg {
    width: 100%;
    max-width: 900px;
    opacity: 0.2;
}

.map-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 24px var(--gold-glow);
    animation: map-pulse 2.5s ease-in-out infinite;
}

.map-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    animation: map-ring 2.5s ease-in-out infinite;
}

.map-dot__label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-light);
    background: var(--navy-dark);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes map-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes map-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Hubs list */
.hubs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.hub {
    text-align: center;
    padding: 28px 20px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.hub:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-sm);
}

.hub__city {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.hub__desc {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
}

@media (max-width: 900px) {
    .hubs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hubs {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   FOOTER — Premium
   ======================================================================== */
.footer {
    background: linear-gradient(180deg, var(--navy-deepest), #030610);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 56px;
    padding-bottom: 56px;
}

.footer__brand-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 320px;
    line-height: 1.8;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer__links a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer__bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    padding: 28px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__legal {
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.8;
}

.footer__copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom-inner {
        flex-direction: column;
    }
}

/* ========================================================================
   PAGE HERO (Inner pages) — Dramatic
   ======================================================================== */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(27, 59, 111, 0.2) 0%, transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--navy-deepest), transparent);
    z-index: 2;
}

.page-hero__content {
    position: relative;
    z-index: 3;
}

.page-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-hero__desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.8;
}

/* ========================================================================
   SERVICE SECTIONS — Alternating
   ======================================================================== */
.service-block {
    padding: 100px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.04);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.service-block:nth-child(even) .service-block__inner {
    direction: rtl;
}

.service-block:nth-child(even) .service-block__inner>* {
    direction: ltr;
}

.service-block__number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gradient-text-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    margin-bottom: 8px;
    line-height: 1;
}

.service-block__title {
    font-size: 1.7rem;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.service-block__desc {
    margin-bottom: 28px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-block__features {
    list-style: none;
}

.service-block__features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-block__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 0 8px var(--gold-dim);
}

.service-block__visual {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    font-size: 4.5rem;
    overflow: hidden;
    position: relative;
}

.service-block__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

@media (max-width: 900px) {
    .service-block__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-block:nth-child(even) .service-block__inner {
        direction: ltr;
    }
}

/* ========================================================================
   LEADERSHIP / TEAM — Premium Cards
   ======================================================================== */
.leader {
    text-align: center;
    padding: 20px;
}

.leader__photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--gradient-card);
    border: 3px solid rgba(201, 168, 76, 0.2);
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.leader:hover .leader__photo {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold-md);
    transform: scale(1.05);
}

.leader__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.leader__role {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.leader__bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ========================================================================
   TIMELINE — Elegant
   ======================================================================== */
.timeline {
    position: relative;
    padding: 48px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.3), transparent);
    transform: translateX(-50%);
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 52px;
    position: relative;
}

.timeline__item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 44px);
    text-align: right;
}

.timeline__item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 44px);
    text-align: left;
}

.timeline__dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--navy-deep);
    z-index: 2;
    box-shadow: 0 0 16px var(--gold-glow);
}

.timeline__year {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 22px;
    }

    .timeline__item:nth-child(odd),
    .timeline__item:nth-child(even) {
        flex-direction: column;
        padding-left: 56px;
        padding-right: 0;
        text-align: left;
    }

    .timeline__dot {
        left: 22px;
    }
}

/* ========================================================================
   CONTACT FORM — Premium
   ======================================================================== */
.form {
    max-width: 600px;
}

.form__group {
    margin-bottom: 28px;
}

.form__label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(19, 34, 64, 0.5);
    border: 1.5px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
    backdrop-filter: blur(8px);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1), var(--shadow-gold-sm);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__textarea {
    resize: vertical;
    min-height: 150px;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.form__error {
    font-size: 0.82rem;
    color: #FF6B7A;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.form__group.error .form__input,
.form__group.error .form__select,
.form__group.error .form__textarea {
    border-color: #FF6B7A;
    box-shadow: 0 0 0 3px rgba(255, 107, 122, 0.1);
}

.form__group.error .form__error {
    display: block;
}

.form__success {
    display: none;
    padding: 32px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-weight: 600;
    text-align: center;
}

.form__success.show {
    display: block;
}

/* ========================================================================
   OFFICES
   ======================================================================== */
.offices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.office {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition-base);
}

.office:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-sm);
}

.office__city {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.office__address,
.office__phone {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.office__phone {
    margin-top: 8px;
}

@media (max-width: 640px) {
    .offices {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   COMPLIANCE SECTIONS
   ======================================================================== */
.compliance-item {
    padding: 56px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.05);
}

.compliance-item:last-child {
    border-bottom: none;
}

.compliance-item__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.compliance-item__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.compliance-item__title {
    font-size: 1.35rem;
    font-weight: 700;
}

.compliance-item__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 820px;
}

.compliance-item__list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.compliance-item__list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.compliance-item__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 640px) {
    .compliance-item__list {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   ANIMATIONS — Scroll-triggered
   ======================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children>*:nth-child(2) {
    transition-delay: 0.12s;
}

.stagger-children>*:nth-child(3) {
    transition-delay: 0.24s;
}

.stagger-children>*:nth-child(4) {
    transition-delay: 0.36s;
}

.stagger-children>*:nth-child(5) {
    transition-delay: 0.48s;
}

.stagger-children>*:nth-child(6) {
    transition-delay: 0.60s;
}

/* ========================================================================
   DECORATIVE ELEMENTS
   ======================================================================== */
.glow-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
    margin-bottom: 24px;
    box-shadow: 0 0 12px var(--gold-glow);
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    margin: 80px 0;
}

/* ========================================================================
   TECH FEATURES (Technology page)
   ======================================================================== */
.tech-feature {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.05);
    transition: all var(--transition-base);
}

.tech-feature:hover {
    padding-left: 12px;
}

.tech-feature:last-child {
    border-bottom: none;
}

.tech-feature__icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    transition: all var(--transition-base);
}

.tech-feature:hover .tech-feature__icon {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-gold-sm);
}

.tech-feature__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tech-feature__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================================================
   LEGAL PAGES (Terms, Privacy)
   ======================================================================== */
.legal-content {
    padding: 72px 0;
}

.legal-content h2 {
    font-size: 1.45rem;
    margin: 48px 0 18px;
    color: var(--gold-light);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 100%;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 18px;
}

.legal-content li {
    padding: 5px 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================================================
   CONTACT INFO GRID
   ======================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Info cards on contact page */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-gold-sm);
}

.info-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.info-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-card__text a {
    color: var(--gold);
    transition: color var(--transition-fast);
}

.info-card__text a:hover {
    color: var(--gold-light);
}

/* ========================================================================
   UTILITY CLASSES
   ======================================================================== */
.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.pt-0 {
    padding-top: 0;
}

.gap-40 {
    gap: 40px;
}

.gap-60 {
    gap: 60px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================================================
   SELECTION & SCROLLBAR
   ======================================================================== */
::selection {
    background: rgba(201, 168, 76, 0.25);
    color: var(--text-white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-deepest);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--navy-mid), var(--gold-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--navy-light), var(--gold));
}