:root {
    /* Premium Dark Theme with Gold/Amber HUD accents */
    --bg-color: #040406;
    --surface-color: rgba(16, 16, 22, 0.7);
    --surface-border: rgba(212, 175, 55, 0.15);
    --text-primary: #eaeaea;
    --text-secondary: #8a8a92;

    --accent-color: #d4af37;
    --accent-dim: #a88a2d;
    --accent-glow: rgba(212, 175, 55, 0.35);
    --accent-soft: rgba(212, 175, 55, 0.08);

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(212, 175, 55, 0.04), transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(212, 175, 55, 0.03), transparent 50%);
}

/* ══════════════════════════════════════════
   CUSTOM SCROLLBAR & SELECTION
   ══════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #fff;
}

/* ══════════════════════════════════════════
   PAGE LOADER
   ══════════════════════════════════════════ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.loader-icon {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--accent-color);
    animation: loaderPulse 1.5s infinite;
}
.loader-bar {
    width: 150px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}
.loader-bar span {
    position: absolute;
    top: 0; left: 0; height: 100%;
    width: 40%;
    background: var(--accent-color);
    animation: loaderProgress 1.5s infinite ease-in-out;
}
.loader-text {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); text-shadow: 0 0 20px var(--accent-glow); }
}
@keyframes loaderProgress {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ══════════════════════════════════════════
   HUD OVERLAY — Subtle grid + scan-line
   ══════════════════════════════════════════ */
#hud-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}
#hud-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.95);
}

/* Canvas for animated HUD lines (drawn via JS) */
#hud-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
}

/* ══════════════════════════════════════════
   AMBIENT ORBS
   ══════════════════════════════════════════ */
.ambient-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatOrb 20s infinite alternate ease-in-out;
}
.orb-1 {
    width: 400px; height: 400px;
    background: var(--accent-color);
    top: -100px; left: -100px;
}
.orb-2 {
    width: 500px; height: 500px;
    background: var(--accent-color);
    bottom: -150px; right: -100px;
    animation-delay: -5s;
}
.orb-3 {
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.1);
    top: 40%; left: 60%;
    animation-delay: -10s;
}
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* ══════════════════════════════════════════
   FLOATING HUD PARTICLES
   ══════════════════════════════════════════ */
.hud-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
}
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 12s ease-in-out infinite;
}
.p1 { top: 15%; left: 8%; animation-delay: 0s; }
.p2 { top: 45%; left: 92%; animation-delay: 2s; }
.p3 { top: 70%; left: 20%; animation-delay: 4s; }
.p4 { top: 25%; left: 75%; animation-delay: 6s; }
.p5 { top: 85%; left: 50%; animation-delay: 8s; }
.p6 { top: 55%; left: 40%; animation-delay: 10s; }
.p7 { top: 10%; left: 60%; animation-delay: 1s; }
.p8 { top: 80%; left: 85%; animation-delay: 7s; }

@keyframes floatParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    25% { opacity: 0.8; }
    50% { opacity: 0.4; transform: translateY(-40px) scale(1); }
    75% { opacity: 0.6; }
}

/* ══════════════════════════════════════════
   GLASSMORPHISM
   ══════════════════════════════════════════ */
.glassmorphism {
    background: var(--surface-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--surface-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════ */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; }
.highlight { color: var(--accent-color); }
.gradient-text {
    background: linear-gradient(to right, #eaeaea, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}
.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(4, 4, 6, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--surface-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    cursor: pointer;
}
.logo-prefix { color: var(--accent-color); font-size: 1.1rem; }
.logo-name { font-weight: 700; letter-spacing: 0.5px; }
.ampersand { font-family: var(--font-sans); font-weight: 300; color: var(--text-secondary); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    position: relative;
    font-weight: 500;
}
.nav-links a.active,
.nav-links a:hover { color: var(--text-primary); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -4px; left: 50%;
    background: var(--accent-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    box-shadow: 0 0 6px var(--accent-glow);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
    border-radius: 4px;
    transition: var(--transition-smooth) !important;
}
.nav-cta:hover {
    background: var(--accent-color);
    color: var(--bg-color) !important;
    box-shadow: 0 0 15px var(--accent-glow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ══════════════════════════════════════════
   BUTTONS — HUD Style + Magnetic
   ══════════════════════════════════════════ */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}
.btn-text { position: relative; z-index: 2; }

.btn-primary {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(212,175,55,0.15);
}
.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}
.btn-shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: none;
    z-index: 1;
}
.btn-primary:hover .btn-shimmer {
    animation: shimmer 1s forwards;
}
@keyframes shimmer {
    100% { left: 200%; }
}
.btn-primary:hover .btn-glow { opacity: 1; }
.btn-primary:hover {
    background: rgba(212,175,55,0.08);
    box-shadow: 0 0 30px rgba(212,175,55,0.25), inset 0 0 15px rgba(212,175,55,0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-arrow {
    transition: transform var(--transition-fast);
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}
.btn-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

.magnetic-btn {
    /* JS will handle transform */
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section-padding { padding: 7rem 5% 5rem; position: relative; z-index: 2; }

/* Smooth scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 80px;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    padding-top: 8rem;
}

.hero-content { flex: 1; max-width: 600px; }

/* Staggered Load Animations */
body.loading .anim-item { opacity: 0; transform: translateY(30px); }
.anim-item { transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

.hud-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    position: relative;
    background: rgba(212,175,55,0.04);
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
}
.badge-ping {
    position: absolute;
    left: 1.2rem; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    75%, 100% { transform: translateY(-50%) scale(3); opacity: 0; }
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 90%;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   HUD VISUAL — Hero Circle
   ══════════════════════════════════════════ */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hud-circle-container {
    position: relative;
    width: 450px; height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hud-circle-container img {
    position: absolute;
    width: 70%; height: 70%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: saturate(0.8);
    transition: var(--transition-smooth);
}
.hud-circle-container:hover img {
    opacity: 0.9;
    filter: saturate(1.2);
    transform: scale(1.05);
}

.hud-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    z-index: 1;
}
.hud-circle.outer {
    width: 100%; height: 100%;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    animation: rotate 25s linear infinite;
}
.hud-circle.middle {
    width: 78%; height: 78%;
    border-left: 1px dashed rgba(212,175,55,0.5);
    border-right: 1px solid rgba(212,175,55,0.2);
    animation: rotate-reverse 18s linear infinite;
}
.hud-circle.inner {
    width: 55%; height: 55%;
    border: 1px solid rgba(212,175,55,0.1);
    box-shadow: 0 0 40px rgba(212,175,55,0.15), inset 0 0 30px rgba(212,175,55,0.05);
}
.pulse-ring {
    width: 110%; height: 110%;
    border: 1px solid var(--accent-color);
    opacity: 0;
    animation: ringPulse 4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes ringPulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* HUD Crosshairs */
.hud-crosshair {
    position: absolute; z-index: 1;
    background: rgba(212,175,55,0.12);
}
.hud-crosshair.h { width: 110%; height: 1px; }
.hud-crosshair.v { width: 1px; height: 110%; }

.hud-icon {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--accent-color);
    text-shadow: 0 0 25px var(--accent-glow);
    animation: pulse 5s ease-in-out infinite;
    z-index: 2;
}

/* HUD Data Tags */
.hud-data-tag {
    position: absolute;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(212,175,55,0.6);
    white-space: nowrap;
    z-index: 3;
    padding: 2px 8px;
    background: rgba(4,4,6,0.6);
    border: 1px solid rgba(212,175,55,0.2);
    backdrop-filter: blur(4px);
}
.hud-data-tag.top { top: -25px; }
.hud-data-tag.bottom { bottom: -25px; }
.hud-data-tag.left { left: -60px; top: 50%; transform: translateY(-50%); }
.hud-data-tag.right { right: -50px; top: 50%; transform: translateY(-50%); }

@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes rotate-reverse { 100% { transform: rotate(-360deg); } }
@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.04); }
}

/* ══════════════════════════════════════════
   STATS COUNTER SECTION
   ══════════════════════════════════════════ */
.stats-section {
    padding: 0 5%;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border);
    padding: 3rem 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.stat-item {
    text-align: center;
    position: relative;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}
.stat-suffix {
    font-size: 2rem;
    color: var(--accent-color);
    display: inline-block;
    vertical-align: top;
    margin-top: 0.5rem;
}
.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}
.stat-glow {
    position: absolute;
    width: 60px; height: 60px;
    background: var(--accent-color);
    filter: blur(40px);
    opacity: 0.2;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.stat-divider {
    width: 1px; height: 60px;
    background: linear-gradient(transparent, rgba(212,175,55,0.3), transparent);
}

/* ══════════════════════════════════════════
   METRICS BAR
   ══════════════════════════════════════════ */
.metrics-bar {
    margin: 3rem 5%;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    border-radius: 12px;
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}
.metric {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.metric-icon { font-size: 2rem; margin-top: 2px; }
.metric-content h4 {
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.metric-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}
.metric-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(transparent, var(--accent-color), transparent);
    opacity: 0.4;
}

/* ══════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════ */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.hud-line {
    width: 60px; height: 2px;
    background: var(--accent-color);
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 12px var(--accent-glow);
}
.hud-line::before, .hud-line::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 6px; height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}
.hud-line::before { left: -15px; }
.hud-line::after { right: -15px; }

/* ══════════════════════════════════════════
   EXPERTISE GRID & TILT CARDS
   ══════════════════════════════════════════ */
.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.expertise-grid .tilt-card {
    flex: 1 1 300px;
    max-width: 380px;
}

.tilt-card {
    position: relative;
    border-radius: 12px;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.card-inner {
    padding: 2.5rem;
    border-radius: 12px;
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border);
    height: 100%;
    transform: translateZ(20px);
    transition: border-color var(--transition-smooth), background var(--transition-smooth);
}
.card-glow-border {
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--accent-color), transparent, var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
    filter: blur(8px);
}
.tilt-card:hover .card-glow-border { opacity: 0.5; }
.tilt-card:hover .card-inner {
    border-color: rgba(212,175,55,0.4);
    background: rgba(16,16,22,0.9);
}

.card-number {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.05;
    font-family: var(--font-sans);
    color: var(--accent-color);
    line-height: 1;
    transition: opacity var(--transition-smooth);
}
.tilt-card:hover .card-number { opacity: 0.15; }

.card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: linear-gradient(var(--accent-color), transparent);
    transition: height 0.5s ease;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.tilt-card:hover .card-accent { height: 100%; }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transform: translateZ(30px);
}
.card-inner h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.4;
    transform: translateZ(20px);
}
.card-inner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    transform: translateZ(10px);
}

/* ══════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════ */
.about-container {
    display: flex;
    gap: 5rem;
    padding: 4rem;
    border-radius: 16px;
    align-items: center;
}
.about-text { flex: 1.2; }
.about-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.about-text h3 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 2rem;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

.hud-list { list-style: none; }
.hud-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}
.hud-list li:hover { color: var(--text-primary); transform: translateX(5px); }
.hud-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1rem;
}

.about-image { flex: 0.8; display: flex; justify-content: center; position: relative; }

.image-placeholder {
    width: 320px; height: 420px;
    background: rgba(16,16,22,0.8);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--surface-border);
    overflow: hidden;
}
.image-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.image-placeholder:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.image-glitch {
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    mix-blend-mode: overlay;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}
.image-placeholder:hover .image-glitch {
    animation: glitchAnim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}
@keyframes glitchAnim {
    0% { opacity: 0; transform: translate(0); }
    20% { opacity: 0.2; transform: translate(-2px, 2px); }
    40% { opacity: 0.2; transform: translate(-2px, -2px); }
    60% { opacity: 0; transform: translate(2px, 2px); }
    80% { opacity: 0.2; transform: translate(2px, -2px); }
    100% { opacity: 0; transform: translate(0); }
}

/* Scan line effect on portrait */
.image-hud-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}
.scan-line {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    position: absolute;
    top: 0;
    animation: scanDown 3s linear infinite;
}
@keyframes scanDown {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

.hud-frame .corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--accent-color);
    border-style: solid;
    z-index: 5;
    transition: var(--transition-smooth);
}
.image-placeholder:hover .corner { width: 30px; height: 30px; }
.hud-frame .top-left { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hud-frame .top-right { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.hud-frame .bottom-left { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.hud-frame .bottom-right { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-content {
    display: flex;
    justify-content: center;
}
.contact-info {
    width: 100%;
    max-width: 900px;
    padding: 3rem;
    border-radius: 12px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}
.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.info-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}
.info-card:hover .info-icon-wrap {
    background: rgba(212,175,55,0.15);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.1);
}
.info-icon { font-size: 1.5rem; }
.info-label {
    display: block;
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.info-card p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.5;
}
.address-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.address-link:hover {
    color: var(--accent-color);
}

/* Live Status Indicator */
.info-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.status-dot {
    width: 10px; height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34,197,94,0.5);
}
@keyframes statusPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
    padding: 4rem 5%;
    background: rgba(4,4,6,0.95);
    border-top: 1px solid var(--surface-border);
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}
.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}
.footer-tagline {
    font-size: 0.8rem;
    color: var(--accent-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}
.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
    font-weight: 300;
}
.footer-disclaimer strong { color: var(--text-primary); }
.footer-bottom {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
        gap: 3rem;
    }
    .hero-content { max-width: 100%; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-title { font-size: 3.2rem; }
    .hud-circle-container { width: 350px; height: 350px; }

    .stats-grid { flex-wrap: wrap; gap: 2rem; justify-content: center; padding: 2rem; }
    .stat-divider { display: none; }
    .stat-item { width: 40%; }

    .metrics-bar { flex-direction: column; margin: 0 3%; }
    .metric-divider { width: 50px; height: 1px; }

    .about-container { flex-direction: column; padding: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
}

@media (max-width: 600px) {
    .section-padding { padding: 5rem 4% 3rem; }
    .hero-title { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .expertise-grid { grid-template-columns: 1fr; }
    .stat-item { width: 100%; }
    .disclaimer-card { margin: 1rem; padding: 2rem 1.5rem; }
    .disclaimer-title { font-size: 1.4rem; }
    .disclaimer-body { font-size: 0.85rem; }
}

/* ══════════════════════════════════════════
   CLIENT TRUST BAR — Infinite scroll logos
   ══════════════════════════════════════════ */
.trust-bar-section {
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 2;
}
.trust-bar-section .section-header {
    margin-bottom: 2.5rem;
}
.trust-bar {
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}
/* Fade edges */
.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}
.trust-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}
.trust-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.trust-track {
    display: flex;
    gap: 2.5rem;
    animation: trustScroll 30s linear infinite;
    width: max-content;
}

.trust-logo {
    flex-shrink: 0;
    padding: 1rem 2.5rem;
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.trust-logo::before {
    content: '▪';
    margin-right: 0.8rem;
    color: var(--accent-color);
    font-size: 0.6rem;
    vertical-align: middle;
}
.trust-logo:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.06);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

@keyframes trustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.trust-bar:hover .trust-track {
    animation-play-state: paused;
}

/* ══════════════════════════════════════════
   GOOGLE MAPS EMBED
   ══════════════════════════════════════════ */
.map-container {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    border-radius: 12px;
}
.map-frame-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.map-frame-wrapper iframe {
    display: block;
    width: 100%;
}
.map-overlay-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    z-index: 2;
}
.map-pin-icon {
    display: flex;
    align-items: center;
}

/* ══════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 16, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}
.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* ══════════════════════════════════════════
   DISCLAIMER MODAL — aglaw.in inspired
   ══════════════════════════════════════════ */

/* Lock the page behind the modal */
body.disclaimer-active {
    overflow: hidden;
}
body.disclaimer-active .navbar,
body.disclaimer-active main,
body.disclaimer-active footer,
body.disclaimer-active .ambient-orbs,
body.disclaimer-active .hud-particles,
body.disclaimer-active #hud-overlay,
body.disclaimer-active #hud-canvas {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

/* Smooth un-blur when modal dismissed */
.navbar, main, footer,
.ambient-orbs, .hud-particles,
#hud-overlay, #hud-canvas {
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.disclaimer-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.disclaimer-modal.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Dark frosted backdrop */
.disclaimer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 4, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* The card itself */
.disclaimer-card {
    position: relative;
    max-width: 640px;
    width: 90%;
    padding: 3rem 2.5rem;
    background: linear-gradient(
        165deg,
        rgba(18, 18, 26, 0.95) 0%,
        rgba(10, 10, 16, 0.98) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-align: center;

    /* Entrance animation */
    animation: modalEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* Gold glow border on top edge */
.disclaimer-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-color),
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Section icon */
.disclaimer-icon {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--accent-color);
    text-shadow: 0 0 30px var(--accent-glow);
    margin-bottom: 0.8rem;
    animation: pulse 4s ease-in-out infinite;
}

/* Title */
.disclaimer-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Gold divider */
.disclaimer-divider {
    width: 50px;
    height: 2px;
    margin: 0 auto 1.8rem;
    background: var(--accent-color);
    box-shadow: 0 0 12px var(--accent-glow);
    position: relative;
}
.disclaimer-divider::before,
.disclaimer-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}
.disclaimer-divider::before { left: -12px; }
.disclaimer-divider::after { right: -12px; }

/* Body text */
.disclaimer-body {
    text-align: left;
    margin-bottom: 2rem;
}
.disclaimer-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.2rem;
}
.disclaimer-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.disclaimer-body li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.9rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    font-weight: 300;
    transition: color 0.3s ease;
}
.disclaimer-body li:hover {
    color: var(--text-primary);
}
.disclaimer-body li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1rem;
    line-height: 1.65;
}

/* Proceed button */
.disclaimer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}
.disclaimer-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.25),
        inset 0 0 15px rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}
.disclaimer-btn-text {
    position: relative;
    z-index: 2;
}
.disclaimer-btn-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
.disclaimer-btn:hover .disclaimer-btn-arrow {
    transform: translateX(5px);
}

/* Shimmer sweep across button */
.disclaimer-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-20deg);
    z-index: 1;
}
.disclaimer-btn:hover .disclaimer-btn-shimmer {
    animation: shimmer 1s forwards;
}

