/* ==========================================================================
   GROWTH INVESTMENTS DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Brand Colors */
    --color-brand-gray: #2e3033;
    --color-brand-navy: #112233;
    --color-brand-navy-light: #1b324d;
    --color-accent-orange: #e05a10;
    --color-accent-orange-hover: #c44c0c;
    --color-bg-light: #f5f5f7;
    --color-bg-white: #ffffff;
    --color-green: #3f8f29;
    
    /* Neutral Colors */
    --color-text-dark: #1f2022;
    --color-text-body: #51555a;
    --color-text-light: #f8fafc;
    --color-text-muted: #888d94;
    --color-border: #e2e5e9;
    --color-border-dark: #3a3f47;
    
    /* Fonts */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* UI Values */
    --nav-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --box-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --box-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   BILINGUAL DISPLAY STATE LOGIC
   ========================================================================== */

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg-white);
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

section {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

/* Subpage Banner style */
.subpage-hero {
    background-color: var(--color-brand-navy);
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
    padding: calc(var(--nav-height) + 3.5rem) 0 4.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.subpage-hero::before {
    display: none;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 34, 51, 0.88) 0%,
        rgba(17, 34, 51, 0.62) 45%,
        rgba(17, 34, 51, 0.82) 100%
    );
    z-index: 1;
}

.subpage-hero-fx {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.subpage-hero-fx .hero-corner-accent {
    position: absolute;
    width: 48px;
    height: 48px;
    border-color: rgba(224, 90, 16, 0.45);
    border-style: solid;
}

.subpage-hero-fx .hero-corner-tl {
    top: 2rem;
    left: 2rem;
    border-width: 2px 0 0 2px;
}

.subpage-hero-fx .hero-corner-br {
    bottom: 2rem;
    right: 2rem;
    border-width: 0 2px 2px 0;
}

.subpage-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subpage-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
}

.subpage-hero-lead {
    margin-bottom: 1.5rem;
}

.subpage-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.subpage-hero .subpage-title {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.15;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.subpage-hero .subpage-breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.subpage-hero .subpage-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.subpage-hero .subpage-breadcrumbs a:hover {
    color: #ffffff;
}

.subpage-hero.subpage-hero-compact {
    min-height: 420px;
    padding-bottom: 3.5rem;
}

.subpage-hero.subpage-hero-compact .subpage-title {
    font-size: 2.75rem;
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 2.5rem) 0 3rem;
    }

    .subpage-hero .subpage-title {
        font-size: 2.25rem;
    }

    .subpage-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .subpage-hero-actions .btn-discover,
    .subpage-hero-actions .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .subpage-hero-fx .hero-corner-accent {
        width: 32px;
        height: 32px;
    }
}

/* Buttons */
.btn-primary-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-accent-orange);
    color: var(--color-text-light);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(224, 90, 16, 0.2);
    transition: var(--transition-smooth);
}

.btn-primary-orange:hover {
    background-color: var(--color-accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(224, 90, 16, 0.3);
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navbar scrolled state */
.navbar.scrolled {
    background-color: rgba(46, 48, 51, 0.98); /* Brand Gray base */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow-md);
}

.nav-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    height: auto;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
    transform: translateY(-1px);
}

.logo-image {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.navbar.scrolled .brand-logo {
    padding: 0.32rem 0.7rem;
}

.navbar.scrolled .logo-image {
    max-height: 42px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-orange);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

/* Nav Dropdowns styling */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.arrow-dwn {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    display: inline-block;
}

.nav-dropdown:hover .arrow-dwn {
    transform: rotate(180deg);
    border-top-color: var(--color-accent-orange);
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-brand-gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    min-width: 180px;
    padding: 0.5rem 0;
    box-shadow: var(--box-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.dropdown-menu-list::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--color-brand-gray);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-title);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
    text-align: left;
    white-space: nowrap;
}

.dropdown-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 1.4rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Toggle Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
    transform-origin: left center;
}

/* ==========================================================================
   SECTION 1: HERO BANNER (Parallax)
   ========================================================================== */
.hero-section {
    height: 92vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--color-text-light);
    overflow: hidden;
    isolation: isolate;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero-home.png');
    background-position: center 40%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    transform: scale(1.06);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: heroKenBurns 36s ease-in-out infinite alternate;
    opacity: 0.42;
    filter: saturate(0.85) brightness(0.72);
}

@keyframes heroKenBurns {
    0% { transform: scale(1.06) translate(0, 0); }
    100% { transform: scale(1.14) translate(-1.2%, -0.8%); }
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
}

.hero-fx-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-light-beam {
    position: absolute;
    width: 3px;
    height: 160%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(224, 90, 16, 0.2) 40%,
        rgba(255, 200, 120, 0.28) 50%,
        rgba(224, 90, 16, 0.15) 60%,
        transparent 100%
    );
    transform: rotate(18deg);
    opacity: 0;
    filter: blur(1px);
    animation: heroBeamSweep 14s ease-in-out infinite;
}

.hero-light-beam-1 {
    left: 28%;
    top: -25%;
    animation-delay: 0s;
}

.hero-light-beam-2 {
    right: 18%;
    top: -25%;
    transform: rotate(-12deg);
    animation-delay: 7s;
    animation-duration: 16s;
}

@keyframes heroBeamSweep {
    0%, 100% { opacity: 0; transform: rotate(18deg) translateX(-40px); }
    20% { opacity: 0.45; }
    50% { opacity: 0.18; transform: rotate(18deg) translateX(35px); }
    80% { opacity: 0; }
}

.hero-horizon-glow {
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: 140%;
    height: 45%;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse 55% 40% at 50% 80%,
        rgba(224, 90, 16, 0.18) 0%,
        rgba(255, 180, 90, 0.08) 35%,
        transparent 70%
    );
    animation: heroHorizonPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroHorizonPulse {
    0% { opacity: 0.55; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.9; transform: translateX(-50%) scale(1.06); }
}

.hero-scan-line {
    display: none;
}

.hero-grid-fade {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 55% at 50% 72%, black 10%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 72%, black 10%, transparent 78%);
    animation: heroGridPulse 10s ease-in-out infinite alternate;
    opacity: 0.5;
}

@keyframes heroGridPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-corner-accent {
    position: absolute;
    width: 48px;
    height: 48px;
    border-color: rgba(224, 90, 16, 0.45);
    border-style: solid;
    opacity: 0;
    animation: heroCornerFade 4s ease-in-out infinite alternate;
}

.hero-corner-tl {
    top: calc(var(--nav-height) + 1.5rem);
    left: 2rem;
    border-width: 2px 0 0 2px;
}

.hero-corner-br {
    bottom: 5rem;
    right: 2rem;
    border-width: 0 2px 2px 0;
    animation-delay: 2s;
}

@keyframes heroCornerFade {
    0% { opacity: 0.2; transform: scale(0.95); }
    100% { opacity: 0.7; transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        168deg,
        rgba(10, 22, 36, 0.82) 0%,
        rgba(17, 34, 51, 0.45) 38%,
        rgba(17, 34, 51, 0.38) 58%,
        rgba(10, 22, 36, 0.78) 100%
    );
    z-index: 3;
}

.hero-container.hero-centered-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: calc(var(--nav-height) / 2);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-animate-item {
    opacity: 0;
    transform: translateY(28px);
    animation: heroItemReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--hero-delay, 0s);
}

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

.hero-pretitle {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-accent-orange);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: heroPillGlow 3s ease-in-out infinite;
}

.hero-stat-pill:nth-child(2) { animation-delay: 1s; }
.hero-stat-pill:nth-child(3) { animation-delay: 2s; }

.hero-stat-icon {
    color: var(--color-accent-orange);
    font-size: 0.5rem;
}

@keyframes heroPillGlow {
    0%, 100% { border-color: rgba(255, 255, 255, 0.12); box-shadow: none; }
    50% { border-color: rgba(224, 90, 16, 0.35); box-shadow: 0 0 16px rgba(224, 90, 16, 0.12); }
}

/* Decorative triangle accent before hero pretitle */
.blue-triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--color-accent-orange);
    flex-shrink: 0;
}

/* Navbar inquiry pill button */
.nav-btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--color-accent-orange);
    color: #ffffff !important;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
    border-radius: 3px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.nav-btn-apply:hover {
    background-color: var(--color-accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(224, 90, 16, 0.25);
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--color-accent-orange);
    color: #ffffff;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px rgba(224, 90, 16, 0.25);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-discover:hover {
    background-color: var(--color-accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(224, 90, 16, 0.35);
}

.btn-discover .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-discover:hover .arrow-icon {
    transform: translateX(5px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    animation: heroScrollBounce 2.5s ease-in-out infinite;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-text {
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--color-accent-orange);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% { top: -15px; }
    100% { top: 40px; }
}

/* ==========================================================================
   SECTION TITLE LAYOUTS
   ========================================================================== */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-orange);
    display: block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-brand-gray);
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--color-accent-orange);
}

.section-title.text-left {
    text-align: left;
    display: block;
    padding-bottom: 0.8rem;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

/* ==========================================================================
   SECTION 2: CORE BUSINESS GRID (4 columns)
   ========================================================================== */
.core-business-section {
    background-color: var(--color-bg-white);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.business-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, background-color 0.4s ease, border-color 0.35s ease, color 0.35s ease;
    transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand-navy), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.business-card:hover {
    background-color: var(--color-brand-navy);
    color: #ffffff;
    border-color: var(--color-brand-navy);
    transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
    box-shadow: 0 20px 40px rgba(17, 34, 51, 0.18);
}

.business-icon-box {
    color: var(--color-accent-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.business-card:hover .business-icon-box {
    color: #ffffff;
}

.business-card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-brand-gray);
    margin-bottom: 0.8rem;
}

.business-card:hover .business-card-title {
    color: #ffffff;
}

.business-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

.business-card:hover .business-card-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   SECTION 3: PORTFOLIO THUMBNAIL GALLERY
   ========================================================================== */
.portfolio-gallery-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.gallery-img-box {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--color-brand-gray);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gallery-card-tag {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.gallery-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-brand-gray);
    margin-bottom: 0.8rem;
}

.gallery-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.gallery-card-link {
    font-family: var(--font-title);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-brand-gray);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.gallery-card-link:hover {
    color: var(--color-accent-orange);
}

/* ==========================================================================
   SECTION 4: PARTNERS & AGGREGATORS (Accounting/Law/Developers)
   ========================================================================== */
.partners-section {
    background-color: var(--color-bg-white);
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.4rem;
    max-width: 1020px;
    margin: 0 auto;
}

.partner-item {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    padding: 1.1rem 1rem 1rem;
    color: var(--color-brand-navy);
    opacity: 0.98;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    min-height: 176px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(16, 26, 44, 0.06);
}

.partner-item.animate-on-scroll {
    transform: translateY(18px) scale(0.985);
}

.partner-item.animate-on-scroll.is-visible {
    transform: translateY(0) scale(1);
}

.partner-item:hover,
.partner-item.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(16, 26, 44, 0.14);
    border-color: rgba(224, 90, 16, 0.28);
}

.partner-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--color-accent-orange);
    background: linear-gradient(135deg, rgba(224, 90, 16, 0.14), rgba(17, 34, 51, 0.08));
    border: 1px solid rgba(224, 90, 16, 0.2);
}

.partner-label {
    font-family: var(--font-title);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #2a3442;
    line-height: 1.35;
}

.partner-note {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #667385;
}

/* ==========================================================================
   SUBPAGE: ABOUT US CONTENT
   ========================================================================== */
.about-intro-section {
    background-color: var(--color-bg-white);
}

.philosophy-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 0;
}

.about-intro-grid.content-split {
    display: grid;
}

.about-intro-left h3 {
    font-size: 1.8rem;
    color: var(--color-brand-gray);
    margin-bottom: 1.5rem;
}

.about-intro-left p {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-intro-right {
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-accent-orange);
    padding: 2.5rem;
    border-radius: var(--border-radius-sm);
}

.philosophy-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-brand-navy);
    margin-bottom: 1rem;
}

.philosophy-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-text-body);
    margin-bottom: 1.5rem;
}

.philosophy-text:last-child {
    margin-bottom: 0;
}

/* Management Team Section */
.team-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.team-member-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 2.5rem;
    box-shadow: var(--box-shadow-sm);
    display: flex;
    gap: 1.8rem;
}

.team-member-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--color-brand-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.team-member-info h4 {
    font-size: 1.4rem;
    color: var(--color-brand-gray);
    margin-bottom: 0.3rem;
}

.team-member-role {
    font-family: var(--font-title);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    display: block;
}

.team-member-bio {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-body);
    margin-bottom: 1rem;
}

.team-member-contact {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.team-member-contact strong {
    color: var(--color-brand-gray);
}

/* Map area */
.map-section {
    background-color: var(--color-bg-white);
}

.map-wrapper {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 2rem;
    background-color: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svg-map-canvas {
    width: 100%;
    max-width: 600px;
    height: auto;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.map-details {
    text-align: center;
}

.map-details-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--color-brand-gray);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   SUBPAGE: INVESTMENT FOCUS
   ========================================================================== */
.investment-focus-section {
    background-color: var(--color-bg-white);
}

.investment-focus-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.investment-item-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investment-item-row:nth-child(even) {
    direction: rtl;
}

.investment-item-row:nth-child(even) .investment-item-content {
    direction: ltr;
}

.investment-item-img-box {
    aspect-ratio: 16 / 10;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow-sm);
}

.investment-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-item-content h3 {
    font-size: 1.8rem;
    color: var(--color-brand-gray);
    margin-bottom: 1.25rem;
}

.investment-item-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 1.8rem;
}

.compliance-badge-row {
    display: inline-flex;
    background-color: rgba(224, 90, 16, 0.06);
    border: 1px solid rgba(224, 90, 16, 0.15);
    border-radius: 4px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--color-accent-orange);
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   SUBPAGE: PORTFOLIO DETAIL GRID
   ========================================================================== */
.portfolio-detail-section {
    background-color: var(--color-bg-white);
}

.portfolio-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.portfolio-detail-card {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    display: flex;
    flex-direction: column;
}

.portfolio-detail-card-img-box {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.portfolio-detail-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-detail-card-body {
    padding: 2.2rem;
}

.portfolio-detail-title {
    font-size: 1.4rem;
    color: var(--color-brand-gray);
    margin-bottom: 1.25rem;
}

.portfolio-detail-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.portfolio-detail-meta-item {
    font-size: 0.9rem;
}

.portfolio-detail-meta-item strong {
    color: var(--color-brand-gray);
    width: 120px;
    display: inline-block;
}

/* ==========================================================================
   SUBPAGE: CONTACT & COLLABORATION
   ========================================================================== */
.contact-section-sub {
    background-color: var(--color-bg-white);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-panel-sub {
    max-width: 500px;
}

.contact-info-panel-sub h3 {
    font-size: 1.8rem;
    color: var(--color-brand-gray);
    margin-bottom: 1.5rem;
}

.contact-sub-paragraph {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.direct-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.direct-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-label {
    font-family: var(--font-title);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 80px;
    flex-shrink: 0;
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.contact-item-value a {
    color: var(--color-accent-orange);
    font-weight: 600;
}

.contact-item-value a:hover {
    color: var(--color-accent-orange-hover);
}

.partners-links-block h4 {
    font-size: 1.1rem;
    color: var(--color-brand-gray);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.partners-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.partner-contact-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 1.25rem;
}

.partner-contact-card h5 {
    font-size: 0.95rem;
    color: var(--color-brand-navy);
    margin-bottom: 0.4rem;
}

.partner-contact-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SUBPAGE: COMPLIANCE LEGAL DOCUMENTS
   ========================================================================== */
.legal-document-section {
    background-color: var(--color-bg-white);
}

.legal-document-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-meta-info {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-bottom: 2.2rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--color-brand-gray);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--color-accent-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--color-accent-orange-hover);
}

.legal-document-wrapper .legal-content ul {
    margin-left: 1.35rem;
    margin-bottom: 1.25rem;
    padding-left: 0.25rem;
}

.legal-document-wrapper .legal-content li {
    margin-bottom: 0.45rem;
    line-height: 1.75;
}

.legal-document-wrapper .legal-content a {
    color: var(--color-accent-orange);
    font-weight: 500;
}

/* ==========================================================================
   CONTACT FORM SUBMISSION LAYOUT
   ========================================================================== */
.contact-form-panel-sub {
    background-color: var(--color-brand-navy);
    color: var(--color-text-light);
    padding: 3rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-lg);
    position: relative;
}

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(224, 90, 16, 0.15);
}

.btn-submit-form {
    background-color: var(--color-accent-orange);
    color: white;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(224, 90, 16, 0.2);
    transition: var(--transition-smooth);
}

.btn-submit-form:hover {
    background-color: var(--color-accent-orange-hover);
    transform: translateY(-1px);
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.03);
}

.error-msg {
    position: absolute;
    bottom: -1.3rem;
    left: 0.2rem;
    font-size: 0.75rem;
    color: #ef4444;
    display: none;
}

.form-group.invalid .error-msg {
    display: block;
}

.interactive-form.submitting {
    opacity: 0.6;
    pointer-events: none;
}

.btn-submit-form .loading-spinner {
    display: none;
    width: 18px;
    height: 18px;
    animation: rotate 1s linear infinite;
    margin-left: 10px;
}

.interactive-form.submitting .btn-submit-form .loading-spinner {
    display: inline-block;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.form-success-alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-brand-navy);
    border-radius: var(--border-radius-sm);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.form-success-alert.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(63, 143, 41, 0.2);
    color: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.form-success-alert h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.form-success-alert p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 1.8rem;
}

.btn-alert-close {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-alert-close:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* ==========================================================================
   FOOTER (Permanent Compliance layout)
   ========================================================================== */
.footer {
    background-color: var(--color-brand-gray);
    color: rgba(255, 255, 255, 0.6);
    padding: 4.5rem 0 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr 0.8fr 0.8fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    display: block;
    max-height: 50px;
    width: auto;
    padding: 0.55rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: content-box;
}

.footer-abn-label {
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.footer-address {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-details {
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact-details strong {
    color: var(--color-accent-orange);
}

.footer-contact-details a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-details a:hover {
    color: #ffffff;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-accent-orange);
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* Permanent compliance strip above footer */
.compliance-strip {
    background-color: var(--color-brand-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.7rem 0;
    text-align: center;
}

.compliance-strip p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.06em;
    font-family: var(--font-title);
    font-weight: 500;
}

.map-embed-wrapper {
    width: 100%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow-sm);
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 360px;
    display: block;
    border: 0;
}

.investment-sub-content {
    max-width: 860px;
    margin: 0 auto;
}

.investment-sub-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 1.25rem;
}

.investment-sub-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
}

.investment-sub-list li {
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-text-body);
}

.investment-sub-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-orange);
    border-radius: 50%;
}

.investment-sub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.investment-sub-nav a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-brand-navy);
}

.investment-sub-nav a:hover {
    color: var(--color-accent-orange);
}

.partner-contact-card a.partner-link-btn {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent-orange);
}

.partner-contact-card a.partner-link-btn:hover {
    text-decoration: underline;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin: 0 auto 1.25rem;
    line-height: 1.65;
    font-weight: 400;
}

/* ── Homepage scroll reveal animations ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--stagger, 0s);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title-wrapper.animate-on-scroll {
    transform: translateY(24px);
}

.section-title-wrapper.animate-on-scroll.is-visible {
    transform: translateY(0);
}

.gallery-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.gallery-card.is-visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(17, 34, 51, 0.14);
}

.gallery-card .gallery-image {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-business-section {
    position: relative;
}

.core-business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-accent-orange), transparent);
    opacity: 0.4;
}

@media (prefers-reduced-motion: reduce) {
    .hero-parallax-bg,
    .hero-light-beam,
    .hero-horizon-glow,
    .hero-grid-fade,
    .hero-corner-accent,
    .hero-stat-pill,
    .scroll-indicator,
    .hero-animate-item {
        animation: none !important;
    }

    .hero-animate-item {
        opacity: 1;
        transform: none;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .business-card {
        transform: none !important;
    }
}

.investment-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-accent-orange);
}

.investment-cta-link:hover {
    gap: 10px;
}

/* ==========================================================================
   RIGHT FLOATING CONTROLS (Back to top & inquiry popup button)
   ========================================================================== */
.floating-controls-wrapper {
    position: fixed;
    right: 2rem;
    bottom: 2.2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: none; /* Let clicks pass through when hidden */
}

.floating-btn {
    pointer-events: auto; /* Re-enable pointer events for buttons */
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-brand-navy);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    background-color: var(--color-accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-floating-contact {
    background-color: var(--color-accent-orange);
}

.btn-floating-contact:hover {
    background-color: var(--color-accent-orange-hover);
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Consultation Modal Popup Overlay */
.consultation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 34, 51, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.consultation-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.consultation-modal-card {
    background-color: var(--color-brand-navy);
    color: #ffffff;
    width: 100%;
    max-width: 480px;
    padding: 2.8rem;
    border-radius: var(--border-radius-sm);
    position: relative;
    box-shadow: var(--box-shadow-lg);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.consultation-modal-overlay.active .consultation-modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Laptop & Large Tablets */
@media (max-width: 1024px) {
    .container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .investment-item-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .investment-item-row:nth-child(even) {
        direction: ltr;
    }
    
    .portfolio-list-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .partners-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* ==========================================================================
   PREMIUM DIMENSION & MOTION LAYER
   Shared by every page. The effects are intentionally restrained so that
   content remains legible while surfaces feel deeper and more tactile.
   ========================================================================== */
:root {
    --color-accent-gold: #f3a15f;
    --surface-glass: rgba(255, 255, 255, 0.78);
    --surface-glass-dark: rgba(15, 29, 44, 0.78);
    --shadow-premium:
        0 1px 1px rgba(17, 34, 51, 0.04),
        0 12px 30px rgba(17, 34, 51, 0.08),
        0 34px 70px rgba(17, 34, 51, 0.08);
    --shadow-premium-hover:
        0 2px 2px rgba(17, 34, 51, 0.04),
        0 18px 38px rgba(17, 34, 51, 0.12),
        0 42px 90px rgba(17, 34, 51, 0.14);
    --radius-premium: 18px;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    position: relative;
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(224, 90, 16, 0.055), transparent 28rem),
        #fff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

::selection {
    color: #fff;
    background: var(--color-accent-orange);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10002;
    width: 100%;
    height: 3px;
    pointer-events: none;
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
    background: linear-gradient(90deg, #ff7b2c, #f3b067 52%, #fff0cf);
    box-shadow: 0 0 18px rgba(224, 90, 16, 0.75);
}

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        background 0.45s var(--ease-premium),
        box-shadow 0.45s var(--ease-premium),
        border-color 0.45s var(--ease-premium),
        transform 0.45s var(--ease-premium);
}

.navbar.scrolled {
    background: rgba(17, 34, 51, 0.88);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 45px rgba(7, 17, 28, 0.22);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.brand-logo {
    transition: transform 0.5s var(--ease-premium), filter 0.5s var(--ease-premium);
}

.brand-logo:hover {
    transform: translateY(-2px) scale(1.025);
    filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.18));
}

.nav-link::after {
    box-shadow: 0 0 14px rgba(224, 90, 16, 0.5);
}

.dropdown-menu-list {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(4, 13, 23, 0.28);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

section:not(.hero-section):not(.subpage-hero) {
    isolation: isolate;
}

section:not(.hero-section):not(.subpage-hero)::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -12rem;
    right: -12rem;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(224, 90, 16, 0.055), transparent 70%);
    transform: translate3d(calc(var(--section-shift, 0) * -1px), calc(var(--section-shift, 0) * 0.35px), 0);
}

.subpage-hero {
    min-height: 520px;
    background-attachment: fixed;
    box-shadow: inset 0 -80px 100px rgba(4, 12, 21, 0.18);
}

.subpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.08) 38%, transparent 56%),
        radial-gradient(circle at 50% 100%, rgba(224, 90, 16, 0.2), transparent 42%);
    background-size: 220% 100%, 100% 100%;
    animation: premiumHeroSweep 10s ease-in-out infinite;
}

.subpage-hero-container {
    transform: translate3d(0, var(--hero-shift, 0), 0);
    will-change: transform;
}

.subpage-hero .subpage-title {
    text-wrap: balance;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.22),
        0 18px 55px rgba(0, 0, 0, 0.34);
}

.subpage-hero .subpage-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 1.15rem auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, var(--color-accent-orange), #ffc28e, transparent);
    box-shadow: 0 0 20px rgba(224, 90, 16, 0.6);
}

.section-title {
    text-wrap: balance;
}

.section-title-wrapper .section-title,
.content-split-text h2,
.about-intro-left h2,
.portfolio-highlights-text h3 {
    background: linear-gradient(120deg, var(--color-brand-navy) 5%, #344e67 48%, var(--color-accent-orange) 145%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    letter-spacing: 0.13em;
}

.section-subtitle::before {
    content: "";
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-orange), #f2b074);
    box-shadow: 0 0 10px rgba(224, 90, 16, 0.35);
}

.business-card,
.gallery-card,
.partner-item,
.partner-contact-card,
.team-member-card,
.principle-card,
.portfolio-detail-card,
.contact-form-panel-sub,
.contact-info-panel-sub,
.legal-document-wrapper,
.philosophy-sidebar {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-premium);
    border-color: rgba(17, 34, 51, 0.09);
    box-shadow: var(--shadow-premium);
    transform-style: preserve-3d;
    will-change: transform;
}

.premium-tilt {
    transform:
        perspective(1100px)
        rotateX(var(--premium-rx, 0deg))
        rotateY(var(--premium-ry, 0deg))
        translateY(var(--premium-lift, 0px));
    transition:
        transform 0.5s var(--ease-premium),
        box-shadow 0.5s var(--ease-premium),
        border-color 0.5s var(--ease-premium);
}

.premium-tilt:hover {
    --premium-lift: -8px;
    border-color: rgba(224, 90, 16, 0.22);
    box-shadow: var(--shadow-premium-hover);
}

.premium-tilt::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    pointer-events: none;
    opacity: var(--premium-glow-opacity, 0);
    background: radial-gradient(
        420px circle at var(--premium-glow-x, 50%) var(--premium-glow-y, 50%),
        rgba(255, 255, 255, 0.24),
        rgba(224, 90, 16, 0.07) 34%,
        transparent 68%
    );
    transition: opacity 0.35s ease;
}

.premium-tilt:hover::after {
    --premium-glow-opacity: 1;
}

.business-card-thumb,
.gallery-img-box,
.portfolio-detail-card-img-box,
.content-split-image,
.partners-split-image,
.portfolio-highlights-image,
.contact-visual-panel,
.team-section-banner,
.portfolio-intro-banner,
.philosophy-visual,
.principle-visual,
.section-visual-banner {
    position: relative;
    border-radius: var(--radius-premium);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.business-card-thumb::after,
.gallery-img-box::after,
.portfolio-detail-card-img-box::after,
.content-split-image::after,
.partners-split-image::after,
.portfolio-highlights-image::after,
.contact-visual-panel::after,
.team-section-banner::after,
.portfolio-intro-banner::after,
.philosophy-visual::after,
.principle-visual::after,
.section-visual-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.18), transparent 32%),
        linear-gradient(0deg, rgba(7, 18, 30, 0.18), transparent 36%);
    opacity: 0.7;
    transition: opacity 0.55s ease;
}

.business-card-thumb img,
.gallery-image,
.portfolio-detail-card-img,
.content-split-image img,
.partners-split-image img,
.portfolio-highlights-image img,
.contact-visual-panel img,
.team-section-banner img,
.portfolio-intro-banner img,
.philosophy-visual img,
.principle-visual img,
.section-visual-banner img {
    transition: transform 1s var(--ease-premium), filter 0.8s ease;
}

.business-card:hover img,
.gallery-card:hover .gallery-image,
.portfolio-detail-card:hover .portfolio-detail-card-img,
.content-split-image:hover img,
.partners-split-image:hover img,
.portfolio-highlights-image:hover img,
.contact-visual-panel:hover img,
.team-section-banner:hover img,
.portfolio-intro-banner:hover img,
.philosophy-visual:hover img,
.principle-visual:hover img,
.section-visual-banner:hover img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.03);
}

.business-icon-box,
.team-member-avatar {
    box-shadow:
        0 12px 28px rgba(17, 34, 51, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateZ(30px);
}

.fact-item,
.overview-item,
.portfolio-detail-meta-item,
.direct-contact-item {
    transition: transform 0.4s var(--ease-premium), background 0.4s ease, border-color 0.4s ease;
}

.fact-item:hover,
.overview-item:hover,
.portfolio-detail-meta-item:hover,
.direct-contact-item:hover {
    transform: translateY(-4px);
}

.btn-discover,
.btn-hero-secondary,
.nav-btn-apply,
.btn-submit-form,
.partner-link-btn,
.investment-cta-link,
.btn-floating-contact,
.back-to-top {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 12px 30px rgba(224, 90, 16, 0.18);
    transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
    transition:
        transform 0.45s var(--ease-premium),
        box-shadow 0.45s var(--ease-premium),
        background 0.35s ease,
        border-color 0.35s ease;
}

.btn-discover::before,
.btn-hero-secondary::before,
.nav-btn-apply::before,
.btn-submit-form::before,
.partner-link-btn::before,
.investment-cta-link::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -120%;
    left: -45%;
    width: 36%;
    height: 340%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
    transform: rotate(24deg) translateX(-180%);
    transition: transform 0.8s var(--ease-premium);
}

.btn-discover:hover::before,
.btn-hero-secondary:hover::before,
.nav-btn-apply:hover::before,
.btn-submit-form:hover::before,
.partner-link-btn:hover::before,
.investment-cta-link:hover::before {
    transform: rotate(24deg) translateX(520%);
}

.btn-discover:hover,
.btn-hero-secondary:hover,
.nav-btn-apply:hover,
.btn-submit-form:hover,
.partner-link-btn:hover,
.investment-cta-link:hover {
    box-shadow: 0 18px 38px rgba(224, 90, 16, 0.3);
}

input,
textarea,
select {
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        transform 0.3s var(--ease-premium);
}

input:hover,
textarea:hover,
select:hover {
    border-color: rgba(224, 90, 16, 0.35);
}

input:focus,
textarea:focus,
select:focus {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 4px rgba(224, 90, 16, 0.09),
        0 12px 28px rgba(17, 34, 51, 0.08);
}

.consultation-modal-overlay {
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.consultation-modal-card {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    box-shadow: 0 40px 110px rgba(4, 13, 23, 0.35);
}

.consultation-modal-overlay.active .consultation-modal-card {
    animation: premiumModalIn 0.65s var(--ease-premium) both;
}

.premium-reveal {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 32px, 0) scale(0.985);
    transition:
        opacity 0.9s var(--ease-premium) var(--reveal-delay, 0ms),
        transform 0.9s var(--ease-premium) var(--reveal-delay, 0ms),
        filter 0.9s ease var(--reveal-delay, 0ms);
}

.premium-reveal.premium-reveal-left {
    transform: translate3d(-36px, 18px, 0) rotateY(3deg);
}

.premium-reveal.premium-reveal-right {
    transform: translate3d(36px, 18px, 0) rotateY(-3deg);
}

.premium-reveal.is-premium-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1) rotateX(0) rotateY(0);
}

@keyframes premiumHeroSweep {
    0%, 100% { background-position: 140% 0, 0 0; opacity: 0.72; }
    50% { background-position: -80% 0, 0 0; opacity: 1; }
}

@keyframes premiumModalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.94) rotateX(5deg); }
    to { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: auto;
        background-attachment: scroll;
    }

    .premium-tilt,
    .premium-tilt:hover {
        transform: translateY(var(--premium-lift, 0px));
    }

    .premium-reveal,
    .premium-reveal.premium-reveal-left,
    .premium-reveal.premium-reveal-right {
        transform: translate3d(0, 22px, 0);
    }

    body::before {
        opacity: 0.1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .premium-reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .navbar {
        background-color: var(--color-brand-gray);
    }

    .brand-logo {
        padding: 0.3rem 0.65rem;
    }

    .logo-image {
        max-height: 40px;
    }

    .footer-logo {
        max-height: 44px;
        padding: 0.45rem 0.85rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hamburger Active Rotation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(2px, 2px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(2px, -2px);
    }
    
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--color-brand-gray);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.8rem;
        padding-top: 3rem;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    /* Reposition dropdowns in mobile menu */
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .nav-dropdown .dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu-list {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        background-color: rgba(255, 255, 255, 0.03);
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.3rem 0;
    }
    
    .dropdown-menu-list::before {
        display: none;
    }
    
    .dropdown-item {
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-stats-row {
        gap: 0.5rem;
    }

    .hero-stat-pill {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-corner-accent {
        display: none;
    }

    .hero-light-beam {
        display: none;
    }

    .hero-section {
        min-height: 560px;
        height: 100svh;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 1.1rem;
    }
    
    .team-member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .contact-form-panel-sub {
        padding: 2rem 1.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-modal-card {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-controls-wrapper {
        right: 1rem;
        bottom: 1.5rem;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-split.reverse .content-split-image {
        order: -1;
    }

    .facts-row {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .page-intro-band .content-split-image img {
        min-height: 240px;
    }
}

/* ==========================================================================
   RICH CONTENT LAYOUTS (all pages)
   ========================================================================== */
.page-intro-band {
    background-color: var(--color-bg-light);
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.page-intro-band.dark-band {
    background-color: var(--color-brand-navy);
    color: var(--color-text-light);
    border-bottom: none;
}

.page-intro-band.dark-band .prose-lead,
.page-intro-band.dark-band .prose-body p {
    color: rgba(255, 255, 255, 0.78);
}

.page-intro-band.dark-band .section-subtitle {
    color: var(--color-accent-orange);
}

.page-intro-band.dark-band h2 {
    color: #ffffff;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-split-image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    position: relative;
}

.content-split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.content-split-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.content-split-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-brand-navy);
}

.prose-lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.prose-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 1rem;
}

.prose-body p:last-child {
    margin-bottom: 0;
}

.facts-row {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.page-intro-band.dark-band .facts-row {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.fact-item {
    flex: 1;
}

.fact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent-orange);
    margin-bottom: 0.35rem;
}

.fact-value {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-brand-navy);
    line-height: 1.4;
}

.page-intro-band.dark-band .fact-value {
    color: #ffffff;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.principle-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 2rem 1.75rem;
    position: relative;
    transition: var(--transition-smooth);
}

.principle-card:hover {
    border-color: rgba(224, 90, 16, 0.3);
    box-shadow: var(--box-shadow-md);
    transform: translateY(-3px);
}

.principle-card-num {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(17, 34, 51, 0.08);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.principle-card h4 {
    font-size: 1.05rem;
    color: var(--color-brand-navy);
    margin-bottom: 0.75rem;
}

.principle-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-body);
}

.compliance-note {
    background: rgba(224, 90, 16, 0.04);
    border-left: 3px solid var(--color-accent-orange);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 2rem 0;
}

.compliance-note.compact {
    margin: 1.5rem 0 0;
    padding: 1rem 1.25rem;
}

.compliance-note p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--color-text-body);
    margin: 0;
}

.compliance-note .note-title {
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-orange);
    margin-bottom: 0.4rem;
    display: block;
}

.investment-overview-bar {
    padding: 3rem 0;
    background: var(--color-brand-navy);
    color: #fff;
}

.investment-overview-bar .overview-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.investment-overview-bar .overview-item h4 {
    color: var(--color-accent-orange);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.investment-overview-bar .overview-item p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.team-member-card {
    position: relative;
}

.team-member-card .team-photo {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    margin: -2.5rem -2.5rem 1.5rem;
    width: calc(100% + 5rem);
}

.about-intro-left .highlight-line {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-accent-orange);
    margin-bottom: 1.25rem;
}

.philosophy-sidebar {
    background: var(--color-brand-navy);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-sm);
}

.philosophy-sidebar .philosophy-title {
    color: var(--color-accent-orange);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.philosophy-sidebar .philosophy-title:first-child {
    margin-top: 0;
}

.philosophy-sidebar .philosophy-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.philosophy-sidebar .compliance-inline {
    font-size: 0.82rem;
    color: rgba(224, 90, 16, 0.9);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-visual-panel {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow-sm);
}

.contact-visual-panel img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.portfolio-intro-banner {
    position: relative;
    min-height: 280px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: flex-end;
}

.portfolio-intro-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-intro-banner .banner-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(17, 34, 51, 0.92) 0%, transparent 100%);
}

.portfolio-intro-banner .banner-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 640px;
}

.portfolio-detail-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-document-wrapper .legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--color-brand-navy);
}

.legal-document-wrapper .legal-content p {
    font-size: 0.94rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ── Rich image layouts ── */
.section-visual-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 3rem;
    background-color: #0c1824;
}

.section-visual-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.section-visual-banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 2rem;
    background: linear-gradient(0deg, rgba(17, 34, 51, 0.88) 0%, transparent 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.partners-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.partners-split-image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
}

.partners-split-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.partners-split-lead {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.team-section-banner {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 2.5rem;
    min-height: 220px;
}

.team-section-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.team-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(0deg, rgba(17, 34, 51, 0.9) 0%, transparent 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.65;
}

.philosophy-with-visual {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.philosophy-visual {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    position: sticky;
    top: 100px;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.custody-visual-split {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.invest-overview-banner {
    margin-bottom: 0;
}

.business-card-thumb {
    margin: -2rem -2rem 1.25rem;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    overflow: hidden;
    height: 140px;
}

.business-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-highlights-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.portfolio-highlights-image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
}

.portfolio-highlights-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.portfolio-highlights-text h3 {
    font-size: 1.35rem;
    color: var(--color-brand-navy);
    margin-bottom: 0.75rem;
}

.portfolio-highlights-text p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .investment-overview-bar .overview-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .partners-split-layout {
        grid-template-columns: 1fr;
    }

    .philosophy-with-visual {
        grid-template-columns: 1fr;
    }

    .philosophy-visual {
        position: static;
        max-height: 220px;
    }

    .philosophy-visual img {
        height: 220px;
    }

    .portfolio-highlights-split {
        grid-template-columns: 1fr;
    }

    .business-card-thumb {
        margin: -1.5rem -1.5rem 1rem;
        height: 120px;
    }
}
