/* ==========================================================================
   ZENITH INTERNATIONAL - PREMIUM STYLING SYSTEM
   ========================================================================== */

/* 1. DESIGN TOKENS & CONFIGURATION */
:root {
    --color-bg-white: #FCFBF7;      /* Warm white luxury background */
    --color-bg-ivory: #FAF8F2;      /* Warm ivory section backgrounds */
    --color-bg-champagne: #F4EFEB;  /* Rich champagne secondary bg */
    
    --color-gold: #D4AF37;          /* Classic light gold accent */
    --color-gold-light: #E5C158;    /* Shimmering highlight gold */
    --color-gold-dark: #C5A880;     /* Muted champagne-gold shadow */
    
    --color-navy: #0A1128;          /* Deep luxury navy highlights */
    --color-navy-light: #1C2541;    /* Accent navy for overlays and text */
    --color-navy-dark: #02050F;     /* Near-black deep navy */
    
    --color-text-dark: #1F2421;     /* Dark editorial body text */
    --color-text-muted: #5C6370;    /* Secondary readable body text */
    --color-text-light: #FAF8F2;    /* Light text for dark sections */
    --color-text-light-muted: #CBD5E1; /* Secondary light text */
    
    --color-glass-bg: rgba(252, 251, 247, 0.75);
    --color-glass-border: rgba(212, 175, 55, 0.18);
    --color-glass-shadow: rgba(10, 17, 40, 0.05);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Manrope', 'Inter', -apple-system, sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease-out;
}

/* 2. BASE RESET & SMOOTH SCROLLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: initial; /* Lenis handles smooth scrolling */
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-navy);
}

body {
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-ivory);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-navy);
}

p {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text-muted);
}

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

/* 3. CORE DESIGN UTILITIES */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

.text-center { text-align: center; }
.text-light { color: var(--color-text-light) !important; }
.text-light-muted { color: var(--color-text-light-muted) !important; }
.gold-text { color: var(--color-gold); }

.gold-gradient-text {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--color-glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-glass-border);
    box-shadow: 0 20px 40px var(--color-glass-shadow);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy));
    color: var(--color-bg-white);
    border: 1px solid var(--color-navy);
    box-shadow: 0 10px 20px rgba(10, 17, 40, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 17, 40, 0.25);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-color: var(--color-gold);
    color: var(--color-navy-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--color-navy);
    border: 1.5px solid var(--color-navy-light);
}

.btn-secondary:hover {
    background: var(--color-navy);
    color: var(--color-bg-white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* Section Header Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-glass-border);
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.05);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--color-text-muted);
}

/* 4. SCROLL PROGRESS BAR */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* 5. CUSTOM CURSOR EFFECTS */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-glow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
}

/* Hover state expansion */
body.cursor-hover .custom-cursor {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 2px solid var(--color-gold);
}

body.cursor-hover .custom-cursor-glow {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.05);
    border-color: var(--color-gold-light);
}

/* Hide cursor elements on touch devices */
@media (pointer: coarse) {
    .custom-cursor, .custom-cursor-glow {
        display: none;
    }
}

/* 6. PREMIUM INTRO SCREEN (PRELOADER) */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.preloader-sphere {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    position: relative;
}

.orbit-svg {
    width: 100%;
    height: 100%;
    animation: rotateSphere 20s linear infinite;
}

.orbit-ring {
    fill: none;
    stroke: rgba(212, 175, 55, 0.15);
    stroke-width: 1;
    transform-origin: center;
}

.orbit-1 {
    stroke-dasharray: 280 50;
    animation: pulseOrbit 8s ease-in-out infinite alternate;
}

.orbit-2 {
    stroke-dasharray: 100 80;
    animation: rotateReverse 12s linear infinite;
}

.orbit-3 {
    stroke-dasharray: 50 100;
}

.core-globe {
    fill: var(--color-gold);
    filter: drop-shadow(0 0 8px var(--color-gold-light));
    animation: pulseCore 3s ease-in-out infinite;
}

.preloader-text-wrapper {
    color: var(--color-bg-white);
}

.preloader-logo-title {
    font-size: 2.2rem;
    letter-spacing: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-bg-white), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.preloader-logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 6px;
    font-weight: 500;
    color: var(--color-text-light-muted);
    margin-bottom: 25px;
}

.preloader-bar-bg {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    transition: width 0.1s ease;
}

.preloader-percentage {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
}

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

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

@keyframes pulseOrbit {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes pulseCore {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px var(--color-gold)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 12px var(--color-gold-light)); }
}

/* 7. LUXURY FLOATING NAVIGATION */
#main-nav {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* transition only specific properties that don't conflict with GSAP's y/opacity */
    transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Navigation layout when page scrolled */
#main-nav.scrolled {
    top: 15px;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 92%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    border-radius: 100px;
    background: rgba(252, 251, 247, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.04);
    /* transition specific parameters only */
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#main-nav.scrolled .nav-container {
    padding: 12px 28px;
    background: rgba(10, 17, 40, 0.92);
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--color-bg-white);
    box-shadow: 0 15px 40px rgba(2, 5, 15, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-letter {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.nav-brand:hover .brand-letter {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.brand-logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-navy);
    display: flex;
    flex-direction: column;
    line-height: 1;
    transition: var(--transition-smooth);
}

#main-nav.scrolled .brand-logo-text {
    color: var(--color-bg-white);
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 4.5px;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

#main-nav.scrolled .nav-link {
    color: var(--color-text-light-muted);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-navy);
}

#main-nav.scrolled .nav-link:hover, 
#main-nav.scrolled .nav-link.active {
    color: var(--color-gold);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav-cta {
    background: transparent;
    color: var(--color-navy);
    border: 1px solid var(--color-gold);
    padding: 10px 22px;
    font-size: 0.78rem;
    border-radius: 50px;
}

.btn-nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
}

#main-nav.scrolled .btn-nav-cta {
    color: var(--color-bg-white);
}

#main-nav.scrolled .btn-nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
    border-color: var(--color-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    transition: var(--transition-fast);
}

#main-nav.scrolled .mobile-menu-btn span {
    background-color: var(--color-bg-white);
}

/* 8. MOBILE SIDE DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--color-navy-dark);
    z-index: 1002;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-header .brand-logo-text {
    color: var(--color-bg-white);
}

.drawer-close-btn {
    font-size: 2.2rem;
    color: var(--color-bg-white);
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-text-light-muted);
}

.drawer-link:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.btn-drawer-cta {
    background: var(--color-gold);
    color: var(--color-navy-dark);
    border: 1px solid var(--color-gold);
    margin-top: 20px;
}

/* 9. CINEMATIC HERO SECTION */
/* Fallback background for hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-ivory);
}

/* Luxury animated Ken Burns background image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1583911026662-95161686d9a6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.05);
    animation: kenBurnsHero 24s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(250, 248, 242, 0.98) 25%, rgba(250, 248, 242, 0.92) 55%, rgba(250, 248, 242, 0.4) 100%);
    z-index: 1;
}

@keyframes kenBurnsHero {
    0% {
        transform: scale(1.03) translate(0px, 0px);
    }
    100% {
        transform: scale(1.08) translate(-10px, -5px);
    }
}

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

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    top: -50px;
    right: 10%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--color-navy-light);
    bottom: -100px;
    left: 5%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-navy-light);
    background: rgba(26, 37, 65, 0.05);
    border: 1.5px solid rgba(26, 37, 65, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

/* Quick Metrics Row */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(10, 17, 40, 0.08);
    padding-top: 30px;
}

.metric-card {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-navy);
}

.metric-val::after {
    content: '+';
    color: var(--color-gold);
    font-size: 1.3rem;
    vertical-align: super;
}

.metric-val-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-navy);
}

.metric-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Hero Network Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.network-sphere-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-halo {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    animation: rotateSphere 40s linear infinite;
}

.network-halo-2 {
    position: absolute;
    width: 85%;
    height: 85%;
    border: 1.5px solid rgba(10, 17, 40, 0.04);
    border-radius: 50%;
    animation: rotateReverse 30s linear infinite;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(10, 17, 40, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
}

.hero-network-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.orbit-path {
    fill: none;
    stroke: rgba(10, 17, 40, 0.04);
    stroke-width: 1.5;
}

.node {
    fill: var(--color-navy);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
    transition: var(--transition-fast);
}

.node:hover {
    fill: var(--color-gold);
    r: 8px;
    cursor: pointer;
}

.central-node {
    fill: var(--color-gold);
    filter: drop-shadow(0 0 10px var(--color-gold));
}

.node-pulse {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 1.5;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    transform-origin: 250px 250px;
}

.conn-line {
    fill: none;
    stroke: rgba(212, 175, 55, 0.35);
    stroke-width: 1.5;
    stroke-dasharray: 4;
}

.animate-dash {
    stroke-dasharray: 6 4;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -1000; }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Floating Glass status tag */
.floating-glass-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    z-index: 3;
    background: rgba(252, 251, 247, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 14px 20px;
    box-shadow: 0 15px 35px rgba(10, 17, 40, 0.08);
    max-width: 250px;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.status-dot.pulsing {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: dotPulse 1.6s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.card-desc {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 6px 0 2px;
}

.card-timestamp {
    font-size: 0.65rem;
    color: var(--color-text-muted);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--color-navy-light);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-text-muted);
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* 10. COMPANY STORY SECTION */
.company-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
    position: relative;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Stacked Editorial Images */
.company-visual {
    position: relative;
    height: 520px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 17, 40, 0.08);
    border: 1px solid rgba(255,255,255,0.8);
    background-color: var(--color-bg-ivory);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-out;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.img-1 {
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    z-index: 2;
}

.img-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
}

.luxury-gold-frame {
    position: absolute;
    border: 2px solid var(--color-gold-dark);
    top: 40px;
    left: 40px;
    width: 65%;
    height: 65%;
    z-index: 1;
    pointer-events: none;
}

/* Company copy */
.company-info {
    display: flex;
    flex-direction: column;
}

.company-lead {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    line-height: 1.5;
    color: var(--color-navy-light);
    margin-bottom: 20px;
}

.company-text {
    margin-bottom: 30px;
    line-height: 1.7;
}

.company-quote {
    background: var(--color-bg-ivory);
    border-left: 3px solid var(--color-gold);
    padding: 24px 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(10, 17, 40, 0.02);
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.2rem;
    color: rgba(212, 175, 55, 0.08);
    pointer-events: none;
}

.company-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.45;
}

.company-quote cite {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

/* 11. INDUSTRIES WE SERVE */
.industries-section {
    padding: 120px 0;
    background-color: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.industries-slider-container {
    width: 100%;
    padding: 20px 4%;
    margin-top: 20px;
}

/* Expanding Flex Cards Layout */
.industry-cards-grid {
    display: flex;
    width: 100%;
    height: 480px;
    gap: 16px;
}

.industry-card {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 30px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid transparent;
    border-radius: 8px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Hover Expanding effect */
.industry-card:hover {
    flex: 2.5;
    border-color: rgba(212, 175, 55, 0.3);
}

.industry-card:hover .card-border-glow {
    border-color: var(--color-gold);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.15);
}

.industry-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    transition: var(--transition-smooth);
}

.ind-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 1.35rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.industry-card:hover .ind-icon-box {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: scale(1.08);
}

.ind-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-bg-white);
    margin-bottom: 12px;
}

.ind-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--color-text-light-muted);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    line-height: 1.5;
    transition: opacity 0.5s ease 0.1s, max-height 0.5s ease;
}

.industry-card:hover .ind-desc {
    opacity: 1;
    max-height: 80px;
    margin-bottom: 20px;
}

.ind-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.industry-card:hover .ind-action {
    opacity: 1;
    color: var(--color-bg-white);
}

/* 12. GLOBAL OPERATIONAL JOURNEYS SECTION */
.journeys-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
    position: relative;
}

.journeys-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.journey-card {
    background: var(--color-bg-ivory);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(10, 17, 40, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(10, 17, 40, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.journey-visual-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Skies and Oceans Gradient overlays */
.air-sky-bg {
    background: linear-gradient(180deg, #050b18 0%, #0c152b 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.ocean-sea-bg {
    background: linear-gradient(180deg, #020712 0%, #081229 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.journey-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Flight and Voyage path vectors */
.flight-path-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 1.5;
}

.flight-path-glow {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 1.5;
    stroke-dasharray: 6 5;
    filter: drop-shadow(0 0 4px var(--color-gold-light));
}

.voyage-path-line {
    fill: none;
    stroke: rgba(212, 175, 55, 0.12);
    stroke-width: 1.5;
    stroke-dasharray: 5 4;
}

/* Nodes styling */
.node-origin {
    fill: var(--color-gold);
    filter: drop-shadow(0 0 6px var(--color-gold));
}

.node-dest {
    fill: var(--color-gold);
    filter: drop-shadow(0 0 6px var(--color-gold));
}

.node-pulse-journey {
    fill: none;
    stroke: var(--color-gold-light);
    stroke-width: 1.5;
    animation: pingNode 2.5s infinite;
    transform-origin: center;
}

/* Animated Ocean Waves */
.svg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wave-1 {
    fill: rgba(12, 21, 43, 0.7);
    animation: waveSwell 6s ease-in-out infinite alternate;
}

.wave-2 {
    fill: rgba(212, 175, 55, 0.05);
    animation: waveSwell 8s ease-in-out infinite alternate-reverse;
}

@keyframes waveSwell {
    0% { transform: translateY(0) scaleY(1); }
    100% { transform: translateY(6px) scaleY(1.08); }
}

/* Country Pill Labels */
.country-label {
    position: absolute;
    bottom: 20px;
    z-index: 3;
    background: rgba(252, 251, 247, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
}

.label-left {
    left: 20px;
    align-items: flex-start;
}

.label-right {
    right: 20px;
    align-items: flex-end;
}

.hub-code {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.hub-name {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light-muted);
}

/* Journey Content details */
.journey-details {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.journey-name {
    font-size: 1.40rem;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.journey-description {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
}

.journey-milestones {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid rgba(10, 17, 40, 0.06);
    padding-top: 25px;
}

.milestone-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    line-height: 1.2;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-navy-light);
    line-height: 1.3;
}

.step-desc {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 2px;
    line-height: 1.4;
}

/* 13. SERVICES SECTION */
.services-section {
    padding: 120px 0;
    background-color: var(--color-bg-ivory);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Floating Glass Cards */
.service-card {
    background: var(--color-bg-white);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(10, 17, 40, 0.02);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    transition: var(--transition-smooth);
}

/* Hover effects */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 17, 40, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(10, 17, 40, 0.03);
    border: 1px solid rgba(10, 17, 40, 0.08);
    color: var(--color-navy);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--color-navy);
    color: var(--color-gold);
    border-color: var(--color-navy);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--color-navy);
}

.service-description {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    border-top: 1px solid rgba(10, 17, 40, 0.05);
    padding-top: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-dark);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .service-link {
    color: var(--color-navy);
}

/* 14. STATISTICS SECTION */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-navy);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--color-bg-white);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-gold);
    vertical-align: super;
}

.stat-text {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin: 8px 0;
    color: var(--color-text-light);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--color-text-light-muted);
    line-height: 1.4;
}

/* 15. TESTIMONIAL EXPERIENCE */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
}

.testimonial-swiper {
    width: 100%;
    padding: 30px 10px 60px !important;
}

.testimonial-card {
    background: var(--color-bg-ivory);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(10, 17, 40, 0.03);
    margin: 10px;
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(10, 17, 40, 0.06);
    border-color: rgba(212, 175, 55, 0.35);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.quote-mark {
    font-size: 2.2rem;
    color: rgba(212, 175, 55, 0.2);
}

.rating-stars {
    color: var(--color-gold);
    font-size: 0.8rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-navy-light);
    margin-bottom: 30px;
}

.testimonial-author {
    border-top: 1px solid rgba(10, 17, 40, 0.05);
    padding-top: 20px;
}

.author-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-navy);
}

.author-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Custom Swiper Bullet styles */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-navy) !important;
    opacity: 0.25 !important;
    transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
    width: 24px;
    height: 8px;
    border-radius: 4px !important;
    background: var(--color-gold) !important;
    opacity: 1 !important;
}

/* 16. CALL TO ACTION */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy-dark));
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    color: var(--color-bg-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* 17. CONTACT SECTION */
.contact-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

/* Details panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    margin-bottom: 40px;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-card {
    display: flex;
    gap: 20px;
    background: var(--color-bg-ivory);
    border: 1px solid rgba(10, 17, 40, 0.04);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.contact-detail-card.hover-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: var(--color-bg-white);
    box-shadow: 0 10px 25px rgba(10, 17, 40, 0.03);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.contact-card-text p {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Static Map visual placeholder */
.interactive-map-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 30px rgba(10,17,40,0.03);
}

.map-placeholder-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Clean abstract schematic map representation */
    background-image: linear-gradient(rgba(10, 17, 40, 0.9), rgba(10, 17, 40, 0.92)),
                      url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=600&q=80');
    filter: grayscale(100%);
}

.map-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: var(--color-bg-white);
}

.map-overlay-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.map-placeholder-overlay h4 {
    font-size: 1.1rem;
    color: var(--color-bg-white);
    margin-bottom: 4px;
}

.map-placeholder-overlay p {
    font-size: 0.75rem;
    color: var(--color-text-light-muted);
    margin-bottom: 12px;
}

/* Form Panel Details */
.contact-form-panel {
    background: var(--color-bg-ivory);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(10, 17, 40, 0.04);
}

.luxury-form .form-title {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.luxury-form .form-subtitle {
    font-size: 0.88rem;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group.full-width {
    grid-column: span 2;
    margin-bottom: 40px;
}

.input-group input, 
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(10, 17, 40, 0.12);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
}

.input-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

/* Floating labels effect */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.input-group input:focus ~ .input-line,
.input-group textarea:focus ~ .input-line,
.input-group select:focus ~ .input-line {
    width: 100%;
}

.btn-submit {
    width: 100%;
}

.form-status-msg {
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-status-msg.success {
    color: #2E7D32;
    display: block;
}

.form-status-msg.error {
    color: #C62828;
    display: block;
}

/* 18. LUXURY FOOTER */
.luxury-footer {
    background-color: var(--color-navy-dark);
    padding: 100px 0 0;
    border-top: 1.5px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    top: 0;
    left: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-column .brand-logo-text {
    color: var(--color-bg-white);
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--color-text-light-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: var(--color-text-light-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social-row a:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-links-column h4 {
    font-size: 1.15rem;
    color: var(--color-bg-white);
    margin-bottom: 24px;
}

.footer-links-column a {
    color: var(--color-text-light-muted);
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: inline-block;
}

.footer-links-column a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer-address {
    color: var(--color-text-light-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact-link {
    color: var(--color-text-light-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-contact-link:hover {
    color: var(--color-gold) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
}

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

/* 19. BACK TO TOP BUTTON */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-navy);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

#back-to-top:hover {
    background-color: var(--color-gold);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    transition: stroke-dashoffset 0.1s;
}

.arrow-up-icon {
    font-size: 0.9rem;
    color: var(--color-bg-white);
    z-index: 2;
    transition: var(--transition-fast);
}

#back-to-top:hover .arrow-up-icon {
    color: var(--color-navy);
    transform: translateY(-2px);
}

/* ==========================================================================
   20. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Desktop */
@media (max-width: 1400px) {
    .section-title { font-size: 2.6rem; }
    .hero-title { font-size: 3.4rem; }
}

/* Laptop */
@media (max-width: 1100px) {
    .nav-menu { gap: 20px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .hero-badge { align-self: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-metrics { max-width: 600px; margin: 0 auto; }
    
    .company-grid { grid-template-columns: 1fr; gap: 60px; }
    .company-visual { max-width: 600px; margin: 0 auto; width: 100%; }
    
    .industry-cards-grid { height: auto; flex-direction: column; }
    .industry-card { height: 260px; flex: auto; }
    .industry-card:hover { flex: auto; }
    .ind-desc { opacity: 1; max-height: 80px; margin-bottom: 20px; }
    
    .routes-dashboard-container { grid-template-columns: 1fr; border-right: none; }
    .map-visual-column { aspect-ratio: 1.8/1; border-right: none; border-bottom: 1.5px solid rgba(212, 175, 55, 0.15); }
    .dashboard-control-column { padding: 24px; gap: 20px; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-form-panel { padding: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* Tablet */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 2.6rem; }
    .hero-section { padding-top: 120px; }
    
    .nav-menu { display: none; }
    .btn-nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .routes-dashboard-container { grid-template-columns: 1fr; }
    .map-visual-column { aspect-ratio: 1.4/1; height: 350px; border-right: none; border-bottom: 1.5px solid rgba(212, 175, 55, 0.15); }
    .world-map-canvas { height: 100%; }
    .dashboard-control-column { padding: 20px; }
    
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .input-group.full-width { grid-column: span 1; }
}

/* Mobile */
@media (max-width: 480px) {
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2rem; }
    .hero-badge { font-size: 0.65rem; }
    .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    .company-visual { height: 355px; }
    .company-quote { padding: 15px; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .footer-bottom-flex { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal { flex-direction: column; gap: 10px; align-items: center; }
}
