/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
   :root {
    /* Colors — Clean white light theme */
    --c-bg: #ffffff;
    --c-bg-warm: #f5f5f5;
    --c-bg-section: #fafafa;
    --c-red: #B80000;
    --c-red-glow: rgba(184, 0, 0, 0.35);
    --c-text: #1a1a1a;
    --c-text-muted: rgba(30, 30, 30, 0.55);
    --c-glass: rgba(255, 255, 255, 0.5);
    --c-glass-border: rgba(0, 0, 0, 0.07);

    /* Typography */
    --f-hero: 'Teko', sans-serif;
    --f-title: 'Chakra Petch', sans-serif;
    --f-body: 'Space Grotesk', sans-serif;

    /* Transitions */
    --t-fast: 0.3s ease;
    --t-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--c-bg);
    color: var(--c-text);
}

body {
    font-family: var(--f-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--c-bg);
}



/* Typography Utilities */
.text-red { color: var(--c-red); }
.text-glow { text-shadow: 0 0 15px var(--c-red-glow); }

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--c-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-content {
    width: 300px;
    text-align: center;
}

.loader-logo {
    font-family: var(--f-title);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--c-text);
    text-transform: uppercase;
}

.progress-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--c-red);
    box-shadow: 0 0 10px var(--c-red);
    transition: width 0.1s linear;
}

.loader-text {
    font-family: var(--f-title);
    font-size: 0.8rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    transition: all var(--t-smooth);
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
}

#navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: height var(--t-fast);
}

.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    transition: height var(--t-fast);
}

.nav-links a {
    color: var(--c-text);
    text-decoration: none;
    font-family: var(--f-title);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0 20px;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--t-fast);
}

.nav-links a:hover {
    color: var(--c-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--c-red);
    transition: width var(--t-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn-outline-red {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--c-red);
    color: var(--c-red);
    text-decoration: none;
    font-family: var(--f-title);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all var(--t-fast);
    background: transparent;
}

.btn-outline-red:hover {
    background: var(--c-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(184, 0, 0, 0.4);
}

.btn-solid-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 36px;
    box-sizing: border-box;
    background: var(--c-red);
    color: #fff;
    text-decoration: none;
    font-family: var(--f-title);
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all var(--t-fast);
    border: 1px solid var(--c-red);
}

.btn-solid-red:hover {
    background: transparent;
    color: var(--c-red);
    box-shadow: inset 0 0 20px rgba(184, 0, 0, 0.15), 0 0 20px rgba(184, 0, 0, 0.2);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    gap: 12px;
    padding: 0 36px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--c-text);
    text-decoration: none;
    font-family: var(--f-title);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    backdrop-filter: blur(5px);
    transition: all var(--t-fast);
}

.btn-glass:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.25);
}

.glow-dot {
    width: 8px;
    height: 8px;
    background: var(--c-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--c-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; box-shadow: 0 0 5px var(--c-red); }
    50% { opacity: 1; box-shadow: 0 0 15px var(--c-red); }
    100% { opacity: 0.5; box-shadow: 0 0 5px var(--c-red); }
}

/* ==========================================================================
   Cinematic Scroll Intro (Canvas + Text)
   ========================================================================== */
#cinematic-intro {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: var(--c-bg);
    overflow: hidden;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* To ensure image covers the whole screen */
}

.canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.full-screen-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

#cinematic-domain {
    font-family: var(--f-hero);
    font-size: 15vw;
    color: var(--c-text);
    opacity: 0;
    transform: scale(0.5);
    text-align: center;
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.15);
    /* GSAP will animate this */
}

/* ==========================================================================
   Main Content Wrapper
   ========================================================================== */
#main-content {
    position: relative;
    background-color: var(--c-bg);
    z-index: 20; /* Sits above the pinned canvas once we scroll past */
}

.section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section (Text overlay on top of dark bg)
   ========================================================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--f-hero);
    font-size: 6rem;
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--c-text-muted);
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-family: var(--f-title);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.speed-line {
    width: 100px;
    height: 2px;
    background: var(--c-red);
    margin-top: 15px;
    position: relative;
}

.speed-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, var(--c-red) 0%, transparent 100%);
}

/* Services Carousel Container */
.services-carousel-container {
    position: relative;
    max-width: 100%;
    margin-top: 50px;
}

.services-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0; /* Add padding so card shadows aren't clipped */
}

.services-carousel-track {
    display: flex;
    align-items: stretch; /* Force all cards to have identical height */
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: max-content;
}

/* Ensure each card has a fixed width in the carousel */
.services-carousel-track .glass-card {
    flex: 0 0 380px; /* Each card occupies exactly 380px width */
    max-width: 380px;
    margin: 0;
    background: var(--c-glass);
    border: 1px solid var(--c-glass-border);
    backdrop-filter: blur(8px);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto; /* Stretched by flex parent */
    transition: transform var(--t-smooth), border-color var(--t-fast);
}

.services-carousel-track .glass-card .card-tag {
    margin-top: auto; /* Push tags to the very bottom of the card */
}

/* Carousel Control Buttons */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(184, 0, 0, 0.2);
    color: var(--c-text);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--t-fast);
    backdrop-filter: blur(5px);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-control.prev-btn {
    left: -25px;
}

.carousel-control.next-btn {
    right: -25px;
}

.carousel-control:hover {
    background: var(--c-red);
    color: #fff;
    border-color: var(--c-red);
    box-shadow: 0 0 15px rgba(184, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.1); /* Keep vertical centering translation */
}

.carousel-control:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--c-text-muted);
    background: transparent;
    box-shadow: none;
    transform: translateY(-50%);
}

/* Dots indicator styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all var(--t-fast);
    border: 1px solid transparent;
}

.carousel-dots .dot:hover {
    background: rgba(184, 0, 0, 0.4);
}

.carousel-dots .dot.active {
    background: var(--c-red);
    width: 28px; /* Racing stretch effect */
    border-radius: 5px;
    box-shadow: 0 0 10px var(--c-red-glow);
}

.glass-card {
    background: var(--c-glass);
    border: 1px solid var(--c-glass-border);
    backdrop-filter: blur(8px);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-smooth), border-color var(--t-fast);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0%;
    background: var(--c-red);
    transition: height var(--t-smooth);
}

.glass-card:hover, .glass-card.active-card {
    transform: translateY(-10px);
    border-color: rgba(192, 0, 0, 0.3);
}

.glass-card:hover::before, .glass-card.active-card::before {
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    background: rgba(184, 0, 0, 0.06);
    border: 1px solid rgba(184, 0, 0, 0.18);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all var(--t-fast);
}

.card-icon-svg {
    font-size: 1.4rem;
    color: var(--c-red);
    z-index: 1;
}

.glass-card:hover .card-icon {
    background: var(--c-red);
    border-color: var(--c-red);
    transform: scale(1.1);
}

.glass-card:hover .card-icon-svg {
    color: #fff;
}

.glass-card h3 {
    font-family: var(--f-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.glass-card p {
    color: var(--c-text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Card images */
.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 20px;
    opacity: 0.9;
    transition: all var(--t-smooth);
    filter: saturate(0.9);
}

.glass-card:hover .card-image {
    opacity: 1;
    transform: scale(1.03);
    filter: saturate(1.1);
}

/* Card tag */
.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 5px 14px;
    font-family: var(--f-title);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-red);
    background: rgba(184, 0, 0, 0.06);
    border: 1px solid rgba(184, 0, 0, 0.15);
    border-radius: 20px;
}

/* Section images */
.section-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform var(--t-smooth);
}

.section-image:hover {
    transform: translateY(-5px);
}

/* Why Us image wrapper */
.why-us-image-wrapper {
    position: relative;
    display: inline-block;
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(184, 0, 0, 0.9);
    color: #fff;
    padding: 8px 18px;
    font-family: var(--f-title);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

/* Hero floating image */
.hero-image-float {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    z-index: 1;
}

.hero-image-float img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    animation: floatUpDown 4s ease-in-out infinite;
}

.hero-image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(184, 0, 0, 0.92);
    color: #fff;
    padding: 6px 14px;
    font-family: var(--f-title);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero trust badges */
.hero-trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: var(--f-title);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-text-muted);
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
}

.trust-badge i {
    color: var(--c-red);
    font-size: 0.9rem;
}

/* Section title icon */
.section-title-icon {
    color: var(--c-red);
    margin-right: 10px;
    font-size: 0.85em;
}

/* Nav icon styling */
.logo-icon {
    color: var(--c-red);
    margin-right: 6px;
}

.nav-links a i {
    font-size: 0.8em;
    margin-right: 4px;
    opacity: 0.7;
}

/* Feature icon (replaces bullet) */
.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(184, 0, 0, 0.08);
    border: 1px solid rgba(184, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-red);
    font-size: 1.1rem;
    transition: all var(--t-fast);
}

.feature-list li:hover .feature-icon {
    background: var(--c-red);
    color: #fff;
    transform: scale(1.1);
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: all var(--t-fast);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--c-red);
    border-color: var(--c-red);
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   Inline SVG Line Art (decorative per section)
   ========================================================================== */
.section-line-art {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: rgba(0, 0, 0, 0.18);
}

.hero-line-art {
    bottom: 0;
    right: 0;
    width: 55%;
    max-width: 650px;
    height: auto;
}

.services-line-art {
    right: -20px;
    bottom: -10px;
    width: 60%;
    max-width: 700px;
    height: auto;
}

.whyus-line-art {
    left: -20px;
    top: 30px;
    width: 300px;
    height: auto;
}

.whyus-line-art-right {
    right: -30px;
    bottom: 20px;
    width: 260px;
    height: auto;
}

.footer-line-art {
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    color: rgba(0, 0, 0, 0.14);
}

/* Sections need relative positioning for line art */
#hero {
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Experience Stats Section (Grid Statistics Design)
   ========================================================================== */
#experience-stats.grid-stats-design {
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 25%, #222222 50%, #1a1a1a 75%, #0d0d0d 100%);
    padding: 100px 20px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* Glossy sheen overlay */
#experience-stats.grid-stats-design::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Floating car parts background container */
.exp-bg-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-part {
    position: absolute;
    color: rgba(255, 255, 255, 0.09);
    will-change: transform, opacity;
}

/* Alloy Wheel - top left */
.bg-part-1 {
    width: 160px;
    top: 5%;
    left: 3%;
    animation: wheelSpin 30s linear infinite, fadeFloat1 16s ease-in-out infinite;
}

/* Side Mirror - bottom right */
.bg-part-2 {
    width: 90px;
    bottom: 8%;
    right: 6%;
    animation: fadeFloat2 20s ease-in-out infinite;
}

/* Headlight Beam - top right */
.bg-part-3 {
    width: 180px;
    top: 5%;
    right: 5%;
    animation: fadeFloat3 18s ease-in-out infinite;
}

/* Fuel Nozzle - bottom left */
.bg-part-4 {
    width: 90px;
    bottom: 10%;
    left: 8%;
    animation: fadeFloat4 22s ease-in-out infinite;
}

/* Seatbelt - mid left */
.bg-part-5 {
    width: 65px;
    top: 50%;
    left: 1%;
    animation: fadeFloat5 17s ease-in-out infinite;
}

/* Mini Car Silhouette - bottom center */
.bg-part-6 {
    width: 200px;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeFloat6 24s ease-in-out infinite;
}

/* Wheel spins continuously */
@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Each part has its own unique drift + fade pulse */
@keyframes fadeFloat1 {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.5; transform: rotate(180deg); }
}

@keyframes fadeFloat2 {
    0%, 100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
    30% { opacity: 0.4; transform: translate(-12px, -18px) rotate(-6deg); }
    60% { opacity: 0.8; transform: translate(8px, -10px) rotate(4deg); }
}

@keyframes fadeFloat3 {
    0%, 100% { opacity: 1; transform: translate(0, 0); }
    40% { opacity: 0.5; transform: translate(-20px, 15px); }
    70% { opacity: 0.9; transform: translate(10px, 8px); }
}

@keyframes fadeFloat4 {
    0%, 100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
    50% { opacity: 0.4; transform: translate(20px, -15px) rotate(12deg); }
}

@keyframes fadeFloat5 {
    0%, 100% { opacity: 1; transform: translate(0, 0); }
    25% { opacity: 0.5; transform: translate(10px, -20px); }
    75% { opacity: 0.7; transform: translate(-8px, 15px); }
}

@keyframes fadeFloat6 {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.4; transform: translateX(-50%) translateY(-10px); }
}

.grid-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

/* Red glow pseudo-element for text cards */
.text-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(184, 0, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.text-stat-card:hover::before {
    opacity: 1;
}

.text-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(184, 0, 0, 0.25), 0 0 60px rgba(184, 0, 0, 0.1);
    border-color: rgba(184, 0, 0, 0.4);
}

.avatar-stat-card {
    padding: 0;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    perspective: 800px;
}
.avatar-stat-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.stat-avatar-ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--c-red) 0%, transparent 50%, var(--c-red) 100%);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.avatar-stat-card:hover .stat-avatar-ring {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.05);
    box-shadow: 15px 10px 40px rgba(0,0,0,0.5), -5px -5px 20px rgba(184,0,0,0.15);
}

.stat-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0d0d0d;
}

.stat-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-red);
    color: var(--c-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--f-title);
    white-space: nowrap;
    border: 3px solid #0d0d0d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-stat-card {
    justify-content: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.stat-massive {
    font-size: 4.5rem;
    font-family: var(--f-hero);
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    font-weight: 600;
    font-family: var(--f-title);
    margin-bottom: 15px;
}

.stat-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 900px) {
    #experience-stats.grid-stats-design {
        padding: 70px 15px;
    }
    .grid-stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
    .stat-card {
        padding: 40px 20px;
    }
    .stat-massive {
        font-size: 3.5rem;
    }
    .stat-avatar-ring {
        width: 220px;
        height: 220px;
    }
    .stat-label {
        font-size: 1rem;
    }
    .stat-desc {
        font-size: 0.95rem;
    }
    /* Hide some bg parts to reduce visual noise on mobile */
    .bg-part-3,
    .bg-part-5,
    .bg-part-6 {
        display: none;
    }
    .bg-part-1 { width: 100px; }
    .bg-part-2 { width: 60px; }
    .bg-part-4 { width: 60px; }
}

@media (max-width: 480px) {
    #experience-stats.grid-stats-design {
        padding: 50px 10px;
    }
    .grid-stats-container {
        gap: 30px;
    }
    .stat-massive {
        font-size: 3rem;
    }
    .stat-avatar-ring {
        width: 180px;
        height: 180px;
    }
    .stat-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

#services {
    position: relative;
    overflow: hidden;
}

#why-us {
    position: relative;
    overflow: hidden;
}

#footer {
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Three-column Why Us layout */
.whyus-three-cols {
    display: grid;
    grid-template-columns: 1fr 380px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.whyus-col-left {
    text-align: right;
}

.whyus-col-left .feature-list-new li {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    margin-bottom: 40px;
}

.whyus-col-right .feature-list-new li {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
}

.whyus-center {
    position: relative;
    text-align: center;
}

.whyus-center-img-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 320px;
    height: 320px;
    border: 3px solid var(--c-red);
    box-shadow: 0 0 30px rgba(184, 0, 0, 0.3);
}

.whyus-center-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-smooth);
}

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

.feature-list-new {
    list-style: none;
}

.feature-list-new li {
    transition: transform var(--t-fast);
}

.feature-list-new li:hover {
    transform: translateY(-2px);
}

.feature-list-new h4 {
    font-family: var(--f-title);
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: var(--c-text);
}

.feature-list-new p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.stats-box-new {
    background: radial-gradient(circle at center, rgba(184, 0, 0, 0.06) 0%, transparent 70%);
    border: 1px solid rgba(184, 0, 0, 0.12);
    padding: 20px 30px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    margin-top: 20px;
}

.feature-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--c-red);
    margin-top: 6px;
    position: relative;
}

.feature-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--c-red);
    opacity: 0;
    transition: opacity var(--t-fast);
}

.feature-list li:hover .feature-bullet::after {
    opacity: 1;
}

.feature-list h4 {
    font-family: var(--f-title);
    font-size: 1.2rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.feature-list p {
    color: var(--c-text-muted);
}

.stats-box {
    background: radial-gradient(circle at center, rgba(184, 0, 0, 0.08) 0%, transparent 70%);
    border: 1px solid rgba(184, 0, 0, 0.15);
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: var(--f-hero);
    font-size: 8rem;
    line-height: 1;
    color: var(--c-text);
    text-shadow: 0 0 30px rgba(184, 0, 0, 0.2);
}

.stat-label {
    font-family: var(--f-title);
    color: var(--c-red);
    letter-spacing: 4px;
    margin-top: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#footer {
    border-top: 2px solid var(--c-red);
    background: var(--c-bg-warm);
    padding: 80px 40px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-family: var(--f-title);
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand span {
    color: var(--c-red);
}

.footer-brand p {
    color: var(--c-text-muted);
}

.footer-contact h3 {
    font-family: var(--f-title);
    color: var(--c-text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.phone-number {
    font-family: var(--f-hero);
    font-size: 2.5rem;
    color: var(--c-text);
    letter-spacing: 2px;
}

.area {
    color: var(--c-red);
    font-family: var(--f-title);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-whatsapp {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid #25D366;
    color: #25D366;
    font-family: var(--f-title);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--t-fast);
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    /* Bouncy popup transition */
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease, box-shadow 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(60px) scale(0.3);
}

.floating-whatsapp.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.floating-whatsapp.visible:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    #cinematic-domain { font-size: 12vw; }
    .whyus-three-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .whyus-col-left {
        text-align: left;
    }
    .whyus-col-left, .whyus-col-right {
        padding: 0 20px;
    }
    .whyus-col-left .feature-list-new li,
    .whyus-col-right .feature-list-new li {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    .whyus-center {
        order: -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    #hero { padding-top: 100px; padding-bottom: 50px; }
    .hero-title { font-size: 3rem; margin-bottom: 20px; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero-buttons a {
        text-align: center;
        width: 100%;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        height: 56px;
        box-sizing: border-box;
        white-space: nowrap;
        font-size: 0.9rem;
    }
    #cinematic-domain { font-size: 9vw; font-family: var(--f-title); color: #ffffff; text-shadow: 0 0 20px rgba(255,255,255,0.9), 0 0 40px rgba(255,255,255,0.6), 0 0 80px rgba(184,0,0,0.8), 0 0 120px rgba(184,0,0,0.4); }
    #cinematic-intro, #hero-canvas { background-color: #0a0a0a; }
    .split-layout { grid-template-columns: 1fr; gap: 30px; }
    .split-text { order: 1; }
    .split-visual { order: 2; }
    .section { padding: 80px 20px; overflow: visible; }
    .section-title { font-size: 2rem; letter-spacing: 2px; }
    .feature-list li { gap: 14px; margin-bottom: 22px; }
    .feature-list h4 { font-size: 1rem; }
    .stats-box { padding: 50px 20px; }
    .stat-number { font-size: 5rem; }
    .stat-label { font-size: 0.75rem; letter-spacing: 2px; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .btn-whatsapp { width: 100%; text-align: center; }
    .card-image { height: 180px; }

    /* Line art — visible and properly sized on mobile */
    .section-line-art { opacity: 0.55; }
    .hero-line-art {
        width: 90%;
        bottom: -10px;
        right: -10%;
    }
    .services-line-art {
        width: 100%;
        right: -15%;
        bottom: -20px;
    }
    .whyus-line-art {
        width: 180px;
        left: -10px;
        top: 10px;
        opacity: 0.4;
    }
    .whyus-line-art-right { display: none; }
    .hero-image-float { display: none; }
    .hero-trust-badges { gap: 10px; }
    .trust-badge { font-size: 0.7rem; padding: 6px 12px; }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    /* Services Carousel Mobile Overrides */
    .carousel-control {
        display: none; /* Hide buttons on mobile to preserve all horizontal space */
    }
    .services-carousel-track .glass-card {
        flex: 0 0 calc(100vw - 60px); /* Fit card dynamically to viewports */
        max-width: calc(100vw - 60px);
        padding: 40px 25px; /* Compact padding */
    }

    /* Why Us Mobile Overrides (Tablet/Mid-Size) */
    .whyus-center-img-wrapper {
        width: 250px;
        height: 250px;
    }
    .feature-list-new li {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    #cinematic-domain { font-size: 8vw; }
    .stat-number { font-size: 5rem; }
    .card-image { height: 150px; }

    /* Line art — scaled down but still visible on small screens */
    .section-line-art { opacity: 0.35; }
    .hero-line-art {
        width: 95%;
        right: -15%;
    }
    .services-line-art {
        width: 110%;
        right: -20%;
    }
    .whyus-line-art {
        width: 140px;
        opacity: 0.3;
    }
    .hero-trust-badges { flex-direction: column; }

    /* Why Us Mobile Overrides (Narrow Viewport) */
    .whyus-three-cols {
        gap: 25px;
    }
    .whyus-center-img-wrapper {
        width: 200px;
        height: 200px;
    }
    .feature-list-new li {
        margin-bottom: 20px;
        gap: 15px;
    }
}

/* ==========================================================================
   Safety Section
   ========================================================================== */
#safety {
    position: relative;
    overflow: hidden;
    background: var(--c-bg-section);
}

.section-subtitle-centered {
    max-width: 800px;
    margin: 25px auto 0;
    font-family: var(--f-body);
    font-size: 1.15rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    text-align: center;
    text-transform: none;
}

.safety-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.safety-card-new {
    background: var(--c-bg);
    border: 1px solid var(--c-glass-border);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform var(--t-smooth), border-color var(--t-fast), box-shadow var(--t-fast);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

.safety-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 0, 0, 0.25);
    box-shadow: 0 15px 40px rgba(184, 0, 0, 0.06);
}

.safety-card-icon-new {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all var(--t-fast);
}

/* Icon Bubbles styling */
.icon-sos {
    background: #ffebeb;
    border: 1.5px solid #ffd1d1;
    color: #e63946;
    font-family: var(--f-title);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.safety-card-new:hover .icon-sos {
    background: #e63946;
    border-color: #e63946;
    color: #ffffff;
}

.icon-phone-lock {
    background: #e6f0ff;
    border: 1.5px solid #cce0ff;
    color: #1d4ed8;
}
.safety-card-new:hover .icon-phone-lock {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.icon-headset {
    background: #f3e8ff;
    border: 1.5px solid #e9d5ff;
    color: #7c3aed;
}
.safety-card-new:hover .icon-headset {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #ffffff;
}

.icon-verified {
    background: #ecfdf5;
    border: 1.5px solid #d1fae5;
    color: #059669;
}
.safety-card-new:hover .icon-verified {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
}

.safety-card-new h4 {
    font-family: var(--f-title);
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    color: var(--c-text);
    font-weight: 700;
    text-transform: uppercase;
}

.safety-card-new p {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

/* Custom SVG Safety Line Art */
.safety-line-art {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 600px;
    height: auto;
    opacity: 0.15;
}

/* Safety Media Queries */
@media (max-width: 1024px) {
    .safety-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .safety-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-subtitle-centered {
        font-size: 1rem;
        margin-top: 15px;
    }
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: opacity var(--t-fast), transform var(--t-fast);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-3px);
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    position: relative;
    margin-bottom: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: #ff3333; /* Neon Red */
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
    box-shadow: 0 0 6px #ff3333;
}

.scroll-text {
    font-family: var(--f-title);
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 2px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    color: #ffffff;
    font-size: 0.85rem;
    animation: bounceArrow 1.5s infinite ease-in-out;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

@keyframes scrollWheel {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    60% { opacity: 0; transform: translate(-50%, 10px); }
    100% { opacity: 0; transform: translate(-50%, 0); }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ==========================================================================
   WhatsApp Shortcuts Widget
   ========================================================================== */
.whatsapp-menu-card {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 320px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-smooth), opacity var(--t-fast);
}

.whatsapp-menu-card.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.wa-menu-header {
    background: #25D366;
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-menu-header i {
    font-size: 1.8rem;
}

.wa-menu-header h4 {
    font-family: var(--f-title);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.wa-menu-header p {
    font-size: 0.75rem;
    opacity: 0.85;
    margin: 0;
}

.wa-close-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity var(--t-fast);
}

.wa-close-btn:hover {
    opacity: 1;
}

.wa-menu-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-shortcut-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--c-text);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--t-fast);
}

.wa-shortcut-item i {
    font-size: 1.1rem;
    color: #25D366;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--t-fast);
}

.wa-shortcut-item h5 {
    font-family: var(--f-title);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.wa-shortcut-item p {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.2;
}

.wa-shortcut-item:hover {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.2);
    transform: translateX(3px);
}

.wa-shortcut-item:hover i {
    background: #25D366;
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-menu-card {
        bottom: 90px;
        right: 20px;
        width: calc(100vw - 40px);
        max-width: 340px;
    }
}

/* ==========================================================================
   Service Ticker Band
   ========================================================================== */
.service-ticker-band {
    background: var(--c-bg-warm);
    border-top: 1px solid rgba(184, 0, 0, 0.12);
    border-bottom: 1px solid rgba(184, 0, 0, 0.12);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
    font-family: var(--f-title);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--c-text);
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.ticker-track .ticker-dot {
    width: 6px;
    height: 6px;
    background-color: var(--c-red);
    border-radius: 50%;
    margin: 0 35px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 8px var(--c-red);
}

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

}

/* ==========================================================================
   Booking Section
   ========================================================================== */
#book {
    position: relative;
    overflow: hidden;
    background: var(--c-bg-section);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
}

.booking-form-wrapper {
    background: var(--c-bg);
    border: 1px solid var(--c-glass-border);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.booking-telemetry-visual {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--f-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text);
    display: block;
    margin-bottom: 8px;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color var(--t-fast);
}

.input-icon-wrapper input, .input-icon-wrapper select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    transition: all var(--t-fast);
    outline: none;
}

.input-icon-wrapper input:focus, .input-icon-wrapper select:focus {
    border-color: var(--c-red);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(184, 0, 0, 0.08);
}

.input-icon-wrapper input:focus + .input-icon, .input-icon-wrapper select:focus + .input-icon {
    color: var(--c-red);
}

/* Date and Time Group custom layout */
.date-time-group {
    display: flex;
    gap: 15px;
}

.half-group {
    flex: 1;
}

.form-submit-btn {
    width: 100%;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-top: 10px;
}

/* Status Alerts styling */
.status-alert {
    padding: 15px 20px;
    border-radius: 6px;
    font-family: var(--f-title);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-alert i {
    font-size: 1.1rem;
}

.status-alert.success {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25D366;
}

.status-alert.error {
    background: rgba(184, 0, 0, 0.08);
    border: 1px solid rgba(184, 0, 0, 0.25);
    color: var(--c-red);
}

.status-alert.processing {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--c-text-muted);
}

.status-alert.hidden {
    display: none !important;
}

/* Telemetry Display */
.telemetry-box {
    background: #111111;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.telemetry-header {
    background: #0a0a0a;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-title);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.telemetry-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.telemetry-indicator.blinking {
    background: #25D366;
    box-shadow: 0 0 10px #25D366;
    animation: telemetryBlink 1.2s infinite ease-in-out;
}

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

.telemetry-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.telemetry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.telemetry-item .label {
    font-family: var(--f-title);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.telemetry-item .value {
    font-family: var(--f-title);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Radar Scan simulation */
.telemetry-chart {
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.radar-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #25D366, transparent);
    animation: radarSweep 3.5s linear infinite;
}

@keyframes radarSweep {
    0% { top: 0%; }
    100% { top: 100%; }
}

.radar-grid {
    position: absolute;
    inset: 0;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.radar-blip {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 10px #25D366;
    opacity: 0.8;
    animation: blipPulse 2s infinite ease-in-out;
}

.radar-blip.p1 { top: 30%; left: 40%; animation-delay: 0.3s; }
.radar-blip.p2 { top: 60%; left: 70%; animation-delay: 0.8s; }
.radar-blip.p3 { top: 75%; left: 25%; animation-delay: 1.4s; }

@keyframes blipPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.8); opacity: 1; }
}

.book-line-art {
    right: -30px;
    bottom: -30px;
    width: 280px;
    height: auto;
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-telemetry-visual, .dispatch-animation-box {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 25px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .book-line-art {
        display: none;
    }
}

/* ==========================================================================
   Active Navigation Link
   ========================================================================== */
.nav-links a.active {
    color: var(--c-red);
}

.nav-links a.active::after {
    width: 100%;
}

/* ==========================================================================
   Dispatch Sequence Animation Styles
   ========================================================================== */

.dispatch-animation-box {
    background: #111111;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.animation-header {
    background: #0a0a0a;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-title);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.animation-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: center;
}

.dispatch-svg {
    width: 100%;
    height: auto;
    max-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at center, rgba(184, 0, 0, 0.04) 0%, transparent 80%);
    border-radius: 6px;
}

/* Pulsing Signal Waves */
.wave-ring {
    transform-origin: center;
    transform-box: fill-box;
    animation: pulseRing 3s infinite ease-out;
}
.wave-ring.w2 {
    animation-delay: 1.5s;
}
.wave-ring.delay {
    animation-delay: 0.75s;
}
.wave-ring.delay.w2 {
    animation-delay: 2.25s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Dispatch Vehicle Drive along Track */
.dispatch-vehicle {
    offset-path: path('M80 125 C140 45, 260 205, 320 125');
    offset-rotate: auto;
    animation: driveTrack 9s infinite linear;
}

@keyframes driveTrack {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }
    2% {
        offset-distance: 0%;
        opacity: 1;
    }
    /* Remain at start while preparing: 0s to 3.6s (40%) */
    40% {
        offset-distance: 0%;
        opacity: 1;
    }
    /* Drive from start to end: 3.6s to 5.4s (40% to 60%) */
    60% {
        offset-distance: 100%;
        opacity: 1;
    }
    /* Hold at destination: 5.4s to 7.2s (60% to 80%) */
    80% {
        offset-distance: 100%;
        opacity: 1;
    }
    /* Fade out for rating screen: 7.2s to 9s (80% to 100%) */
    85%, 100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* Rating Stars Pop-up animations */
.rating-stars-overlay {
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-star {
    transform-origin: center;
    transform-box: fill-box;
    opacity: 0;
    display: inline-block;
}

.rating-stars-overlay.active .star-1 { animation: starPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 0.1s; }
.rating-stars-overlay.active .star-2 { animation: starPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 0.25s; }
.rating-stars-overlay.active .star-3 { animation: starPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 0.4s; }
.rating-stars-overlay.active .star-4 { animation: starPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 0.55s; }
.rating-stars-overlay.active .star-5 { animation: starPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 0.7s; }

@keyframes starPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Connection Track Animation styling */
#dispatch-track-active {
    stroke-dasharray: 8 12;
    animation: dashTrack 1.5s infinite linear;
}

@keyframes dashTrack {
    to {
        stroke-dashoffset: -40;
    }
}

/* Live Caption sequence styling */
.sequence-caption {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 18px;
    border-radius: 8px;
    font-family: var(--f-title);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.sequence-caption .step-icon {
    font-size: 1.1rem;
}
.sequence-caption .step-icon.call-color {
    color: #ffffff;
}
.sequence-caption .step-icon.drive-color {
    color: #aaaaaa;
}
.sequence-caption .step-icon.pin-color {
    color: #ffffff;
}
.sequence-caption .step-text {
    color: #ffffff;
    font-weight: 500;
}/* ==========================================================================
   Serviceable Areas Section
   ========================================================================== */
#service-areas {
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.areas-map-visual {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--c-glass-border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    height: 420px;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.areas-map-visual:hover {
    border-color: rgba(184, 0, 0, 0.2);
    box-shadow: 0 15px 40px rgba(184, 0, 0, 0.04);
}

.areas-map-svg {
    width: 100%;
    height: 100%;
    max-height: 360px;
}

.areas-list-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-text);
    transition: transform var(--t-fast), color var(--t-fast);
}

.area-item:hover {
    transform: translateX(4px);
    color: var(--c-red);
}

.area-item i {
    color: var(--c-red);
    font-size: 0.9rem;
    opacity: 0.8;
}

.book-now-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    transition: transform var(--t-fast), opacity var(--t-fast);
}

.book-now-link:hover {
    opacity: 0.8;
}

.book-now-link i {
    font-size: 0.9rem;
    transition: transform var(--t-fast);
}

.book-now-link:hover i {
    transform: translate(4px, -4px);
}

/* Pulsing active hub nodes inside map */
@keyframes hubPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Service Areas Media Queries */
@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .areas-map-visual {
        height: 320px;
    }
    .areas-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .areas-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ==========================================================================
   Testimonials & Feedback Section
   ========================================================================== */
#testimonials {
    background: var(--c-bg-section);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 50px;
}

.testimonials-art-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.testimonials-line-art {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.feedback-form-wrapper {
    background: var(--c-glass);
    border: 1px solid var(--c-glass-border);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.feedback-form-wrapper h3,
.testimonials-list-wrapper h3 {
    font-family: var(--f-title);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Dynamic stars selector */
.star-rating-selector {
    display: flex;
    gap: 8px;
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    cursor: pointer;
}

.star-rating-selector i {
    transition: transform 0.2s ease, color 0.2s ease;
}

.star-rating-selector i:hover,
.star-rating-selector i.hover-active {
    transform: scale(1.15);
    color: #FFD700;
}

.star-rating-selector i.selected-active {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Testimonial Cards Carousel Zigzag */
.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    width: max-content;
}

.testimonials-carousel-track .testimonial-card-new {
    width: 400px;
    flex-shrink: 0;
}

.testimonials-carousel-track .testimonial-card-new:nth-child(even) {
    transform: translateY(40px);
}

/* Beautiful custom scrollbar */
.testimonials-list::-webkit-scrollbar {
    width: 6px;
}
.testimonials-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}
.testimonials-list::-webkit-scrollbar-thumb {
    background: rgba(184, 0, 0, 0.15);
    border-radius: 10px;
}
.testimonials-list::-webkit-scrollbar-thumb:hover {
    background: var(--c-red);
}

.testimonial-card-new {
    background: var(--c-glass);
    border: 1px solid var(--c-glass-border);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.testimonial-card-new.active-glow {
    border-color: rgba(184, 0, 0, 0.5);
    box-shadow: 0 0 25px rgba(184, 0, 0, 0.3);
    background: rgba(184, 0, 0, 0.02);
}

.testimonial-card-new:hover {
    border-color: rgba(184, 0, 0, 0.2);
}

.testimonial-header-new {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.testimonial-text {
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--c-text);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-meta-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.passenger-name-new {
    font-family: var(--f-title);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.driver-tag-new {
    color: var(--c-red);
    font-weight: 600;
    font-family: var(--f-title);
    font-size: 0.8rem;
}

.service-badge-new {
    padding: 3px 10px;
    font-family: var(--f-title);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: var(--c-red);
    background: rgba(184, 0, 0, 0.05);
    border: 1px solid rgba(184, 0, 0, 0.1);
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonials-art-wrapper {
        display: none; /* Hide art on mobile to save space */
    }
    .feedback-form-wrapper {
        height: auto;
    }
    .testimonials-carousel-track .testimonial-card-new {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    .feedback-form-wrapper,
    .testimonials-list-wrapper {
        padding: 25px 20px;
    }
    .logo-img {
        height: 42px;
    }
    .footer-logo-img {
        height: 70px;
    }
    #navbar .btn-outline-red {
        padding: 8px 14px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    .logo-img {
        height: 35px;
    }
    #navbar .btn-outline-red {
        padding: 6px 10px;
        font-size: 0.72rem;
        gap: 4px;
    }
}

/* Toast Notification System */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--c-glass);
    border-left: 4px solid var(--c-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform var(--t-fast) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 0.95rem;
    min-width: 250px;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.2rem;
}

.toast.success {
    border-left-color: #28a745;
}
.toast.success i {
    color: #28a745;
}

.toast.error {
    border-left-color: var(--c-red);
}
.toast.error i {
    color: var(--c-red);
}

@media (max-width: 768px) {
    #toast-container {
        bottom: 100px; /* Above the floating whatsapp button */
        left: 20px;
        right: 20px;
    }
    .toast {
        min-width: 0;
        width: 100%;
        transform: translateY(120%);
    }
    .toast.show {
        transform: translateY(0);
    }
}

.feedback-form-wrapper input,
.feedback-form-wrapper select,
.feedback-form-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    transition: all var(--t-fast);
    outline: none;
}

.feedback-form-wrapper input:focus,
.feedback-form-wrapper select:focus,
.feedback-form-wrapper textarea:focus {
    border-color: var(--c-red);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(184, 0, 0, 0.08);
}
