:root {
    /* --- NEW: Deep Charcoal Theme --- */
    --bg-dark: #1a1f2e;     /* Brighter than near-black */
    --bg-surface: #242d3d;  /* Slightly lighter slate */
    --bg-surface-glass: rgba(36, 45, 61, 0.6);
    
    /* --- ORIGINAL: Pure Dark Background (Backup) --- */
    /*
    --bg-dark: #0a0e17;
    --bg-surface: #121926;
    */

    --primary: #f59e0b;     /* Warning Amber/Yellow */
    --primary-glow: rgba(245, 158, 11, 0.4);
    --secondary: #3b82f6;   /* Trust Blue */
    --accent: #ef4444;      /* Emergency Red */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --border-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* --- BACKUP: Neon Frost Theme --- */
    /*
    --bg-dark: #020617;
    --bg-surface: #0f172a;
    --primary: #00f2ff;
    --primary-glow: rgba(0, 242, 255, 0.4);
    --secondary: #7000ff;
    --accent: #ff00f2;
    */
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity; /* Natural browsing feel */
    scroll-padding-top: 80px;
}

/* Scroll Progress */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10001;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #fbbf24);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    animation: blob-float 20s infinite alternate linear;
}

.b1 { 
    top: -100px; 
    right: -100px; 
    background: var(--primary); 
    animation-duration: 25s;
}

.b2 { 
    bottom: -100px; 
    left: -100px; 
    background: var(--secondary); 
    opacity: 0.07;
    animation-duration: 30s;
    animation-direction: alternate-reverse;
}

.b3 { 
    top: 50%; 
    left: 50%; 
    background: var(--accent); 
    opacity: 0.05;
    animation-duration: 20s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 120px) scale(0.9); }
    100% { transform: translate(20px, -40px) scale(1); }
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-truck {
    font-size: 4rem;
    color: var(--primary);
    animation: bounce-truck 1s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5), drive 2s infinite linear;
    position: relative;
}

.loader-truck::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(2px);
    animation: shadow-pulse 1s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
}

@keyframes bounce-truck {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

@keyframes drive {
    0% { transform: translateX(-20px) rotate(-5deg); }
    50% { transform: translateX(20px) rotate(5deg); }
    100% { transform: translateX(-20px) rotate(-5deg); }
}

@keyframes shadow-pulse {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.6); opacity: 0.3; }
}

h1, h2, h3, h4, .logo span {
    font-family: var(--font-display);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--primary);
}

.highlight-text {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    padding: 14px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: #fbbf24;
}

.btn-secondary.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translateY(-50px) translateX(-150px);
    animation: button-shine 4s infinite;
}

@keyframes button-shine {
    0% { transform: rotate(30deg) translateY(-50px) translateX(-200px); }
    10% { transform: rotate(30deg) translateY(-50px) translateX(200px); }
    100% { transform: rotate(30deg) translateY(-50px) translateX(200px); }
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Typography styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* Layout Utilities */
.section {
    padding: 100px 0;
    scroll-snap-align: start;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 24px 0;
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.live-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: -2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-green {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green-anim 2s infinite;
}

@keyframes pulse-green-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition-fast);
    position: relative;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    perspective: 1000px; /* added for better parallax */
}

.hero-bg {
    position: absolute;
    top: -10%; /* Extended for parallax padding */
    left: -10%;
    width: 120%;
    height: 120%;
    /* Initially dark, JS will inject the image */
    background: url('hero_bg.jpg') center/cover no-repeat, radial-gradient(circle at center, #1a2333 0%, var(--bg-dark) 100%);
    z-index: -2;
    transition: transform 0.1s linear; /* Parallax smoothing */
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a0e17 0%, rgba(10,14,23,0.8) 50%, rgba(10,14,23,0.4) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text-box h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text-box p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item h3 {
    font-size: 2.5rem;
    display: inline-block;
}

.stat-item span {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: var(--border-light);
}

/* Hero Visual / Glass Panel Simulation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-panel.floating {
    width: 100%;
    max-width: 380px;
    padding: 24px;
    animation: float 6s ease-in-out infinite;
}

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

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.panel-header i {
    color: var(--accent);
}

.map-mockup {
    position: relative;
    height: 200px;
    background: var(--bg-surface);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.radar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.radar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.4), transparent);
    border-radius: 100% 0 0 0;
    transform-origin: bottom right;
    animation: radar-spin 2s linear infinite;
}

@keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.marker {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.truck-marker {
    background: var(--primary);
    color: #000;
    top: 20%;
    left: 80%;
    animation: move-truck 10s infinite alternate linear;
}

.user-marker {
    background: var(--secondary);
    bottom: 20%;
    left: 20%;
}

@keyframes move-truck {
    0% { top: 20%; left: 80%; }
    100% { top: 70%; left: 30%; }
}

.route-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dashed-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: 0; }
}

.status-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--primary);
}

.bouncing {
    font-size: 1.5rem;
    display: block;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card:hover .icon-wrapper {
    background: var(--primary);
}

.service-card:hover .icon-wrapper i {
    color: var(--bg-dark);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}

.read-more i {
    transition: transform 0.3s ease;
}

.service-card:hover .read-more i {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-surface));
    position: relative;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
}

.abstract-geometry {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.c1 {
    width: 250px;
    height: 250px;
    animation: spin-slow 20s linear infinite;
}

.c2 {
    width: 150px;
    height: 150px;
    border-color: rgba(245, 158, 11, 0.3);
    border-style: solid;
    animation: spin-slow 15s linear infinite reverse;
}

.huge-icon {
    font-size: 6rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

@keyframes spin-slow {
    100% { transform: rotate(360deg); }
}

.feature-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-normal);
    cursor: default;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(10px);
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.feature-list li:hover .f-icon {
    background: var(--primary);
}

.f-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition-normal);
}

.feature-list li:hover .f-icon i {
    color: var(--bg-dark);
    transform: scale(1.2);
}

.f-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.f-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-surface);
    /* For demo, using gradients instead of real images */
    background: linear-gradient(45deg, #1e293b, #0f172a);
}

/* Assign dummy images using nth-child for the template */
.gallery-item:nth-child(1) { background: url('https://images.unsplash.com/photo-1626242407559-0f438c82dc85?auto=format&fit=crop&q=80&w=600') center/cover; }
.gallery-item:nth-child(2) { background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&q=80&w=600') center/cover; }
.gallery-item:nth-child(3) { background: url('https://images.unsplash.com/photo-1623301931652-95f2fc4561ec?auto=format&fit=crop&q=80&w=600') center/cover; }
.gallery-item:nth-child(4) { background: url('https://images.unsplash.com/photo-1620914909192-36cbb06dbeac?auto=format&fit=crop&q=80&w=600') center/cover; }
.gallery-item:nth-child(5) { background: url('https://images.unsplash.com/photo-1596708761273-dfeb7ca7ef67?auto=format&fit=crop&q=80&w=600') center/cover; }
.gallery-item:nth-child(6) { background: url('https://images.unsplash.com/photo-1562916174-a035a0cfb3f9?auto=format&fit=crop&q=80&w=600') center/cover; }

.item-wide {
    grid-column: span 2;
}

.item-tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .item-wide { grid-column: span 1; }
    .item-tall { grid-row: span 1; }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 158, 11, 0.8); /* Primary color overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--bg-dark);
    transform: scale(0.5);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to top, var(--bg-dark), var(--bg-surface));
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 50px;
    position: relative;
    border-radius: 24px;
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.user-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.user-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* CTA Banner */
.cta-banner {
    padding: 0 0 100px 0;
}

.cta-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(18, 25, 38, 0.8) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-glass::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.cta-pulse-btn {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulse-amber 2s infinite;
}

@keyframes pulse-amber {
    0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-normal);
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Hide initial state before scroll if wanted, or leave visible. We'll leave it visible but subtle */
.floating-wa {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-wa.show-float {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* High enough value */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
footer {
    background: #06090e;
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--border-light);
    scroll-snap-align: start;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

footer h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.contact-info i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.input-group {
    margin-bottom: 16px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade {
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.show {
    animation: fadeInUp 0.8s ease forwards;
}

.show-fade {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Lightbox Section */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none; /* JS will toggle */
    justify-content: center;
    align-items: center;
    z-index: 11000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px var(--primary-glow);
    border: 1px solid var(--border-light);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 11001;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 11001;
}

.lightbox-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.lb-prev { left: 40px; }
.lb-next { right: 40px; }

@media (max-width: 768px) {
    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    .lb-prev { left: 15px; }
    .lb-next { right: 15px; }
    .lightbox-close { top: 20px; right: 20px; }
    .lightbox-content { max-width: 95%; }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        align-items: flex-start; /* Respect padding-top on mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding-top: 140px; /* Adjusted spacing */
    }
    
    .hero-bg .overlay {
        background: rgba(10, 14, 23, 0.85); /* Darker overlay for mobile text readable */
    }
    
    .hero-text-box h1 {
        font-size: 3rem;
    }
    
    .hero-text-box p {
        margin: 0 auto 40px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-glass {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1f2e;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 32px;
        border-bottom: 2px solid var(--primary);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        z-index: 1000;
    }

    .nav-links.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links, .navbar .btn-primary {
        display: none;
    }
    
    .nav-links.mobile-active {
        display: flex; /* Override display: none */
    }
    
    .navbar {
        background: #1a1f2e !important; /* Fully solid background on mobile ALWAYS */
        padding: 12px 0;
        border-bottom: 2px solid var(--primary);
        z-index: 1001; /* Ensure it stays above everything */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-text-box h1 {
        font-size: 2.2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Modal Section */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 12000;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 450px;
    width: 90%;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

.pulse-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse-amber 2s infinite;
}

.phone-display {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px dashed var(--border-light);
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

#copy-phone {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

#copy-phone:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 13000;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.toast-content i {
    color: var(--primary);
    font-size: 1.4rem;
}

.toast-progress {
    height: 3px;
    background: var(--primary);
    width: 100%;
    border-radius: 2px;
    transform-origin: left;
}

.toast.show .toast-progress {
    animation: toast-timer 3s linear forwards;
}

@keyframes toast-timer {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* Responsive Extra */
@media (max-width: 480px) {
    .modal-content { padding: 30px 20px; }
    .phone-display { font-size: 1.2rem; }
}
