﻿/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
    --font-body: 'outfit', sans-serif;
    --font-heading: 'oswald', sans-serif;
    --gold: #B8902A;
    --gold-mid: #CFA84A;
    --gold-light: #E8C96A;
    --gold-pale: #F5E8C0;
    --navy: #0B1E3D;
    --navy-mid: #142847;
    --navy-light: #1E3A62;
    --blue: #1A5099;
    --concrete: #E8E4DC;
    --concrete-dark: #D4CFC5;
    --steel: #4A5568;
    --rust: #C0501A;
    --white: #FFFFFF;
    --transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 12px rgba(11,30,61,0.08);
    --shadow-md: 0 8px 32px rgba(11,30,61,0.12);
    --shadow-lg: 0 20px 60px rgba(11,30,61,0.16);
    --section-gap: 110px;
}

/* LIGHT MODE (Default) */
[data-theme="light"] {
    --bg: #F7F4EE;
    --bg-alt: #EFEBE3;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FDFBF7;
    --text: #0B1E3D;
    --text-secondary: #2A3E5C;
    --text-muted: #6A7A92;
    --border: rgba(11,30,61,0.1);
    --border-gold: rgba(184,144,42,0.3);
    --header-bg: #fff;
    --topbar-bg: #0B1E3D;
    --topbar-text: rgba(255,255,255,0.85);
    --input-bg: #F0ECE4;
}

/* DARK MODE */
[data-theme="dark"] {
    --bg: #07101E;
    --bg-alt: #0B1828;
    --bg-card: #0F1E35;
    --bg-card-hover: #142440;
    --text: #EDE8DE;
    --text-secondary: #C0CCDC;
    --text-muted: #7A8FA8;
    --border: rgba(184,144,42,0.15);
    --border-gold: rgba(184,144,42,0.3);
    --header-bg: #0B1828;
    --topbar-bg: #040D18;
    --topbar-text: rgba(255,255,255,0.75);
    --input-bg: rgba(255,255,255,0.05);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s, color 0.4s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =============================================
   REUSABLE COMPONENTS
============================================= */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

    .section-tag::before {
        content: '';
        width: 32px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 14px;
}

    .section-heading .gold {
        color: var(--gold);
    }

.section-subtext {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.85;
}

.gold-bar {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 28px;
}

    .gold-bar.center {
        margin-left: auto;
        margin-right: auto;
    }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 34px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
}

    .btn-gold:hover {
        box-shadow: 0 8px 28px rgba(184,144,42,0.45);
        transform: translateY(-2px);
    }

.btn-navy {
    background: var(--navy);
    color: var(--gold-light);
}

[data-theme="light"] .btn-navy {
    background: var(--navy);
    color: var(--gold-light);
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

    .btn-outline:hover {
        background: var(--gold);
        color: #fff;
    }

/* Fade animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.up {
        transform: translateY(28px);
    }

    .reveal.left {
        transform: translateX(-28px);
    }

    .reveal.right {
        transform: translateX(28px);
    }

    .reveal.visible {
        opacity: 1;
        transform: translate(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* =============================================
   TOPBAR
============================================= */
.topbar {
    background: var(--topbar-bg);
    padding: 9px 0;
    font-size: 0.81rem;
    position: relative;
    z-index: 200;
    border-bottom: 1px solid rgba(184,144,42,0.25);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-contact {
    display: flex;
    gap: 28px;
    align-items: center;
}

    .topbar-contact a {
        color: var(--topbar-text);
        display: flex;
        align-items: center;
        gap: 7px;
        font-weight: 500;
        transition: color 0.3s;
    }

        .topbar-contact a:hover {
            color: var(--gold-light);
        }

    .topbar-contact .ic {
        width: 22px;
        height: 22px;
        background: rgba(184,144,42,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
    }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-socials {
    display: flex;
    gap: 10px;
}

    .topbar-socials a {
        width: 26px;
        height: 26px;
        border: 1px solid rgba(184,144,42,0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--topbar-text);
        font-size: 0.72rem;
        transition: var(--transition);
    }

        .topbar-socials a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
        }

/* Theme toggle */
.theme-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(184,144,42,0.25);
    border-radius: 20px;
    padding: 4px 12px;
    color: var(--topbar-text);
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
}

    .theme-btn:hover {
        background: rgba(184,144,42,0.15);
        border-color: var(--gold);
    }

    .theme-btn .dot {
        width: 16px;
        height: 16px;
        background: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
    }

/* =============================================
   HEADER / NAVBAR
============================================= */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s, background 0.4s;
}

    .header.scrolled {
        box-shadow: var(--shadow-md);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 3px 0px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 85px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: center;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy);
}

[data-theme="dark"] .logo-name {
    color: var(--gold-light);
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: color 0.3s, background 0.3s;
    white-space: nowrap;
}

    .nav-link:hover {
        color: var(--gold);
        background: var(--bg-alt);
    }

    .nav-link.active {
        color: var(--gold);
    }

.nav-cta-wrap {
    flex-shrink: 0;
}

.nav-link-contact {
    padding: 10px 26px;
    font-size: 0.82rem;
}
/* Dropdown */
.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 50;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 11px 20px;
    font-size: 0.86rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s, padding-left 0.25s;
}

    .dropdown-panel a:last-child {
        border: none;
    }

    .dropdown-panel a:hover {
        color: var(--gold);
        padding-left: 26px;
    }
/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--text);
        display: block;
        transition: var(--transition);
    }

/* =============================================
   MOBILE MENU
============================================= */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .mob-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.mob-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--bg-card);
    z-index: 1999;
    padding: 72px 28px 32px;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    overflow-y: auto;
    border-left: 1px solid var(--border);
}

    .mob-menu.open {
        right: 0;
    }

.mob-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text);
}

.mob-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .mob-nav a {
        padding: 13px 16px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-secondary);
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.3s;
    }

        .mob-nav a:hover {
            color: var(--gold);
        }

/* =============================================
   HERO SECTION — Full-width, Construction Focus
============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Scrolling image strip behind content */
.hero-bg-strip {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero-bg-strip::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 110deg, rgba(7,16,30,0.5) 0%, rgba(11,30,61,0.5) 40%, rgba(11,30,61,0.5) 65%, rgba(7,16,30,0.5) 100% );
        z-index: 1;
    }

.hero-images-scroll {
    display: flex;
    height: 100%;
    animation: none;
    width: max-content;
    animation: heroSlide 30s linear infinite;
}

    .hero-images-scroll:hover {
        animation-play-state: paused;
    }

@keyframes heroSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Respect user's system preference — stops all animation if they prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-images-scroll {
        animation: none;
    }
}

.img-ph {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}

    .img-ph img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.5s ease;
    }

.img-collage-item:hover .img-ph img {
    transform: scale(1.05);
}

.hero-img-frame {
    width: 480px;
    height: 100vh;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

    .hero-img-frame .img-ph {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        background: linear-gradient(135deg, #0d2040, #1a3a6a);
    }
    /* Each frame gets slightly different shade */
    .hero-img-frame:nth-child(2n) .img-ph {
        background: linear-gradient(135deg, #12294e, #2040758a);
    }

    .hero-img-frame:nth-child(3n) .img-ph {
        background: linear-gradient(135deg, #0a1828, #18325f);
    }

    .hero-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        animation: kenBurns 10s ease-in-out infinite alternate;
        will-change: transform;
    }

    /* Stagger the zoom animation per frame so they don't all move together */
    .hero-img-frame:nth-child(2) img {
        animation-delay: -2s;
    }

    .hero-img-frame:nth-child(3) img {
        animation-delay: -4s;
    }

    .hero-img-frame:nth-child(4) img {
        animation-delay: -6s;
    }

    .hero-img-frame:nth-child(5) img {
        animation-delay: -8s;
    }

    .hero-img-frame:nth-child(6) img {
        animation-delay: -1s;
    }

@keyframes kenBurns {
    0% {
        transform: scale(1.0) translateY(0px);
    }

    100% {
        transform: scale(1.08) translateY(-12px);
    }
}

.frame-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 16, 30, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 144, 42, 0.35);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

/* Show label only when scroll is paused (hovered) */
.hero-images-scroll:hover .frame-label {
    opacity: 1;
}

/* Remove the old emoji placeholder entirely */
.hero-img-frame .img-ph {
    display: none;
}


/* Diagonal geometric overlay */
.hero-geo {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: repeating-linear-gradient( 60deg, transparent, transparent 80px, rgba(184,144,42,0.03) 80px, rgba(184,144,42,0.03) 81px );
    pointer-events: none;
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 80px;
}

.hero-content-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: flex-end;
}

/* Left: text */
.hero-text {
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-eyebrow-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 6px;
}

    .hero-h1 .stroke {
        -webkit-text-stroke: 1.5px rgba(255,255,255,0.9);
        color: transparent;
        display: block;
    }

    .hero-h1 .gold-word {
        color: var(--gold-light);
    }

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    line-height: 1.85;
    margin: 24px 0 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-sub {
    display: block;
    font-size: 0.55em;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}
/* Right: stats card */
.hero-stat-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184,144,42,0.3);
    padding: 40px 36px;
    position: relative;
}

    .hero-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

.hero-stat-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
}

.subpage.active .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.stat-rows {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .stat-row:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    min-width: 70px;
}

.stat-info {
}

    .stat-info strong {
        display: block;
        font-family: var(--font-heading);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
        margin-bottom: 2px;
    }

    .stat-info span {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.45);
    }

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-bar {
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold-mid), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%,100% {
        opacity: 0.3;
        transform: scaleY(0.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* =============================================
   TICKER STRIP
============================================= */
.ticker-strip {
    background: var(--navy);
    padding: 14px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
}

.ticker-inner {
    display: flex;
    gap: 60px;
    animation: ticker 22s linear infinite;
    width: max-content;
}

    .ticker-inner:hover {
        animation-play-state: paused;
    }

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .ticker-item .diamond {
        color: var(--gold);
        font-size: 0.5rem;
    }

/* =============================================
   ABOUT / OVERVIEW SECTION
============================================= */
.overview-section {
    padding: var(--section-gap) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

    .overview-section::before {
        content: 'OVERVIEW';
        position: absolute;
        right: -40px;
        top: 40%;
        font-family: var(--font-heading);
        font-size: 12rem;
        font-weight: 900;
        color: var(--gold);
        opacity: 0.03;
        pointer-events: none;
        white-space: nowrap;
        transform: rotate(90deg) translateX(-50%);
    }

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-visual {
    position: relative;
}

/* Construction image collage */
.img-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 280px 200px;
    gap: 8px;
}

.img-collage-item {
    overflow: hidden;
    position: relative;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

    .img-collage-item:first-child {
        grid-row: span 2;
    }

    .img-collage-item .img-ph {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--navy-mid), var(--blue));
        font-size: 3rem;
        transition: transform 0.5s;
    }

    .img-collage-item:hover .img-ph {
        transform: scale(1.04);
    }

    .img-collage-item .img-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(7,16,30,0.85), transparent);
        padding: 16px 14px 10px;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
    }

.overview-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 2;
}

    .overview-badge .b-num {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        line-height: 1;
    }

    .overview-badge .b-txt {
        font-size: 0.62rem;
        font-weight: 700;
        color: rgba(255,255,255,0.9);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
    }

.overview-content {
}

.overview-highlight {
    background: var(--bg-alt);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
}

.overview-pts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 32px;
}

.overview-pt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pt-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    margin-top: 2px;
}

/* IMAGE PROMPT BOX */
.img-prompt-box {
    background: var(--bg-alt);
    border: 1px dashed var(--border-gold);
    padding: 16px 20px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

    .img-prompt-box strong {
        display: block;
        color: var(--gold);
        font-size: 0.72rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

.ipb-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-style: italic;
    margin-top: 10px;
    width: 85%;
}

/* =============================================
   CONSTRUCTION FOCUS STRIP
============================================= */
.construction-strip {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    .construction-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(26,80,153,0.25) 0%, transparent 60%);
        pointer-events: none;
    }

.cs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
}

.cs-panel {
    position: relative;
    padding: 48px 40px;
    border: 1px solid rgba(184,144,42,0.1);
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    overflow: hidden;
}

    .cs-panel:hover {
        background: rgba(184,144,42,0.05);
    }

    .cs-panel:nth-child(2) {
        background: rgba(184,144,42,0.06);
        border-color: rgba(184,144,42,0.2);
    }
/* Background image wrapper */
.cs-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .cs-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        opacity: 0.6; /* dim image so text stays readable */
        transition: opacity 0.4s ease, transform 0.5s ease;
    }

.cs-bg-01 img {
    opacity: 0.8;
}
/* Zoom image slightly on hover */
.cs-panel:hover .cs-bg img {
    opacity: 0.28;
    transform: scale(1.05);
}

/* Push all text content above the bg image */
.cs-panel .cs-icon,
.cs-panel .cs-title,
.cs-panel .cs-desc {
    position: relative;
    z-index: 1;
}

.cs-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.cs-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.cs-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}

.cs-desc {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

.cs-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.cs-panel:hover::after {
    transform: scaleX(1);
}

.cc-logo {
    width: 135px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 15px;
}
/* =============================================
   GROUP COMPANIES
============================================= */
.companies-section {
    padding: var(--section-gap) 0;
    background: var(--bg-alt);
}

.companies-layout {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 56px;
}
/* Main company row (RR Enterprises – featured) */
.company-featured {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: var(--navy);
    border: 1px solid rgba(184,144,42,0.2);
    overflow: hidden;
    min-height: 360px;
    transition: var(--transition);
}

    .company-featured:hover {
        box-shadow: var(--shadow-lg);
    }

.cf-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cf-visual .img-ph {
        width: 100%;
        height: 100%;
        font-size: 6rem;
        opacity: 0.6;
    }

.cf-ribbon {
    position: absolute;
    top: 28px;
    left: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cf-body {
    padding: 48px 52px;
}

.cf-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 6px;
}

.cf-tagline {
    font-size: 0.82rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cf-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 24px;
}

.cf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.cf-tag {
    background: rgba(184,144,42,0.12);
    border: 1px solid rgba(184,144,42,0.25);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
}
/* Three small company cards */
.companies-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.company-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

    .company-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--border-gold);
    }

.cc-thumb {
    height: 190px;
    background: linear-gradient(135deg, var(--bg-alt), var(--concrete-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cc-thumb {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}

.cc-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cc-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 8px;
}

.cc-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap 0.3s;
}

    .cc-link:hover {
        gap: 12px;
    }

.cc-strip {
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.company-card:hover .cc-strip {
    transform: scaleX(1);
}

/* =============================================
   PROJECTS HIGHLIGHTS
============================================= */
.projects-section {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
/* Collage grid */
.projects-collage {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 6px;
}

.proj-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

    .proj-item:first-child {
        grid-row: span 2;
    }

    .proj-item:hover {
        border-color: var(--gold);
    }

.proj-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    transition: transform 0.5s;
    overflow: hidden;
    position: relative;
}

[data-theme="light"] .proj-img {
    background: linear-gradient(135deg, #1a2f55, #2a4a8a);
}

.proj-item:hover .proj-img {
    transform: scale(1.04);
}

.proj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,16,30,0.92) 0%, transparent 55%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.35s;
}

.proj-item:hover .proj-overlay {
    opacity: 1;
}

.proj-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.proj-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.proj-name-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7,16,30,0.85), transparent);
    padding: 24px 16px 12px;
}

.proj-name-visible {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
}

.proj-view-cta {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: var(--transition);
}

.proj-item:hover .proj-view-cta {
    opacity: 1;
    transform: scale(1);
}

.proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.proj-item:hover .proj-img img {
    transform: scale(1.05);
}

/* Lightbox image */
.lb-img-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--bg-alt);
}

    .lb-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* Project tabs */
.proj-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.proj-tab {
    padding: 9px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

    .proj-tab.active, .proj-tab:hover {
        background: var(--gold);
        color: #fff;
        border-color: transparent;
    }

.proj-panel {
    display: none;
}

    .proj-panel.active {
        display: block;
    }

/* =============================================
   CLIENTELE SECTION
============================================= */
.clientele-section {
    padding: var(--section-gap) 0;
    background: var(--bg-alt);
}

.clientele-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.clientele-cats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.client-cat {
}

.client-cat-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold);
}

.client-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .client-item:hover {
        border-color: var(--border-gold);
        color: var(--gold);
        transform: translateX(4px);
    }

    .client-item::before {
        content: '◆';
        color: var(--gold);
        font-size: 0.45rem;
    }

/* Marquee */
.marquee-section {
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.marquee-track {
    display: flex;
    gap: 52px;
    animation: none;
    width: max-content;
    animation: marqueeAnim 18s linear infinite;
}

    .marquee-track:hover {
        animation-play-state: paused;
    }

    .marquee-track img {
        width: 125px;
        border-radius: 5px;
        border: 3px solid #fff;
    }

@keyframes marqueeAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.mq-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}

    .mq-item:hover {
        color: var(--gold);
    }

.mq-sep {
    color: var(--gold);
    opacity: 0.4;
    font-size: 0.5rem;
}

/* =============================================
   BLOG SECTION
============================================= */
.blog-section {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: var(--border-gold);
    }

    .blog-card.featured {
        grid-row: span 2;
    }

.blog-thumb {
    overflow: hidden;
    position: relative;
}

.blog-card.featured .blog-thumb {
    height: 320px;
}

.blog-card:not(.featured) .blog-thumb {
    height: 180px;
}

.blog-thumb .img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    transition: transform 0.5s;
}

[data-theme="light"] .blog-thumb .img-ph {
    background: linear-gradient(135deg, #18305a, #2448a0);
}

.blog-card:hover .blog-thumb .img-ph {
    transform: scale(1.04);
}

.blog-cat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
}

.blog-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.blog-card.featured .blog-title {
    font-size: 1.4rem;
}

.blog-card:hover .blog-title {
    color: var(--gold);
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 16px;
    transition: gap 0.3s;
}

    .blog-read-more:hover {
        gap: 12px;
    }

/* =============================================
   CTA BANNER
============================================= */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184,144,42,0.03) 40px, rgba(184,144,42,0.03) 41px);
        pointer-events: none;
    }

    .cta-section::after {
        content: 'BUILD';
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-heading);
        font-size: 16rem;
        font-weight: 900;
        color: rgba(255,255,255,0.025);
        pointer-events: none;
        white-space: nowrap;
    }

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =============================================
   IMAGE PROMPTS SECTION
============================================= */
.img-prompts-section {
    padding: var(--section-gap) 0;
    background: var(--bg-alt);
}

.prompts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.prompt-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

    .prompt-card:hover {
        border-color: var(--border-gold);
        box-shadow: var(--shadow-sm);
    }

    .prompt-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .prompt-card:hover::before {
        transform: scaleX(1);
    }

.prompt-section-name {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.prompt-size {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.prompt-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    background: var(--bg-alt);
    padding: 12px 14px;
    border-left: 2px solid var(--border-gold);
}

/* =============================================
   SUBPAGES (hidden by default, shown via JS)
============================================= */
.subpage {
    display: block;
}

    .subpage.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subpage-hero {
    background: var(--navy);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

    .subpage-hero::before {
        content: attr(data-title);
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-heading);
        font-size: clamp(5rem, 14vw, 11rem);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: rgba(184,144,42,0.06);
        white-space: nowrap;
        pointer-events: none;
        line-height: 1;
        user-select: none;
    }

    .subpage-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 15% 50%, rgba(26,80,153,0.3) 0%, transparent 55%), linear-gradient(rgba(184,144,42,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(184,144,42,0.05) 1px, transparent 1px);
        background-size: auto, 50px 50px, 50px 50px;
        pointer-events: none;
    }

.subpage-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

    .subpage-breadcrumb a {
        color: var(--gold-light);
        transition: color 0.3s;
    }

        .subpage-breadcrumb a:hover {
            color: var(--gold);
        }

    .subpage-breadcrumb span {
        color: rgba(255,255,255,0.25);
    }

.subpage-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

    .subpage-title .gold {
        color: var(--gold-light);
    }

.subpage-body {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

/* About subpage */
.about-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-img-sub {
    height: 480px;
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    border: 1px solid var(--border-gold);
    position: relative;
}

    .about-img-sub::after {
        content: '';
        position: absolute;
        bottom: -16px;
        right: -16px;
        width: 80%;
        height: 80%;
        border: 2px solid rgba(184,144,42,0.2);
        pointer-events: none;
    }

    .about-img-sub img {
        width: 100%;
        height: 100%;
    }

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin: 28px 0 12px;
}

.about-text p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.vm-card {
    padding: 56px 48px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

    .vm-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-bottom: 28px;
}

.vm-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* Leadership */
.leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.leader-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 160px 1fr;
    overflow: hidden;
    transition: var(--transition);
}

    .leader-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--border-gold);
    }

.leader-photo-wrap {
    background: linear-gradient(160deg, var(--navy-mid), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

    .leader-photo-wrap::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

.leader-info {
    padding: 32px;
}

.leader-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 4px;
}

.leader-role {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.leader-bio {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.leader-creds {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.leader-cred {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

    .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--border-gold);
    }

.testi-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
}

.testi-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testi-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.testi-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
}

.testi-role {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    margin-bottom: 4px;
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color 0.3s;
}

    .faq-item.open {
        border-color: var(--border-gold);
    }

.faq-q {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s;
}

.faq-item.open .faq-q {
    color: var(--gold);
}

.faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--bg-alt);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.85;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* Careers */
.careers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.benefit-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    transition: var(--transition);
}

    .benefit-tile:hover {
        border-color: var(--border-gold);
        transform: translateY(-3px);
    }

.benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.benefit-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 6px;
}

.benefit-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: var(--transition);
}

    .job-item:hover {
        border-color: var(--border-gold);
        box-shadow: var(--shadow-sm);
    }

.job-title-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 5px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 3px 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Contact */
.contact-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
}

    .contact-card:hover {
        border-color: var(--border-gold);
    }

.contact-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-card p, .contact-card a {
    font-size: 0.87rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: block;
}

    .contact-card a:hover {
        color: var(--gold);
    }

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 44px;
}

    .contact-form-wrap h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--text);
        margin-bottom: 15px;
    }

.success-text {
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.form-control {
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

    .form-control:focus {
        border-color: var(--gold);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control option {
    background: var(--bg-card);
}
.form-captcha {
    background: var(--navy) !important;
    border-color: rgba(184, 144, 42, 0.3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 8px;
    letter-spacing: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-light) !important;
    user-select: none;
    margin: 0px 0px 0px 0px;
    padding: 7px 0px !important;
}

/* Privacy, Terms, Sitemap */
.policy-body {
    max-width: 100%;
}

    .policy-body h3 {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text);
        margin: 32px 0 12px;
    }

    .policy-body p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.9;
        margin-bottom: 14px;
    }

    .policy-body ul {
        padding-left: 20px;
        margin-bottom: 14px;
    }

        .policy-body ul li {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.8;
            list-style: disc;
            margin-bottom: 6px;
        }

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.sitemap-group h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold);
}

.sitemap-group ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .sitemap-group ul li a {
        font-size: 0.87rem;
        color: var(--text-muted);
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .sitemap-group ul li a::before {
            content: '›';
            color: var(--gold);
        }

        .sitemap-group ul li a:hover {
            color: var(--gold);
        }

/* =============================================
   BACK TO TOP & LIGHTBOX
============================================= */
.btt, .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
}

    .btt.show, .scroll-top.show {
        opacity: 1;
        transform: translateY(0);
    }

    .btt:hover, .scroll-top:hover {
        box-shadow: 0 8px 24px rgba(184,144,42,0.5);
    }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

    .lightbox.open {
        opacity: 1;
        visibility: visible;
    }

.lb-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    max-width: 760px;
    width: 90%;
    padding: 44px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.lightbox.open .lb-box {
    transform: scale(1);
}

.lb-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

    .lb-close:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }

.lb-img {
    height: 280px;
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin-bottom: 20px;
}

.lb-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 6px;
}

.lb-cat {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.lb-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =============================================
   FOOTER
============================================= */

/* Top accent bar */
.footer-top-bar {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    padding: 12px 0;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-top-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.footer-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

    .footer-top-contact:hover {
        opacity: 0.75;
    }

.ftc-icon {
    width: 22px;
    height: 22px;
    background: var(--navy-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.footer-top-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.35);
}

/* Main footer body */
.footer-main {
    background: #060F1C;
    padding: 72px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

/* Brand column */
.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    border-radius: 5px;
    border: 3px solid #fff;
}

.footer-about {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.85;
    margin-bottom: 20px;
    max-width: 270px;
}

.footer-group-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.fg-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(184,144,42,0.1);
    border: 1px solid rgba(184,144,42,0.2);
    padding: 4px 10px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 10px;
}

.fs-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,144,42,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
}

    .fs-link:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(184,144,42,0.35);
    }

/* Column headings */
.footer-col-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fch-line {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    flex-shrink: 0;
}

/* Footer nav links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links li a {
        font-size: 0.86rem;
        color: rgba(255,255,255,0.42);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s, padding-left 0.3s;
        position: relative;
        padding-left: 0;
    }

        .footer-links li a::before {
            content: '';
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
            flex-shrink: 0;
        }

        .footer-links li a:hover {
            color: var(--gold-light);
            padding-left: 6px;
        }

            .footer-links li a:hover::before {
                width: 12px;
            }

/* Companies list */
.footer-companies-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fcl-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .fcl-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.fcl-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(184,144,42,0.1);
    border: 1px solid rgba(184,144,42,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 2px;
}

.fcl-name {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    transition: color 0.3s;
    margin-bottom: 3px;
    line-height: 1.5;
}

a.fcl-name:hover {
    color: var(--gold-light);
}

.fcl-sub {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.6;
}

/* Contact list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fcontact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fcontact-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(184,144,42,0.1);
    border: 1px solid rgba(184,144,42,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-top: 2px;
}

.fcontact-item > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fcontact-item strong {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
}

.fcontact-item span,
.fcontact-item a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.6;
    display: block;
    transition: color 0.3s;
}

    .fcontact-item a:hover {
        color: var(--gold-light);
    }

/* Offices map strip */
.footer-map-strip {
    background: #04090F;
    padding: 16px 0;
    border-top: 1px solid rgba(184,144,42,0.12);
    border-bottom: 1px solid rgba(184,144,42,0.12);
}

.footer-offices {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.fo-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.fo-cities {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.fo-city {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.fo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
    background: #020710;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.79rem;
    color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .footer-copyright strong {
        color: rgba(255,255,255,0.45);
    }

.fc-divider {
    color: rgba(255,255,255,0.12);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.25);
        transition: color 0.3s;
    }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

/* =============================================
   FOOTER RESPONSIVE
============================================= */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .footer-logo-img {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .footer-top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-top-right {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        justify-content: center;
    }

    .footer-offices {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 48px 0 40px;
    }

    .footer-bottom-links {
        gap: 16px;
        justify-content: center;
    }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
    .hero-content-inner {
        grid-template-columns: 1fr;
    }

    .hero-stat-card {
        display: none;
    }

    .overview-grid,
    .about-sub-grid,
    .careers-grid,
    .contact-sub-grid,
    .clientele-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .companies-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 70px;
    }

    .topbar-contact {
        gap: 14px;
    }

        .topbar-contact a span:not(.ic) {
            display: none;
        }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-h1 {
        font-size: clamp(2.4rem, 9vw, 3.5rem);
    }

    .projects-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .proj-item:first-child {
        grid-column: 1 / -1;
    }

    .companies-row,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-row: span 1;
    }

    .cf-body {
        padding: 32px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .company-featured {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-inner {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .prompts-grid {
        grid-template-columns: 1fr;
    }

    .cs-inner {
        grid-template-columns: 1fr;
    }

    .leaders-layout {
        grid-template-columns: 1fr;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .leader-photo-wrap {
        height: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-images-scroll,
    .ticker-inner,
    .marquee-track {
        animation: none !important;
    }

    .hero-img-frame img {
        animation: none !important;
    }

    .scroll-bar {
        animation: none !important;
        opacity: 1;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}


/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-menu {
        gap: 10px;
    }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .nav-link-tab-home {
        display: none !important;
    }

    .nav-inner {
        gap: 15px;
    }

    .nav-menu {
        gap: 0;
    }

    .logo-name {
        font-size: 1rem;
    }

    .nav-link {
        padding: 5px;
        font-size: 0.9rem;
    }

    .nav-link-contact {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
