/* ==========================================================================
   EAST WEST INSURANCE ARCHITECTURAL LUXURY DESIGN SYSTEM
   ========================================================================== */

/* 1. ROOT DESIGN SYSTEM & VARIABLES */
:root {
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Luxurious Golden Hour & Slate Palette */
    --bg-obsidian: #06080d;
    --bg-card: rgba(15, 20, 32, 0.65);
    --bg-card-hover: rgba(30, 36, 50, 0.85);
    
    /* Warm Architectural Glow Borders */
    --border-glass: rgba(245, 158, 11, 0.08);
    --border-glass-bright: rgba(245, 158, 11, 0.25);
    --border-glass-white: rgba(255, 255, 255, 0.06);
    
    /* Core Gradients & Luxury Metals */
    --color-bronze: #b45309;
    --color-gold: #f59e0b;
    --color-champagne: #fde047;
    --color-copper: #d97706;
    --color-navy: #1e3a8a;
    
    /* Golden Hour & Sunset Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    --grad-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-copper) 100%);
    --grad-dark: linear-gradient(180deg, #0c0f18 0%, #06080d 100%);
    --grad-text: linear-gradient(90deg, #ffffff 0%, #fef08a 50%, var(--color-gold) 100%);
    --grad-bronze-shine: linear-gradient(90deg, rgba(245,158,11,0) 0%, rgba(245,158,11,0.2) 50%, rgba(245,158,11,0) 100%);

    /* Typography Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Spacing & Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --transition-glow: box-shadow 0.3s ease, border-color 0.3s ease;
    
    /* Z-Indexes */
    --z-canvas: -2;
    --z-glow-spots: -1;
    --z-base: 1;
    --z-navbar: 100;
    --z-modal: 200;
    --z-cursor: 999;
}

/* 2. BASE GLOBAL RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide system cursor for luxury custom follow cursor */
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button, input, select, textarea {
    font-family: inherit;
    cursor: none;
}

/* Custom Scrollbar in Warm Gold */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #04060a;
}
::-webkit-scrollbar-thumb {
    background: #1c2230;
    border-radius: 4px;
    border: 2px solid #04060a;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Base Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 3. PREMIUM GLASSMORPHISM SYSTEM */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass-white);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-bright);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.05);
}

/* Golden Background Glow Spots (Golden Sunset Hour) */
.bg-glow-spot {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    filter: blur(12vw);
    opacity: 0.12;
    z-index: var(--z-glow-spots);
    pointer-events: none;
}

.spot-1 {
    top: -10vw;
    right: -5vw;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
}

.spot-2 {
    top: 50vh;
    left: -10vw;
    background: radial-gradient(circle, var(--color-copper) 0%, transparent 70%);
}

.spot-3 {
    bottom: -15vw;
    right: 5vw;
    background: radial-gradient(circle, var(--color-bronze) 0%, transparent 70%);
}

/* 4. CUSTOM CYBER CURSOR & STREAKS */
#custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: var(--z-cursor);
    transition: width 0.15s ease, height 0.15s ease, background-color 0.15s ease;
}

#cursor-glow {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: calc(var(--z-cursor) - 1);
    transition: transform 0.08s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

/* Cursor Hover states */
body.is-hovering #custom-cursor {
    width: 4px;
    height: 4px;
    background-color: #ffffff;
}

body.is-hovering #cursor-glow {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.03);
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-canvas);
    pointer-events: none;
}

/* 5. DYNAMIC PRESET BUTTON SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 99px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 4px 25px rgba(217, 119, 6, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4), 0 0 15px rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.btn:hover .btn-shine {
    transform: scale(1);
}

.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 99px;
    background: rgba(245, 158, 11, 0.06);
    border: 1.5px solid rgba(245, 158, 11, 0.12);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

/* 6. TYPOGRAPHY & GENERAL SECTIONS */
.gradient-text {
    background: linear-gradient(90deg, #ffffff 10%, var(--color-gold) 50%, var(--color-bronze) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: flowGrad 6s linear infinite;
}

@keyframes flowGrad {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.align-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 7. NAVIGATION BAR STYLING */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-navbar);
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.sticky {
    padding: 0.75rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2rem;
    background: rgba(8, 12, 20, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    max-width: 1200px;
    margin: 0 auto;
    width: 92%;
    transition: var(--transition-smooth);
}

.header.sticky .navbar {
    background: rgba(8, 12, 20, 0.8);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-color: rgba(245, 158, 11, 0.1);
}

.navbar-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.logo-highlight {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: #ffffff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active-nav::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item.active-nav {
    color: #ffffff;
}

.btn-nav-cta {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    outline: none;
    padding: 4px;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* 8. LUXURIOUS HERO SECTION (ARCHITECTURAL GLASS) */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem 0 4rem;
    background: radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 1.5rem;
}

.hero-subheading {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

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

.hero-stat-card {
    padding: 1.2rem 1.8rem;
    flex: 1;
    min-width: 140px;
    border-color: rgba(255,255,255,0.04);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-suffix {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* Panoramic Window Frame Perspective */
.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.window-frame-3d {
    width: 100%;
    max-width: 440px;
    height: 460px;
    border-radius: 30px;
    border: 2px solid var(--border-glass-bright);
    background: rgba(15, 20, 32, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 55px rgba(0,0,0,0.6), 
        0 0 35px rgba(245, 158, 11, 0.1),
        inset 0 0 40px rgba(0,0,0,0.5);
    perspective: 1000px;
    transition: var(--transition-smooth);
}

.window-lobby-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background-image: url('../assets/hero_lobby.png');
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out; /* Parallax effect */
    z-index: 1;
}

.window-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.03) 100%);
    box-shadow: inset 0 0 15px rgba(255,255,255,0.05);
    z-index: 3;
    pointer-events: none;
}

.window-panes-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    z-index: 2;
    pointer-events: none;
}

.window-pane-divider {
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* Orbiting / Floating Glass Cards */
.orbiting-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    border-radius: 99px;
    z-index: 10;
    pointer-events: none;
    border-color: var(--border-glass-bright);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: rgba(15, 20, 32, 0.85);
}

.o-card-1 {
    top: 12%;
    left: -18%;
    animation: orbit1 8s ease-in-out infinite;
}

.o-card-2 {
    bottom: 15%;
    right: -18%;
    animation: orbit2 9s ease-in-out infinite;
}

.o-card-3 {
    top: 50%;
    left: 80%;
    animation: orbit3 10s ease-in-out infinite;
}

.o-card-icon {
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.o-card-text {
    line-height: 1.1;
}

.o-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.o-sub {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

@keyframes orbit1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -10px) rotate(1deg); }
}

@keyframes orbit2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, 15px) rotate(-1deg); }
}

@keyframes orbit3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -15px) rotate(1deg); }
}

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

.scroll-indicator-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* 9. ABOUT SECTION STYLING (ARCHITECTURAL GLASS) */
.about-section {
    padding: 8rem 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 5rem;
    align-items: center;
}

/* Architectural Pillar showcase visual */
.about-visual {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    border-color: rgba(245, 158, 11, 0.1);
}

.about-visual-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
    filter: blur(25px);
}

.arch-pillar-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 3rem;
}

.arch-pillar {
    width: 24%;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.15) 0%, rgba(15, 20, 32, 0.8) 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px 12px 0 0;
    transition: var(--transition-smooth);
    position: relative;
}

.arch-pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-gold);
    box-shadow: 0 0 10px var(--color-gold);
}

.pillar-1 { height: 40%; animation: pillarPulse 6s infinite 0.2s alternate; }
.pillar-2 { height: 75%; animation: pillarPulse 6s infinite 1s alternate; }
.pillar-3 { height: 55%; animation: pillarPulse 6s infinite 0.5s alternate; }
.pillar-4 { height: 90%; animation: pillarPulse 6s infinite 1.5s alternate; }

@keyframes pillarPulse {
    0% { transform: scaleY(1); opacity: 0.8; }
    100% { transform: scaleY(1.05); opacity: 1; border-color: var(--border-glass-bright); }
}

.about-vision-box {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.8rem 2.2rem;
    background: rgba(8, 12, 20, 0.9);
    border-color: rgba(245, 158, 11, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.vision-quote {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 0.1;
    display: block;
    margin-bottom: -0.5rem;
}

.about-vision-box h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.about-vision-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sub-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.about-para {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Timeline Components (Luxury bronze lines) */
.timeline-container {
    position: relative;
    padding-left: 2rem;
    margin-top: 2.5rem;
}

.timeline-line {
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-gold) 0%, rgba(180, 83, 9, 0.2) 100%);
}

.timeline-step {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bg-obsidian);
    border: 2px solid var(--color-gold);
    transform: translateX(1px);
    transition: var(--transition-fast);
}

.timeline-step:hover .timeline-dot {
    background-color: var(--color-champagne);
    box-shadow: 0 0 10px var(--color-gold);
}

.timeline-content {
    line-height: 1.4;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 10. SERVICES SECTION STYLING (IMAGE ZOOM REFLECTIONS) */
.services-section {
    padding: 8rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Card Visual Layout */
.service-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card Visual Background (Motor, Travel, Property zoom layers) */
.card-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-card:hover .card-img-bg {
    opacity: 0.22;
    transform: scale(1.1);
}

/* Spotlight Hover Effect Mask */
.card-glow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(245, 158, 11, 0.06), transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(245, 158, 11, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 3;
}

/* Color Tokens for service categories (Luxury Gold and Bronze shades) */
.motor-icon-color { color: #f59e0b; }
.health-icon-color { color: #e2e8f0; }
.travel-icon-color { color: #d97706; }
.fire-icon-color { color: #f43f5e; }
.marine-icon-color { color: #fbbf24; }
.property-icon-color { color: #f59e0b; }
.business-icon-color { color: #c2410c; }
.engineering-icon-color { color: #f97316; }

.service-card:hover .service-icon-wrapper {
    background: var(--bg-obsidian);
    transform: scale(1.1) rotate(5deg);
    border-color: currentColor;
    box-shadow: 0 0 15px currentColor;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 3;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    flex-grow: 1;
    position: relative;
    z-index: 3;
}

.service-bullets {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 3;
}

.service-bullets li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-bullets li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: bold;
}

.btn-card-action {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
    z-index: 3;
}

.btn-card-action:hover {
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

/* 11. WHY CHOOSE US STYLING */
.why-us-section {
    padding: 8rem 0;
    position: relative;
    background: radial-gradient(circle at 10% 50%, rgba(217, 119, 6, 0.04) 0%, transparent 50%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-color: rgba(255,255,255,0.03);
}

.benefit-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.benefit-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.benefit-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Dynamic Portfolio Dashboard console (Warm bronze style) */
.operations-dashboard-wrapper {
    display: flex;
    justify-content: center;
}

.dashboard-widget {
    width: 100%;
    max-width: 480px;
    border-color: var(--border-glass-bright);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.db-header {
    background: rgba(6, 8, 13, 0.9);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass-white);
}

.db-controls {
    display: flex;
    gap: 6px;
}

.db-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background-color: var(--color-bronze); }
.dot-yellow { background-color: var(--color-gold); }
.dot-green { background-color: #fde047; }

.db-title {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.db-badge {
    font-size: 0.6rem;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.12);
    color: var(--color-gold);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.db-screen {
    padding: 1.5rem;
}

.db-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-beacon {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold);
}

.status-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.sys-load {
    font-size: 0.65rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.progress-track {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.03);
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: simulatedLoad 4s infinite alternate;
}

@keyframes simulatedLoad {
    0% { width: 20%; }
    100% { width: 75%; }
}

.db-visual-chart {
    height: 120px;
    background: rgba(4, 6, 10, 0.6);
    border-radius: 8px;
    border: 1px solid var(--border-glass-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.chart-bars-container {
    display: flex;
    align-items: flex-end;
    gap: 1.2rem;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    height: 80%;
    justify-content: flex-end;
}

.bar-fill {
    width: 8px;
    background: linear-gradient(180deg, var(--color-gold) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.bar-lbl {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.chart-radar-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    pointer-events: none;
}

.radar-ping {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    margin: 0 auto 0.4rem;
}

.chart-desc-txt {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.db-data-nodes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.db-node {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    padding-bottom: 0.3rem;
}

.node-lbl {
    color: var(--text-secondary);
}

.node-val {
    font-weight: 700;
}

.text-blue { color: var(--color-gold); }
.text-green { color: #fde047; }
.text-amber { color: var(--color-copper); }

.db-actions-console .btn {
    width: 100%;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

/* 12. CLAIMS INTERACTIVE TIMELINE STYLING */
.claims-section {
    padding: 8rem 0;
    position: relative;
}

.claims-interactive-pipeline {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.pipeline-steps-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
}

.glowing-pipeline-track {
    position: absolute;
    left: 6px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: rgba(255,255,255,0.03);
}

.glowing-pipeline-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    box-shadow: 0 0 10px var(--color-gold);
    transition: height 0.5s ease;
}

.pipeline-step-btn {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: none;
    transition: var(--transition-smooth);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1.5px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    position: absolute;
    left: -2rem;
    transform: translateX(-14px);
    z-index: 5;
    transition: var(--transition-fast);
}

.step-btn-info {
    line-height: 1.3;
}

.step-btn-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.step-btn-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pipeline active states */
.pipeline-step-btn:hover {
    background: rgba(255,255,255,0.02);
}

.pipeline-step-btn.active-step {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.15);
}

.pipeline-step-btn.active-step .step-circle {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000000;
    box-shadow: 0 0 12px var(--color-gold);
}

.pipeline-step-btn.active-step h4 {
    color: #ffffff;
}

/* Interactive Display Panel Showcase */
.pipeline-display-panel {
    min-height: 380px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    position: relative;
    border-color: rgba(255,255,255,0.04);
}

.panel-glow-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    filter: blur(20px);
}

.display-panel-inner {
    width: 100%;
}

.panel-header-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.panel-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.panel-infographics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-block {
    flex: 1;
    padding: 1rem 1.5rem;
    border-color: rgba(255,255,255,0.03);
}

.info-metric {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.info-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-status-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    text-transform: uppercase;
}

/* 13. TESTIMONIALS SECTION CAROUSEL */
.testimonials-section {
    padding: 8rem 0;
    position: relative;
    background: radial-gradient(circle at 90% 30%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
}

.carousel-outer-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-track-viewport {
    flex-grow: 1;
    overflow: hidden;
    padding: 1rem;
}

.carousel-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: calc(50% - 1.25rem);
    flex-shrink: 0;
    padding: 3rem;
    position: relative;
    border-color: rgba(255,255,255,0.03);
}

.quote-symbol {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.1;
    color: rgba(245, 158, 11, 0.15);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
}

.avatar-fallback {
    font-size: 0.85rem;
    font-weight: 700;
}

.border-blue { border-color: var(--color-gold); }
.border-purple { border-color: var(--color-copper); }
.border-amber { border-color: #fde047; }

.client-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.client-details p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Control Buttons styling */
.carousel-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    outline: none;
}

.carousel-control:hover {
    border-color: var(--color-gold);
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

.carousel-dots-nav {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    cursor: none;
    transition: var(--transition-fast);
}

.carousel-dot.active-dot {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* 14. PARTNERS MARQUEE SECTION STYLING */
.partners-section {
    padding: 4rem 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    background: rgba(4, 6, 10, 0.4);
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
    margin-bottom: 3.5rem;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marqueeAnimation 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.marquee-item:hover {
    opacity: 1;
    color: #ffffff;
}

.partner-icon {
    font-size: 1.3rem;
    color: var(--color-gold);
}

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

/* Badges Layout */
.compliance-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.badge-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    align-items: center;
    border-color: rgba(255,255,255,0.02);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-info h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.badge-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* 15. FUTURISTIC CONTACT FORM STYLING */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
    border-color: var(--border-glass-bright);
}

.contact-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

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

/* Floating Input System */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(4, 6, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.input-group textarea {
    resize: none;
}

.input-group label {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group textarea ~ label {
    top: 1.2rem;
    transform: translateY(0);
}

/* Active floating transitions */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--color-gold);
    background: rgba(4, 6, 10, 0.8);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: -0.4rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: var(--color-gold);
    background: #0d101a;
    padding: 0 0.4rem;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.65rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-checkbox {
    margin-bottom: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    background: rgba(4, 6, 10, 0.5);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '✓';
    color: #000000;
    font-size: 0.65rem;
    font-weight: bold;
}

.btn-full-width {
    width: 100%;
}

/* Success Toast layout */
.form-success-toast {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 8, 13, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 5;
}

.form-success-toast.toast-active {
    opacity: 1;
    pointer-events: auto;
}

.toast-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.form-success-toast h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-success-toast p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Info Column styling */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    align-items: center;
    border-color: rgba(255,255,255,0.02);
}

.info-card-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.info-card-details h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.info-card-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Luxury Map Placeholder (Gold Radar coords) */
.radar-map-placeholder {
    height: 200px;
    border-color: rgba(245, 158, 11, 0.15);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(10px);
}

.radar-map-center {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-gold);
    z-index: 2;
}

.radar-coordinate-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, transparent 30%, rgba(255,255,255,0.01) 31%, rgba(255,255,255,0.01) 32%, transparent 33%),
        radial-gradient(circle at center, transparent 60%, rgba(255,255,255,0.01) 61%, rgba(255,255,255,0.01) 62%, transparent 63%),
        linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 20px 20px;
}

.radar-scanner {
    position: absolute;
    width: 250px;
    height: 250px;
    background: conic-gradient(from 0deg at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 30%);
    border-radius: 50%;
    animation: radarScan 4s linear infinite;
    pointer-events: none;
}

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

.map-coordinate-badge {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--color-gold);
    background: rgba(4, 6, 10, 0.8);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    letter-spacing: 0.5px;
}

/* 16. LUXURIOUS FOOTER STYLING */
.footer {
    padding: 6rem 0 3rem;
    position: relative;
    background: #030406;
}

.footer-separator-glow {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-block .logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.brand-pitch {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.social-icon-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.social-icon-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.newsletter-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.newsletter-input-group {
    display: flex;
    background: rgba(4, 6, 10, 0.5);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.2rem;
    position: relative;
}

.newsletter-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.6rem 1rem;
    color: #ffffff;
    font-size: 0.8rem;
}

.btn-newsletter {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.newsletter-toast {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 0.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-toast.toast-active {
    opacity: 1;
}

.footer-legal-bar {
    border-top: 1px solid rgba(255,255,255,0.02);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-txt {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.legal-links a:hover {
    color: #ffffff;
}

.bar-separator {
    color: rgba(255,255,255,0.02);
}

/* 17. INTERACTIVE QUOTE MODAL SYSTEM */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 10, 0.8);
    backdrop-filter: blur(12px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.quote-modal {
    width: 90%;
    max-width: 900px;
    padding: 3.5rem;
    position: relative;
    border-color: var(--border-glass-bright);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2.2rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    outline: none;
    cursor: none;
    line-height: 0.5;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

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

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-body-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
}

.calc-group {
    margin-bottom: 1.8rem;
}

.calc-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.6rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-slider-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
}

.calc-select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(4, 6, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom Sliders styling */
.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.03);
    height: 4px;
    border-radius: 2px;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
    cursor: none;
    transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
    background-color: var(--color-champagne);
    transform: scale(1.2);
}

/* Modifiers checkboxes */
.modifiers-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modifier-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: none;
}

.modifier-checkbox input {
    display: none;
}

.modifier-box {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    background: rgba(4, 6, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modifier-checkbox input:checked ~ .modifier-box {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.modifier-checkbox input:checked ~ .modifier-box::after {
    content: '✓';
    color: #000000;
    font-size: 0.55rem;
    font-weight: bold;
}

/* Live Output Card (Luxury champagne style) */
.calc-output-dashboard {
    padding: 2.5rem;
    border-color: var(--border-glass-bright);
    position: relative;
    overflow: hidden;
}

.output-sub-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(15px);
}

.output-badge {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--color-gold);
    background: rgba(245, 158, 11, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1.5px solid rgba(245, 158, 11, 0.15);
    letter-spacing: 0.5px;
}

.est-rate-box {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.est-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
}

.premium-price-row {
    display: flex;
    align-items: baseline;
}

.premium-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.currency-symbol {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-right: 0.2rem;
}

.price-cycle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 0.4rem;
}

.metric-meter-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.meter-lbl-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.meter-track {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.03);
    border-radius: 2px;
}

.meter-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.fill-green { background-color: var(--color-gold); }
.fill-blue { background-color: var(--color-copper); }

.modal-cta-box .btn {
    width: 100%;
    margin-bottom: 0.8rem;
}

.disclaimer-txt {
    font-size: 0.62rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
}

/* 18. INTERACTION & SCROLL REVEALS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-left.reveal-active,
.scroll-reveal-right.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger reveal items */
.services-grid .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, var(--transition-smooth);
}

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

.services-section.reveal-active .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-section.reveal-active .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-section.reveal-active .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-section.reveal-active .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-section.reveal-active .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-section.reveal-active .service-card:nth-child(6) { transition-delay: 0.3s; }
.services-section.reveal-active .service-card:nth-child(7) { transition-delay: 0.35s; }
.services-section.reveal-active .service-card:nth-child(8) { transition-delay: 0.4s; }

/* 19. RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    body {
        cursor: default;
    }
    
    #custom-cursor, #cursor-glow {
        display: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-subheading {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual-wrapper {
        order: -1;
    }
    
    .about-grid, .why-us-grid, .claims-interactive-pipeline, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-visual {
        height: 380px;
    }
    
    .operations-dashboard-wrapper {
        order: -1;
    }
    
    .pipeline-display-panel {
        min-height: auto;
        padding: 2.5rem;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-newsletter-block {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar {
        padding: 0.5rem 1.5rem;
        border-radius: 24px;
        width: 95%;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 110;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #040609;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        z-index: 105;
        border-radius: 0;
    }
    
    .nav-links.active-menu {
        transform: translateX(0);
    }
    
    /* Toggle Close State Animation */
    .mobile-menu-toggle.toggle-active .bar-1 {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.toggle-active .bar-2 {
        opacity: 0;
    }
    
    .mobile-menu-toggle.toggle-active .bar-3 {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-heading {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .hero-stat-card {
        min-width: calc(50% - 1rem);
    }
    
    .window-frame-3d {
        max-width: 320px;
        height: 340px;
    }
    
    .orbiting-card {
        display: none; /* Hide orbiting cards on tiny viewports */
    }
    
    .compliance-badges {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand-block, .footer-newsletter-block {
        grid-column: span 1;
    }
    
    .footer-legal-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .modal-body-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quote-modal {
        padding: 2.5rem 1.8rem;
        max-height: 90vh;
        overflow-y: auto;
    }
}
