/* ============================================
   QUANTUM AGENCY — Premium Design System
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Colors */
    --black: #000000;
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #141414;
    --charcoal: #1a1a1a;
    --charcoal-light: #222222;
    --gray-dark: #2a2a2a;
    --gray-mid: #555555;
    --gray-light: #888888;
    --gray-lighter: #aaaaaa;
    --white: #f5f5f5;
    --white-pure: #ffffff;

    /* Gold / Champagne Accent */
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #A8884E;
    --gold-glow: rgba(201, 169, 110, 0.3);
    --gold-glow-soft: rgba(201, 169, 110, 0.12);
    --gold-glow-strong: rgba(201, 169, 110, 0.5);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(201, 169, 110, 0.2);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Sizing */
    --nav-height: 80px;
    --container-max: 1200px;
    --container-wide: 1400px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-med: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {

    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-sans);
    background-color: transparent;
    color: var(--white);
    line-height: 1.6;

    touch-action: pan-y;
    overscroll-behavior: auto;
    opacity: 0;
    transition: opacity 1s ease;
}

body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---- Utility ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hide-mobile {
    display: inline;
}

/* Global Background Image Wrapper */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Soft center gradient only behind the main hero text for readability. Edges are clear. */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}



/* ---- Scroll Reveal Animation (applied by JS) ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--container-wide);
    height: var(--nav-height);
    z-index: 1000;
    margin-top: env(safe-area-inset-top);
    border-radius: 16px;
    background-color: rgba(10, 10, 10, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.25s ease-in, opacity 0.25s ease-in, background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.nav-hidden {
    transform: translateX(-50%) translateY(calc(-100% - 24px));
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 169, 110, 0.15);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    text-decoration: none;
}

.brand-logo {
    display: block;
    height: 42px;
    /* Set height only */
    width: auto;
    /* Width auto for aspect ratio */
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.brand-text {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
}

@media (max-width: 768px) {
    .brand-logo {
        height: 36px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-lighter);
    padding: 4px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width var(--transition-med);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border-radius: 6px;
    transition: all var(--transition-fast);
    box-shadow: 0 0 20px var(--gold-glow-soft);
}

.nav-cta:hover {
    box-shadow: 0 0 30px var(--gold-glow);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--gray-lighter);
    transition: color var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.mobile-menu.open li:nth-child(1) .mobile-link {
    transition-delay: 0.1s;
}

.mobile-menu.open li:nth-child(2) .mobile-link {
    transition-delay: 0.15s;
}

.mobile-menu.open li:nth-child(3) .mobile-link {
    transition-delay: 0.2s;
}

.mobile-menu.open li:nth-child(4) .mobile-link {
    transition-delay: 0.25s;
}

.mobile-menu.open li:nth-child(5) .mobile-link {
    transition-delay: 0.3s;
}

.mobile-menu.open li:nth-child(6) .mobile-link {
    transition-delay: 0.35s;
}

.mobile-link:hover {
    color: var(--gold-light);
}

.mobile-cta {
    color: var(--gold) !important;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Star field */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

}

.star {
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: twinkle var(--duration) ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: var(--min-opacity, 0.2);
        transform: scale(1);
    }

    100% {
        opacity: var(--max-opacity, 0.8);
        transform: scale(1.3);
    }
}

/* Constellation lines */
.hero-constellation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    pointer-events: none;
}

.constellation-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
    transform-origin: left center;
    animation: constellation-fade 6s ease-in-out infinite alternate;
}

@keyframes constellation-fade {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.8;
    }
}

.constellation-node {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold-glow);
    animation: node-pulse 3s ease-in-out infinite alternate;
}

@keyframes node-pulse {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 4px var(--gold-glow-soft);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--gold-glow);
    }
}

/* Earth image overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    /* Removed heavy black gradients to reveal background */
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 0 24px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 40px;
    margin-bottom: 40px;
    background: rgba(201, 169, 110, 0.04);
    animation: fadeInDown 1s var(--ease-out-expo) 0.2s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    animation: fadeInDown 1s var(--ease-out-expo) 0.4s both;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 300;
    color: var(--gray-lighter);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 1s var(--ease-out-expo) 0.6s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInDown 1s var(--ease-out-expo) 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--gold-glow-soft), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 50px var(--gold-glow), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--gray-lighter);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    border-color: var(--gold-glow);
    color: var(--gold-light);
    background: rgba(201, 169, 110, 0.04);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInDown 1s var(--ease-out-expo) 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0.3;
        height: 20px;
    }
}

.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-mid);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    position: relative;
    padding: 0;
    margin-top: -60px;
    z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stats-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 64px;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
}

.stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}

.stat-icon svg {
    width: 100%;

}

.stat-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.2), transparent);
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 140px 0 120px;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.service-card {
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    background: radial-gradient(ellipse at 50% 0%, var(--gold-glow-soft) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-med);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--gold-glow-soft);
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
}

.card-icon svg {
    width: 100%;

}

.card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
}

.card-description {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.7;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    margin-top: 8px;
}

.card-link:hover {
    color: var(--gold-light);
    gap: 12px;
}


/* ============================================
   TRUST / BRANDS SECTION
   ============================================ */
.trust-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: transparent;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-logo-item {
    transition: all var(--transition-fast);
    cursor: default;
}

.trust-logo-item:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.trust-logo-item svg {
    width: 120px;
    height: 40px;
    color: var(--white);
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 140px 0 120px;
    background: transparent;
}

.work-section {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
}

.work-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 15% 20%, rgba(201, 169, 110, 0.10), transparent 60%),
        radial-gradient(900px 520px at 85% 30%, rgba(232, 213, 163, 0.06), transparent 62%),
        radial-gradient(800px 520px at 40% 90%, rgba(201, 169, 110, 0.06), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.35));
    opacity: 0.9;
    filter: saturate(120%) contrast(105%);
    pointer-events: none;
}

.work-bg::before {
    content: "";
    position: absolute;
    inset: -40%;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.08;
    transform: rotate(8deg);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.55) 70%);
    pointer-events: none;
}

.portfolio {
    position: relative;
    margin-top: 34px;
}

.portfolio-slider {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 22px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.portfolio-viewport {
    position: relative;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    min-height: 520px;
}

.portfolio-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.9s ease, transform 1.2s cubic-bezier(0.2, 0.9, 0.2, 1);
    pointer-events: none;
}

.portfolio-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.portfolio-card {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    background: transparent;
}

.portfolio-media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: none;
    background: transparent;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate3d(0, var(--work-parallax, 0px), 0) scale(var(--work-zoom, 1.05));
    transition: transform 1.25s cubic-bezier(0.2, 0.9, 0.2, 1);
    filter: none;
}

.portfolio-slide.is-active .portfolio-image {
    --work-zoom: 1.02;
}

.portfolio-sheen {
    display: none;
}

.portfolio-meta,
.portfolio-name,
.portfolio-desc {
    display: none;
}

.portfolio-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 110, 0.26);
    background: rgba(0, 0, 0, 0.35);
    color: var(--gold-light);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.portfolio-arrow:hover,
.portfolio-arrow:focus-visible {
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.25);
    transform: translateY(-50%) scale(1.04);
}

.portfolio-arrow svg {
    width: 22px;
    height: 22px;
}

.portfolio-prev {
    left: 12px;
}

.portfolio-next {
    right: 12px;
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.portfolio-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 110, 0.55);
    background: rgba(201, 169, 110, 0.10);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-dot:hover,
.portfolio-dot:focus-visible {
    transform: scale(1.15);
    box-shadow: 0 0 14px rgba(201, 169, 110, 0.28);
}

.portfolio-dot.is-active {
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.9), rgba(232, 213, 163, 0.9));
    box-shadow: 0 0 18px rgba(201, 169, 110, 0.35);
}

@media (max-width: 768px) {
    .portfolio-viewport {
        min-height: 420px;
    }

    .portfolio-arrow {
        width: 42px;
        height: 42px;
    }

    .portfolio-prev {
        left: 10px;
    }

    .portfolio-next {
        right: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-slide,
    .portfolio-image,
    .portfolio-arrow,
    .portfolio-dot {
        transition: none !important;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-info .section-label {
    text-align: left;
}

.contact-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--gray-lighter);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #25D366;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
    color: var(--gold-light);
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.contact-form {
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    outline: none;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-mid);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.04);
    box-shadow: 0 0 20px var(--gold-glow-soft);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 16px 32px;
    margin-top: 8px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Slightly more visible border */
    background: transparent;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links-group h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-mid);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-mid);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hide-mobile {
        display: none;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .stats-panel {
        flex-direction: column;
        padding: 36px 28px;
        gap: 28px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .trust-logos {
        gap: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-content {
        padding-top: calc(var(--nav-height) + 20px);
    }

    .contact-info .section-title,
    .contact-info .section-label {
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 100%;
        overflow-x: hidden;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin: 0 auto;
    }
}


/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.15), inset 0 0 20px rgba(201, 169, 110, 0.1);
}

/* Internal glass circle effect */
.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 4px;
    /* inner spacing */
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* very faint ring */
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
}

.feature-icon-wrapper svg {
    width: 40px;
    height: 40px;
    z-index: 1;
    /* keep above pseudo element */
}

.feature-title {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .about-features {
        flex-direction: column;
        gap: 30px;
    }
}

.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 0;
}

.about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

}

.about-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    animation: float-particle var(--dur, 8s) ease-in-out infinite;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(calc(var(--dy, -40px))) translateX(calc(var(--dx, 20px)));
        opacity: 0.4;
    }

    80% {
        opacity: 0.2;
    }
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    /* Removed heavy black gradients to reveal the true space background clearly */
    background: transparent;
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-wide);
}

/* ---- Dashboard Wrapper ---- */
.about-dashboard-wrapper {
    perspective: 1200px;
}

.about-dashboard {
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: rotateY(8deg) rotateX(2deg);
    transition: transform 0.6s var(--ease-out-expo);
}

.about-dashboard:hover {
    transform: rotateY(3deg) rotateX(1deg);
}

/* ---- Dashboard Top Bar ---- */
.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.3);
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-logo span {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
}

.dash-logo small {
    font-size: 7px;
    letter-spacing: 2px;
    color: var(--gray-mid);
    margin-left: -2px;
}

.dash-search {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 11px;
    color: var(--gray-mid);
}

.dash-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-topbar-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dash-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-user-label {
    font-size: 10px;
    color: var(--gray-lighter);
}

/* ---- Dashboard Body ---- */
.dash-body {
    display: flex;
    min-height: 340px;
}

/* Sidebar */
.dash-sidebar {
    width: 110px;
    flex-shrink: 0;
    padding: 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.2);
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 10px;
    color: var(--gray-light);
    cursor: default;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.dash-nav-item.active {
    background: rgba(201, 169, 110, 0.06);
    color: var(--gold-light);
    border-left-color: var(--gold);
}

.dash-nav-item span {
    white-space: nowrap;
}

/* Main area */
.dash-main {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-heading {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

/* Metrics Row */
.dash-metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 8px;
}

.dash-metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.dash-metric-label {
    font-size: 9px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.dash-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}

.dash-dot.gold {
    background: var(--gold);
}

.dash-dot.blue {
    background: #4a7fb5;
}

.dash-metric-value {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.dash-metric-suffix {
    font-size: 12px;
    color: var(--gold);
    font-weight: 400;
}

.map-card {
    padding: 6px;
}

.dash-world-map {
    width: 100%;

}

.world-map-svg {
    width: 100%;

}

/* Chart Row */
.dash-chart-row {
    display: flex;
    gap: 8px;
}

.dash-chart-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 10px;
    flex: 1;
}

.dash-chart-card.wide {
    flex: 1;
}

.dash-line-chart {
    width: 100%;
    height: 70px;
}

.dash-small-label {
    font-size: 9px;
    color: var(--gray-light);
    margin-bottom: 6px;
}

/* Bottom Row */
.dash-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.dash-donut-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-donut {
    width: 50px;
    height: 50px;
}

.dash-donut-labels {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-legend {
    font-size: 8px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dash-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 55px;
    padding-top: 8px;
}

.dash-bar {
    flex: 1;
    background: rgba(74, 127, 181, 0.4);
    border-radius: 2px 2px 0 0;
    min-height: 4px;
    transition: height 0.4s ease;
}

.dash-bar.gold {
    background: rgba(201, 169, 110, 0.6);
}

.dash-bottom-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;

    padding: 4px 0;
}

.dash-bottom-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-bottom-stat-value {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.dash-bottom-stat-label {
    font-size: 8px;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}

/* ---- About Content (Right Side) ---- */
.about-content {
    padding-left: 20px;
}

.about-content .section-label {
    text-align: left;
}

.about-heading {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.about-description {
    font-size: 16px;
    font-weight: 300;
    color: var(--gray-lighter);
    line-height: 1.8;
    max-width: 360px;
    margin-bottom: 40px;
}

.about-stat-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    max-width: 340px;
}

.about-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 169, 110, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.about-stat-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-stat-number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.about-stat-label {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-lighter);
}


/* ---- About Responsive ---- */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-dashboard {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-dashboard:hover {
        transform: none;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-content .section-label {
        text-align: center;
    }

    .about-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-stat-cards {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 100px 0 80px;
    }

    .dash-sidebar {
        display: none;
    }

    .dash-topbar-right {
        display: none;
    }

    .dash-metrics-row {
        grid-template-columns: 1fr 1fr;
    }

    .map-card {
        grid-column: 1 / -1;
    }

    .dash-bottom-row {
        grid-template-columns: 1fr 1fr;
    }

    .dash-bottom-row> :last-child {
        grid-column: 1 / -1;
    }

    .about-stat-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dash-metrics-row {
        grid-template-columns: 1fr;
    }

    .dash-bottom-row {
        grid-template-columns: 1fr;
    }
}

\n
/* ============================================
   GLOBAL RESPONSIVE OVERRIDES & DESIGN SYSTEM REFINEMENTS
   ============================================ */

/* Base Resets for Consistency */
body {

    width: 100vw;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Base Image cropping rules */
img,
svg {
    max-width: 100%;
    height: auto;
}

/* ---- MOBILE FIRST & SMARTPHONE (375px - 768px) ---- */
@media (max-width: 768px) {

    /* Navbar Minimal */
    .navbar {
        height: 70px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-logo svg {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-logo .logo-icon {
        height: 32px;
    }

    .nav-cta,
    .nav-links {
        display: none !important;
        /* Managed by hamburger */
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Hero Vertically Stacked & Center Aligned */
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
        text-align: center;
        align-items: flex-start;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 42px);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: 16px;
    }

    /* Single Column Grid & Spacing */
    .services-grid,
    .about-features,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .section-header,
    .about-content {
        text-align: center;
        align-items: center;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .contact-info .section-label,
    .contact-info .section-title {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }
}

/* ---- LAPTOP (1024px - 1440px) ---- */
@media (min-width: 769px) and (max-width: 1439px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 5vw;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-feature-item {
        flex-direction: row;
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* ---- DESKTOP (1440px+) ---- */
@media (min-width: 1440px) {
    .container {
        max-width: var(--container-wide);
        padding: 0 80px;
    }

    .hero {
        padding-top: 200px;
    }

    .hero-title {
        font-size: 72px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 20px;
        max-width: 600px;
    }

    .hero-buttons .btn {
        padding: 20px 48px;
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .service-card {
        padding: 48px 40px;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 120px;
    }

    .about-features {
        flex-direction: column;
        gap: 60px;
    }

    .about-feature-item {
        flex-direction: row;
        gap: 32px;
        text-align: left;
        transform: translateZ(0);
        /* Hardware accel */
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .about-feature-item:hover {
        transform: translateX(10px);
    }

    .feature-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .feature-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 20px;
    }
}

/* Ensure global horizontal scroll is disabled */
/* Removed restricted html/body size */
/* SCROLL FIXES */
html {
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: none !important;
    /* Helps with bounce locking */
}

body {
    overflow-x: hidden !important;
    /* Only on body gently */
    touch-action: pan-y pinch-zoom !important;
    overscroll-behavior-y: none !important;
    position: relative !important;
}

.navbar.scrolled {
    /* Make sure navbar doesn't block touch unexpectedly */
    touch-action: none !important;
}

/* RESPONSIVE NAV OFFSETS */
@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: calc(100% - 32px);
    }
}

@media (min-width: 1024px) {
    .navbar {
        top: 24px;
    }
}

/* ============================================
   STATIC, PREMIUM OVERRIDES (NO MOTION, AGENCY TIER)
   ============================================ */

/* 1. Global Immobilization */
*,
*::before,
*::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
}

html {
    background-color: #050505 !important;
}

body {
    opacity: 1 !important;
    /* Instantly visible */
    background-color: transparent !important;
}

/* 2. Global Static Background Control */
.bg-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: -10 !important;
}

.bg-wrapper img {
    /* Slightly darken and desaturate the background to remove distraction */
    width: 100vw !important;
    height: 100dvh !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: brightness(0.6) contrast(1.1) saturate(0.8) !important;
}

.global-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: transparent !important;
    z-index: -9 !important;
    opacity: 1 !important;
}

/* 3. Immobile Floating Navbar */
.navbar {
    position: fixed !important;
    top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    height: 56px !important;
    z-index: 1000 !important;
    margin-top: env(safe-area-inset-top) !important;
    border-radius: 6px !important;
    background-color: rgba(12, 12, 12, 0.9) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    display: flex !important;
    align-items: center !important;
}

.brand-logo {
    height: 42px !important;
    width: auto !important;
    object-fit: contain !important;
}

.navbar.hidden-static {
    display: none !important;
}

.nav-container {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 16px !important;
        width: calc(100% - 32px) !important;
        height: 52px !important;
    }
}

.nav-links {
    gap: 40px !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.55) !important;
    letter-spacing: 1px !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link.active {
    color: var(--gold-light) !important;
    font-weight: 500 !important;
}

.nav-link::after {
    display: none !important;
    /* Remove line under link */
}

/* Static Mobile Menu */
.mobile-menu {
    transform: none !important;
    opacity: 1 !important;
    display: none;
    /* Controlled by JS strictly */
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100dvh !important;
}

.mobile-link {
    transform: none !important;
    opacity: 1 !important;
}

/* 4. Kill Reveal Hidden States */
.reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* 5. Typography Hierarchy & Readability */
.hero {
    align-items: center !important;
    padding-top: 56px !important;
    /* Offset for nav precision */
}

.hero-badge {
    opacity: 0.65 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin: 0 auto 36px !important;
    /* Visual detachment from header */
}

.hero-title {
    font-size: clamp(32px, 8vw, 84px) !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    font-weight: 400 !important;
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 22px) !important;
    color: var(--gray-lighter) !important;
    line-height: 1.6 !important;
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 6. Solid Premium CTA Buttons (No motion, no glowing hovers) */
.btn-primary,
.nav-cta {
    background: #111 !important;
    border: 1px solid rgba(201, 169, 110, 0.3) !important;
    box-shadow: none !important;
    color: var(--white) !important;
    border-radius: 4px !important;
}

.nav-cta {
    padding: 8px 20px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
}

.btn-primary:hover,
.nav-cta:hover {
    background: #1a1a1a !important;
    border-color: rgba(201, 169, 110, 0.6) !important;
}

/* Ensure Get a Quote arrow doesn't wiggle */
.btn-primary svg,
.btn-primary:hover svg {
    transform: none !important;
}

.btn-glow {
    display: none !important;
    /* No glowing background element */
}

/* Remove hover lifts from cards */
.service-card:hover,
.about-feature-item:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: rgba(201, 169, 110, 0.2) !important;
}

.card-glow {
    display: none !important;
}

/* Remove floating about particles */
.about-particles {
    display: none !important;
}

/* Fix Hero Background centering */
.hero-content {
    margin: 0 auto !important;
    z-index: 2 !important;
    position: relative !important;
}

.hero-stars,
.hero-constellation {
    display: none !important;
    /* Keep it clean */
}

/* Mobile Fullscreen Hero Fix */
@media (max-width: 768px) {
    .bg-wrapper {
        display: block !important;
    }

    .hero {
        min-height: 100vh !important;
        min-height: 100svh !important;
        width: 100% !important;
        background-color: transparent !important;
        background-image: none !important;
    }

    img#hero-bg {
        /* On mobile we want the image to cover the full viewport */
        object-fit: cover !important;
        object-position: center top !important;
    }
}
