@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    cursor: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

:root {
    /* Branding & Palette */
    --bg-light: #C89528;
    --bg-gold: #A67C00;
    --bg-dark: #C89528;
    --bg-hero: #C89528;
    --text-primary: #FFFFFF;
    --text-secondary: #FF6B2B;
    --text-light: #FFFFFF;
    --white: #FFFFFF;
    --orange: #FF6B2B;
    --accent: #FF6B2B;
    --copper: #B87333;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* CORE ARCHITECTURE CONSTANTS - DO NOT MODIFY WITHOUT CAUTION */
    --card-stack-offset: 3rem;
    --card-top-base: 6rem;
    --card-radius: 60px;
    --card-tab-height: 40px;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: 'Inter', sans-serif;
    /* Rich Fixed Gradient: Dark amber edges to bright gold center for the WHOLE site */
    background: radial-gradient(circle at center, #FFD700 0%, #B8860B 45%, #2a1e00 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Lightweight noise texture overlay */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3dyZlZid8fCpERChfXyZ9fS6zsz6urj7q6j7yn10is1CHh0CDg0C6ulV7f0fbt0799Wv/976Yn668u6W3t6Sgo6Sgo6Sgo6Sgo6Sgo6Sgo6T30SdfAAAAAnRSTlMFEZ7i4wAAADVJREFUeNo9zZkCADEIA0G9te7/f7HSH09yYmID8EAWKCmzZ9XQW9FSR9HSR9fS76299f98C9GP986N/vOOfMB5A/9pAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wUBCykB8v08OAAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAAWSURBVDhXY2BgYJDmY2BgYODn4+BgA1AAM6Lp6YAAAAAElFTkSuQmCC");
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

*, *::before, *::after {
    cursor: none !important;
}



/* CCTV Observer */
.cctv-container {
    position: fixed;
    top: 0.6rem;
    right: 18rem; /* Place in header next to CTA */
    width: 60px;
    height: 60px;
    z-index: 31000; /* Overlap header but keep pointer-events none */
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.cctv-camera {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)) drop-shadow(0 0 8px rgba(255, 180, 60, 0.2));
    will-change: transform;
    mix-blend-mode: screen;
}

.cctv-light {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff0055;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px #ff0055, 0 0 15px #ff0055;
    animation: cctvBlink 1s infinite steps(1);
    pointer-events: none;
}

@keyframes cctvBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}



h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

/* Optimized Cursor - GPU accelerated, visible on ALL backgrounds */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor.visible {
    opacity: 1;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s ease;
    box-shadow: 0 0 8px var(--orange);
}

.cursor-ring {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    position: absolute;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 12px rgba(255, 107, 43, 0.2);
}

/* Hovered States */
.cursor.hovered .cursor-dot {
    transform: scale(0.6);
    background: var(--orange);
}

.cursor.hovered .cursor-ring {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 43, 0.12);
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(255, 107, 43, 0.4);
}

/* ========================================
   HEADER - Lucien Style (sits on hero)
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30000; /* Absolute front */
    padding: 1.25rem 4rem;
    background: transparent;
    backdrop-filter: blur(15px);
}

header .nav-link, header .logo {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left { display: flex; gap: 2rem; flex: 1; }
.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-right { flex: 1; display: flex; justify-content: flex-end; }

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-img {
    height: 38px; /* Balanced height for modern navigation bar */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Hide mobile-specific navigation elements on desktop by default */
.mobile-menu-toggle {
    display: none !important;
}
.mobile-menu-overlay {
    display: none !important;
}

.logo:hover .logo-img {
    transform: scale(1.08);
    filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255, 255, 255, 0.65));
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-container:hover {
    opacity: 1;
}

.footer-logo-img {
    height: 80px; /* Larger, elegant brand presence in the footer */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.footer-logo-container:hover .footer-logo-img {
    transform: scale(1.06);
    filter: brightness(0) invert(1) drop-shadow(0 0 24px rgba(255, 255, 255, 0.6));
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--orange); }

.btn-cta {
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(200, 149, 40, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--bg-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background: var(--bg-gold);
    color: white;
}

/* ========================================
   HERO - Cinematic Gold with Depth
   ======================================== */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    background: transparent;
    z-index: 2;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: spotlightPulse 8s infinite ease-in-out;
}

.hero-beam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
    transform: translateX(-50%);
    pointer-events: none;
    animation: beamPulse 6s infinite ease-in-out;
}

.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    border: 1px solid rgba(255, 215, 0, 0.15); /* Sleek gold border */
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: ringRotate 40s linear infinite;
}

.hero-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45vw;
    height: 45vw;
    max-width: 650px;
    max-height: 650px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: ringRotate 25s linear infinite reverse;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.2; width: 1px; }
    50% { opacity: 0.6; width: 3px; }
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Particle canvas layer */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Subtle noise grain overlay */
.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-ring::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--orange);
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}



.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    max-width: 100vw;
    padding: 0 5%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 6vh;
}

/* Hero Cityscape Wireframe */
.hero-cityscape {
    width: 100%;
    max-width: min(44vw, 700px);
    animation: cityscapeReveal 2s ease-out forwards;
    position: relative;
}

.cityscape-img {
    width: 100%;
    height: auto;
    opacity: 1.0;
    transition: opacity 0.5s ease;
    will-change: transform;
    filter: drop-shadow(0 2px 4px rgba(18, 12, 2, 0.6)) 
            drop-shadow(0 0 20px rgba(200, 149, 40, 0.25))
            drop-shadow(0 0 1px rgba(255, 220, 120, 0.4));
}

.cityscape-img:hover {
    opacity: 1;
}

.cn-tower-logo {
    position: absolute;
    /* The tip of the antenna is around 4.5% from the top and exactly in the middle horizontally */
    top: 4.5%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    animation: towerLogoFloat 3s ease-in-out infinite;
}

.cn-tower-logo img {
    width: 500px; /* 5x larger size */
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

@keyframes towerLogoFloat {
    /* Positioned for the perfect overlap - not too high, not too low */
    0%, 100% { transform: translate(-50%, -35%); }
    50% { transform: translate(-50%, calc(-35% - 15px)); }
}

@keyframes cityscapeReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Service Panels at hero corners */
.svc-panel {
    position: absolute;
    z-index: 10;
    pointer-events: auto;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: panelReveal 1s ease-out forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.svc-panel:hover {
    transform: scale(1.05);
}

a.svc-panel {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.svc-top-left { top: 12vh; left: 2.5vw; animation-delay: 0.5s; }
.svc-top-right { top: 12vh; right: 2.5vw; animation-delay: 0.8s; }
.svc-bottom-left { bottom: 4vh; left: 2.5vw; animation-delay: 1.1s; }
.svc-bottom-right { bottom: 4vh; right: 2.5vw; animation-delay: 1.4s; }

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

.svc-icons {
    width: 250px;
    height: 160px;
}

.svc-panel-title {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0.75rem 0 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Magic dust flow lines - full hero SVG overlay */
.magic-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    pointer-events: none;
    opacity: 0; /* Hide by default to prevent cluster-flashing before JS layout loads */
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.magic-lines.active {
    opacity: 1;
}

/* Mobile Service Strip - Hidden on desktop, shown on mobile */
.mobile-service-strip {
    display: none; /* Hidden everywhere — replaced by corner panels */
}

@media (max-width: 1024px) {
    .svc-line { display: none !important; }

    /* Scale down corner service panels for tablet */
    .svc-panel { opacity: 1; }
    .svc-icons { width: 140px; height: 90px; }
    .svc-panel-title { font-size: 0.7rem; letter-spacing: 0.08em; }
}

.hero-metrics {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    text-align: right;
    font-family: var(--font-mono);
    z-index: 3;
}

.metric-item {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}
.metric-item.active { opacity: 1; transform: translateY(0); }
.metric-label { color: var(--orange); margin-right: 0.5rem; }

/* ========================================
   STATEMENT - Cinematic Gold
   ======================================== */
.statement {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 4rem;
    background: transparent; /* Show global gold background */
    position: relative;
    overflow: hidden;
}

/* Subtle Gold Texture to remove the "pale" look */
.statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(200, 149, 40, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Subtle accent line */
.statement .section-accent {
    position: absolute;
    top: 0;
    right: 15%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 220, 120, 0.2) 40%, rgba(255, 220, 120, 0.2) 60%, transparent 100%);
    z-index: 0;
    transform: rotate(5deg);
}

.statement .section-accent::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -3px;
    width: 7px;
    height: 7px;
    background: rgba(255, 200, 80, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 200, 80, 0.5);
    animation: accentDotMove 8s ease-in-out infinite;
}

@keyframes accentDotMove {
    0%, 100% { top: 20%; }
    50% { top: 75%; }
}

.statement-text {
    font-size: clamp(2rem, 5.5vw, 6vw);
    line-height: 1.1;
    max-width: 1200px;
    font-weight: 800; /* Extra Bold / Thick Orange */
    position: relative;
    z-index: 1;
    color: #FFFFFF; /* High contrast white on gold */
}

.statement-text span {
    color: rgba(255, 255, 255, 0.4); /* Subtle white reveal */
    transition: color 0.1s linear;
}

/* ========================================
   SERVICES - Cinematic Stacking Cards
   ======================================== */
.services-section {
    padding: 8rem 4rem 10rem;
    background: transparent;
    position: relative;
    overflow: visible;
    z-index: 5;
}

/* Services section header */
.services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.services-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bg-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.services-heading {
    font-size: clamp(3rem, 7vw, 8vw);
    line-height: 0.9;
    color: #ffffff;
}

.services-heading span {
    color: #ffffff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* 
   ============================================================
   CORE ARCHITECTURE: SOHUB GOLDEN STACK ENGINE (DO NOT MODIFY)
   ============================================================
*/
.service-card:nth-child(1) { top: var(--card-top-base); z-index: 1; }
.service-card:nth-child(2) { top: calc(var(--card-top-base) + var(--card-stack-offset)); z-index: 2; }
.service-card:nth-child(3) { top: calc(var(--card-top-base) + (var(--card-stack-offset) * 2)); z-index: 3; }
.service-card:nth-child(4) { top: calc(var(--card-top-base) + (var(--card-stack-offset) * 3)); z-index: 4; }

.service-card {
    background: #FFFFFF;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    padding: 6rem 4rem;
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 4rem;
    align-items: center;
    position: sticky;
    
    /* The "Gold Tab" Header - Linked to Architecture */
    border-top: var(--card-tab-height) solid var(--bg-gold); 
    
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 0;
}
/* ============================================================ */

/* Premium Gold Glint Effect */
.service-card::after, .footer-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 60%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: goldGlint 8s infinite;
    pointer-events: none;
}

@keyframes goldGlint {
    0% { left: -150%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

.service-card:hover {
    box-shadow: 0 40px 80px rgba(200, 149, 40, 0.08);
    border: 1px solid rgba(200, 149, 40, 0.3);
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
}

.card-num {
    font-size: 0.85rem;
    color: var(--bg-gold);
    opacity: 0.6;
    font-weight: 600;
}

.card-title {
    font-size: 6vw;
    margin: 2rem 0;
    color: var(--orange);
    text-shadow: 0 0 40px rgba(255, 107, 43, 0.15);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.card-tags span {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(200, 149, 40, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--bg-gold);
    background: rgba(200, 149, 40, 0.05);
    transition: all 0.3s ease;
}

.card-tags span:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 43, 0.05);
}

.card-footer-replica {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-icon {
    font-size: 2rem;
    color: var(--orange);
    flex-shrink: 0;
    text-shadow: 0 0 20px rgba(255, 107, 43, 0.3);
}

.service-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
}

.card-image-replica {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.card-image-replica img {
    width: 85%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(255, 180, 60, 0.15));
}

/* Entrance Animation for sections */
.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   FOOTER - Cinematic Gold
   ======================================== */
footer {
    padding: 10rem 4rem 5rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(200, 149, 40, 0.1);
    color: #2a1e00; /* Rich premium dark gold-brown for visibility */
}

/* Radial glow behind footer CTA */
footer::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(200, 149, 40, 0.15) 0%, rgba(200, 149, 40, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: footerGlow 12s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* Geometric ring accent in footer */
.footer-ring {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 600px;
    max-height: 600px;
    border: 1px solid rgba(255, 220, 120, 0.06);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: ringRotate 40s linear infinite;
}

.footer-cta {
    font-size: 12vw;
    line-height: 0.85;
    margin-bottom: 8rem;
    will-change: transform;
    color: var(--orange);
    position: relative;
    z-index: 1;
}

.footer-cta span {
    transition: color 0.3s ease;
}

/* BENTO GRID - Metrics */
.metrics {
    padding: 10rem 4rem;
    background: transparent; /* Seamless connection */
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 149, 40, 0.1);
    border-radius: 40px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.15;
    mix-blend-mode: multiply;
    transition: opacity 0.4s ease;
}

.bento-item:hover .bento-visual {
    opacity: 0.3;
}

.bento-icon {
    width: 40px;
    height: 40px;
    color: var(--bg-gold);
    margin-bottom: auto;
}

.bento-item:hover {
    border: 1px solid rgba(200, 149, 40, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 149, 40, 0.05);
}

.bento-item.large { grid-column: span 2; grid-row: span 2; background: #fafafa; }
.bento-item.medium { grid-column: span 2; }

.bento-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--bg-gold);
    margin-bottom: 1rem;
}

.bento-item h3 {
    font-size: 4rem;
    color: var(--orange);
    margin-bottom: 1rem;
    line-height: 1;
}

.bento-item p {
    font-size: 1.1rem;
    color: #666;
    max-width: 300px;
}

/* Infrastructure Connectivity Lines */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 15%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(200, 149, 40, 0.2), transparent);
    z-index: 0;
}

.metrics::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 149, 40, 0.2), transparent);
    z-index: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 200, 80, 0.12);
    position: relative;
    z-index: 1;
    gap: 2rem;
}

/* Premium Footer Information Layout */
.footer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-loc {
    align-items: flex-start;
}

.footer-contact-mid {
    align-items: center;
}

.footer-reach {
    align-items: flex-end;
}

.footer-info h4 {
    font-size: 0.85rem;
    color: rgba(200, 149, 40, 0.6); /* Warm dark gold for visibility on white bg */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #443c2c; /* Rich premium dark grey with gold tint */
    font-weight: 400;
}

.footer-phones, .footer-email-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-phone, .footer-email {
    font-size: 1.15rem !important; /* Elegant readable typography */
    font-family: var(--font-mono);
    font-weight: 600 !important;
    color: var(--orange) !important;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-phone:hover, .footer-email:hover {
    color: var(--bg-gold) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 107, 43, 0.15);
}



.icon-accent {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 43, 0.15));
}

.reach-locations {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: #443c2c;
    letter-spacing: 0.05em;
}

.reach-locations span {
    color: var(--bg-gold);
    transition: color 0.3s ease;
}

.reach-locations span:hover {
    color: var(--orange);
}

/* SUB-FOOTER (Legal Links & Copyright) */
.footer-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-sub .divider {
    color: rgba(255, 255, 255, 0.15);
}




/* ========================================
   TOUCH DEVICE - Disable custom cursor
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    *, *::before, *::after {
        cursor: auto !important;
    }
    .cursor { display: none !important; }
}

/* ========================================
   TABLET RESPONSIVE (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
    header { padding: 2rem 2.5rem; }
    .nav-left { gap: 1.5rem; }
    .cctv-container { display: none !important; }

    .hero-content { padding: 0 3%; padding-bottom: 4vh; }
    .hero-cityscape { max-width: min(55vw, 600px); }

    .cn-tower-logo img { width: 350px; }

    .statement { padding: 8rem 2.5rem; }
    .services-section { padding: 6rem 2.5rem 10rem; }

    .service-card {
        padding: 4rem 3rem;
        height: auto;
        min-height: 60vh;
        border-radius: 36px 36px 0 0;
    }

    .card-title { font-size: 7vw; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .bento-item.large { grid-column: span 2; grid-row: span 1; }
    .bento-item.medium { grid-column: span 2; }

    .metrics { padding: 6rem 2.5rem; }

    footer { padding: 8rem 2.5rem 4rem; }
    .footer-cta { font-size: 10vw; margin-bottom: 5rem; }
}

/* ========================================
   MOBILE RESPONSIVE (≤768px)
   ======================================== */
@media (max-width: 768px) {
    /* --- Header & Nav --- */
    header { padding: 1.25rem 1.5rem; }
    nav { position: relative; width: 100%; }
    .nav-left, .nav-right { display: none; }
    .nav-center { justify-content: center; }
    .logo-img { height: 36px; }
    .cctv-container { display: none; }

    /* --- Mobile Menu Button & Overlay --- */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 2px;
    }

    /* Transform hamburger into Close (X) when active */
    .mobile-menu-active .mobile-menu-toggle .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--bg-gold);
    }
    .mobile-menu-active .mobile-menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-active .mobile-menu-toggle .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--bg-gold);
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(18, 12, 2, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 99;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        width: 100%;
        padding: 2rem;
    }

    .mobile-nav-link {
        font-family: var(--font-mono);
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        transition: color 0.3s ease;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .mobile-nav-link:active, .mobile-nav-link:hover {
        color: var(--bg-gold);
    }

    .mobile-cta {
        margin-top: 1.5rem;
        font-size: 0.85rem;
        padding: 1.2rem 2.5rem;
        letter-spacing: 0.12em;
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    }
    
    /* Disable body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* --- Hero --- */
    .hero { height: 100vh; height: 100dvh; overflow: hidden; position: relative; }
    .hero-content {
        padding: 0;
        padding-bottom: 3vh;
        height: 100vh;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-cityscape {
        max-width: 52vw;
        margin: 0 auto;
    }
    .cn-tower-logo img { width: 200px; }
    @keyframes towerLogoFloat {
        0%, 100% { transform: translate(-50%, -35%); }
        50% { transform: translate(-50%, calc(-35% - 8px)); }
    }
    .hero-ring { width: 80vw; height: 80vw; }
    .hero-ring-inner { width: 60vw; height: 60vw; }
    .hero-spotlight, .hero-beam { display: none; }

    /* Scale corner service panels for mobile */
    .svc-icons { width: 90px; height: 60px; }
    .svc-panel-title { font-size: 0.5rem; letter-spacing: 0.06em; margin-top: 0.3rem; }
    .svc-top-left { top: 10vh; left: 2vw; }
    .svc-top-right { top: 10vh; right: 2vw; }
    .svc-bottom-left { bottom: 8vh; left: 2vw; }
    .svc-bottom-right { bottom: 8vh; right: 2vw; }

    .hero-metrics { right: 1rem; bottom: 1.5rem; }
    .hero-metrics .metric-item { font-size: 0.55rem; }

    /* --- Statement --- */
    .statement { padding: 6rem 1.5rem; min-height: 80vh; }
    .statement-text { font-size: 8vw; line-height: 1.15; }
    .statement .section-accent { display: none; }

    /* --- Services --- */
    .services-section { padding: 4rem 1.25rem 8rem; }
    .services-heading { font-size: clamp(2.5rem, 10vw, 5rem); }
    .services-header { margin-bottom: 3rem; }

    /* Override variables on mobile to keep stacked cards beautifully spaced */
    :root {
        --card-top-base: 4.5rem;
        --card-stack-offset: 1.5rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 2.5rem 1.75rem;
        height: auto !important;
        min-height: 520px;
        border-radius: 24px 24px 0 0;
        gap: 1.5rem;
        border-top-width: 28px;
        position: sticky !important;
        margin-top: 0;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .card-title { font-size: 9vw; margin: 1rem 0; }
    .card-num { font-size: 0.75rem; }
    .service-desc { font-size: 0.95rem; }

    .card-footer-replica {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .card-image-replica {
        width: 100%;
        display: flex;
        justify-content: center;
        order: -1;
    }
    .card-image-replica img {
        width: 65%;
        max-width: 280px;
    }

    .card-tags { gap: 0.4rem; margin-top: 1rem; }
    .card-tags span { font-size: 0.6rem; padding: 0.3rem 0.75rem; }

    /* --- Bento / Metrics --- */
    .metrics { padding: 4rem 1.25rem; }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }
    .bento-item.large,
    .bento-item.medium { grid-column: span 1; grid-row: span 1; }
    .bento-item { border-radius: 24px; padding: 2rem; min-height: 200px; }
    .bento-item h3 { font-size: 2.75rem; }
    .bento-item p { font-size: 0.95rem; max-width: 100%; }

    /* --- Footer --- */
    footer { padding: 5rem 1.5rem 3rem; }
    .footer-cta {
        font-size: 12vw;
        margin-bottom: 3rem;
        line-height: 0.95;
    }
    .footer-cta span { display: inline; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }
    .footer-contact-mid { align-items: flex-start !important; text-align: left !important; }
    .footer-reach { align-items: flex-start !important; text-align: left !important; }
    .footer-phones, .footer-email-box { flex-wrap: wrap; }
    .footer-phone, .footer-email { font-size: 0.95rem !important; }
    .footer-logo-img { height: 60px; }
    .footer-ring { display: none; }
    .footer-sub {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-top: 3rem;
        padding-top: 1.5rem;
    }

    /* --- Booking Modal --- */
    .booking-modal-content {
        width: 95%;
        padding: 2.5rem 1.75rem;
        border-radius: 24px;
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
    }
    .modal-form-header h3 { font-size: 1.75rem; }
    .modal-close-btn { top: 1.25rem; right: 1.25rem; font-size: 1.75rem; }
}

/* ========================================
   SMALL PHONE (≤480px)
   ======================================== */
@media (max-width: 480px) {
    header { padding: 1rem; }
    .logo-img { height: 30px; }

    .hero-cityscape { max-width: 92vw; }
    .cn-tower-logo img { width: 220px; }

    .statement-text { font-size: 7.5vw; }

    .services-heading { font-size: clamp(2rem, 9vw, 3.5rem); }
    .service-card { padding: 2rem 1.5rem; }
    .card-title { font-size: 10vw; }
    .card-image-replica img { width: 75%; max-width: 240px; }

    .bento-item h3 { font-size: 2.25rem; }
    .bento-item { padding: 1.75rem; }

    .footer-cta { font-size: 13vw; }
    .footer-address { font-size: 0.85rem; }

    .booking-modal-content { padding: 2rem 1.25rem; }
    .modal-form-header h3 { font-size: 1.5rem; }
    .btn-submit-booking { padding: 0.9rem 1.5rem; font-size: 0.9rem; }
}

/* ========================================
   BOOKING MODAL - Premium Glassmorphism
   ======================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 12, 2, 0.45); /* Slightly darker translucent backdrop for beautiful contrast */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 50000; /* Way above header and cursor */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-content {
    background: #FFFFFF; /* Pure white background as requested */
    border: 1px solid rgba(255, 107, 43, 0.25); /* Elegant thin orange/gold border */
    border-radius: 36px;
    width: 90%;
    max-width: 600px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 107, 43, 0.08);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--orange); /* Theme orange text */
    overflow: hidden;
}

.booking-modal-overlay.active .booking-modal-content {
    transform: translateY(0) scale(1);
}

/* Close Button */
.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: rgba(255, 107, 43, 0.6); /* Translucent orange close button */
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

.modal-form-header {
    margin-bottom: 2.5rem;
}

.modal-form-header h3 {
    font-size: 2.25rem;
    color: var(--orange); /* Orange title letters */
    margin-bottom: 0.75rem;
}

.modal-form-header h3 span {
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255, 107, 43, 0.15);
}

.modal-form-header p {
    font-size: 0.95rem;
    color: rgba(255, 107, 43, 0.85); /* Highly readable warm orange-grey description */
    line-height: 1.5;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 580px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange); /* Vibrant orange labels */
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 107, 43, 0.04); /* Light translucent orange input bg */
    border: 1px solid rgba(255, 107, 43, 0.18); /* Thin orange border */
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    color: var(--orange); /* Text inside inputs is warm orange */
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 107, 43, 0.55); /* Readable orange placeholders */
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 107, 43, 0.08);
    box-shadow: 0 0 15px rgba(255, 107, 43, 0.2);
}

/* Custom styling for dropdown select to match white & orange style */
.form-group select option {
    background: #FFFFFF;
    color: var(--orange);
}

/* Submit Button */
.btn-submit-booking {
    background: linear-gradient(135deg, var(--orange) 0%, #d84b12 100%);
    border: none;
    border-radius: 100px;
    color: #ffffff;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(255, 107, 43, 0.3);
    margin-top: 1rem;
    cursor: pointer;
}

.btn-submit-booking span {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 43, 0.45);
    background: linear-gradient(135deg, #ff7a3d 0%, var(--orange) 100%);
}

.btn-submit-booking:hover span {
    transform: rotate(45deg) scale(1.1);
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Screen */
.modal-success-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF; /* Matches clean white modal card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.modal-success-screen.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--orange);
    text-shadow: 0 0 30px rgba(255, 107, 43, 0.3);
    margin-bottom: 1.5rem;
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

.modal-success-screen h3 {
    font-size: 2.25rem;
    color: var(--orange); /* Success title in orange */
    margin-bottom: 1rem;
}

.modal-success-screen p {
    font-size: 1rem;
    color: rgba(255, 107, 43, 0.85); /* Readable description in orange */
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 2rem;
}

.btn-success-close {
    background: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 100px;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-success-close:hover {
    background: #d84b12;
    border-color: #d84b12;
    box-shadow: 0 5px 15px rgba(255, 107, 43, 0.3);
}

/* Close states when form is scrolling */
@media (max-height: 700px) {
    .booking-modal-content {
        padding: 2rem;
        border-radius: 24px;
        overflow-y: auto;
        max-height: 90vh;
    }
    .modal-close-btn {
        top: 1.5rem;
        right: 1.5rem;
    }
}

/* Accessible visible focus outlines for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--orange) !important;
    outline-offset: 4px !important;
    cursor: auto !important;
}
