/* ============================================
   LUBBON - Premium Black & White CSS
   Proper Color Contrast · Glassmorphism · Effects
   ENHANCED SMOKE & LIGHT VERSION
   ============================================ */
/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Core palette */
    --cream: #e8e6e3;
    --cream-dark: #c9c7c0;
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-card: #111111;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-50: #fafafa;
    --gray-100: #f0f0f0;
    --gray-200: #e4e4e4;
    --gray-300: #d1d1d1;
    --gray-600: #6b6b6b;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    /* Functional */
    --glass-dark: rgba(0, 0, 0, 0.92);
    --glass-light: rgba(255, 255, 255, 0.06);
    --glass-border-light: rgba(255, 255, 255, 0.1);
    --glass-border-dark: rgba(0, 0, 0, 0.08);
    /* Transitions */
    --ease-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 30px rgba(255,255,255,0.06);
    --shadow-cream-glow: 0 0 40px rgba(232,230,227,0.15);
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
}
/* ============================================
   BASE & RESET
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--black) !important;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
}
/* ============================================
   NAVBAR - GLASSMORPHISM
   ============================================ */
.glass-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-dark);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border-light);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}
.navbar-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(232, 230, 227, 0.4) 30%,
        rgba(232, 230, 227, 0.6) 50%,
        rgba(232, 230, 227, 0.4) 70%,
        transparent 100%
    );
    pointer-events: none;
}
.brand-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(232, 230, 227, 0.2);
    transition: var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.brand-letter {
    color: var(--black);
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1;
}
.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.navbar-brand:hover .brand-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 32px rgba(232, 230, 227, 0.4);
}
.brand-text {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    text-shadow: 0 0 24px rgba(232, 230, 227, 0.25);
    font-weight: 700;
    color: var(--white);
}
.navbar-toggler-glass {
    border: 1px solid rgba(232, 230, 227, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--ease-smooth);
}
.navbar-toggler-glass:hover {
    border-color: rgba(232, 230, 227, 0.4);
    background: rgba(255, 255, 255, 0.05);
}
.nav-link {
    position: relative;
    padding: 0.5rem 1.25rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--ease-smooth);
    letter-spacing: 0.01em;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cream), var(--cream-dark));
    transition: var(--ease-smooth);
    transform: translateX(-50%);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(232, 230, 227, 0.3);
}
.nav-link:hover,
.nav-link.active {
    color: var(--cream) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}
.nav-link.active {
    font-weight: 600;
}
.btn-glass-nav {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black) !important;
    padding: 0.625rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--ease-smooth);
    box-shadow: 0 4px 16px rgba(232, 230, 227, 0.2);
    letter-spacing: 0.01em;
}
.btn-glass-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 230, 227, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
    color: var(--black) !important;
}
/* User Dropdown */
.user-dropdown-toggle {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--ease-smooth);
}
.user-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.dropdown-menu-glass {
    min-width: 200px;
    background: var(--glass-dark);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    padding: 0.5rem;
    animation: dropdownReveal 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-role-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    padding: 0.25rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dropdown-divider-glass {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 0.35rem 0;
}
.dropdown-item-glass-nav {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--ease-smooth);
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.dropdown-item-glass-nav:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: translateX(2px);
}
@keyframes dropdownReveal {
    from { opacity: 0; transform: translateY(-8px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1.25rem;
        padding: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(16px);
        border-radius: var(--radius-md);
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    .nav-item { margin: 0.35rem 0; }
    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.75rem;
    }
    .user-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
    .dropdown-menu-glass { width: 100%; }
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}
.hero-car-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-car-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}
.hero-overlay-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 5;
    padding: 5rem 0;
}
.hero-text-content {
    max-width: 620px;
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}
.hero-title-gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 153, 255, 0.6));
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8)) 
                drop-shadow(0 0 40px rgba(0, 153, 255, 0.6));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 1)) 
                drop-shadow(0 0 60px rgba(0, 153, 255, 0.8));
    }
}

.hero-main-description {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 560px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}
.btn-hero-primary-glass {
    background: var(--white);
    color: var(--black);
    padding: 0.9rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid var(--white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.01em;
}
.btn-hero-primary-glass:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.3);
    background: var(--off-white);
    color: var(--black);
}
.btn-hero-secondary-glass {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}
.btn-hero-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
    .hero-car-background img { object-position: 70% center; }
}
@media (max-width: 768px) {
    .hero-car-background img { object-position: 60% center; }
    .hero-container { padding: 3rem 0; }
}
/* ============================================
   HERO SMOKE & LIGHT EFFECTS - ULTRA ENHANCED
   ============================================ */
.hero-smoke-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-smoke-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    background:
        radial-gradient(ellipse 800px 400px at 15% 75%, rgba(255, 255, 255, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 700px 350px at 35% 85%, rgba(255, 255, 255, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 60% 90%, rgba(255, 255, 255, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 500px 250px at 25% 80%, rgba(200, 200, 200, 0.08) 0%, transparent 55%);
    animation: smoke-drift 18s ease-in-out infinite alternate;
    opacity: 1;
    filter: blur(2px);
}

.hero-smoke-layer--2 {
    background:
        radial-gradient(ellipse 900px 450px at 70% 80%, rgba(255, 255, 255, 0.16) 0%, transparent 65%),
        radial-gradient(ellipse 750px 380px at 25% 85%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 650px 320px at 50% 75%, rgba(220, 220, 220, 0.09) 0%, transparent 58%);
    animation: smoke-drift-reverse 22s ease-in-out infinite alternate;
    animation-delay: -5s;
    opacity: 0.95;
    filter: blur(3px);
}

.hero-smoke-layer--3 {
    background:
        radial-gradient(ellipse 1100px 280px at 50% 92%, rgba(240, 240, 240, 0.20) 0%, transparent 70%),
        radial-gradient(ellipse 900px 250px at 30% 95%, rgba(220, 220, 220, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 800px 220px at 70% 88%, rgba(200, 200, 200, 0.10) 0%, transparent 60%);
    animation: smoke-rise 14s ease-in-out infinite alternate;
    opacity: 0.85;
    filter: blur(4px);
}

@keyframes smoke-drift {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    50% { transform: translateX(4%) scale(1.03); opacity: 0.85; }
    100% { transform: translateX(8%) scale(1.05); opacity: 1; }
}

@keyframes smoke-drift-reverse {
    0% { transform: translateX(0) scale(1.02); opacity: 0.95; }
    50% { transform: translateX(-3%) scale(1.04); opacity: 0.8; }
    100% { transform: translateX(-6%) scale(1); opacity: 0.95; }
}

@keyframes smoke-rise {
    0% { transform: translateY(0) scale(1); opacity: 0.85; }
    50% { transform: translateY(-4%) scale(1.04); opacity: 0.6; }
    100% { transform: translateY(-8%) scale(1.08); opacity: 0.85; }
}

.hero-light-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-light-beam {
    position: absolute;
    width: 350px;
    height: 140%;
    top: -20%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(232, 230, 227, 0.18) 20%,
        rgba(232, 230, 227, 0.12) 40%,
        rgba(232, 230, 227, 0.05) 60%,
        transparent 100%
    );
    transform: rotate(15deg);
    filter: blur(35px);
    animation: light-sweep 12s ease-in-out infinite;
    box-shadow: 
        0 0 80px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(232, 230, 227, 0.2);
}

.hero-light-beam--1 { 
    left: 8%; 
    opacity: 1; 
    width: 320px;
}

.hero-light-beam--2 { 
    left: 42%; 
    width: 280px; 
    opacity: 0.9; 
    animation-delay: -4s; 
    animation-duration: 16s;
    transform: rotate(12deg);
}

.hero-light-beam--3 { 
    left: 72%; 
    width: 300px; 
    opacity: 0.75; 
    transform: rotate(-12deg); 
    animation-delay: -8s; 
    animation-duration: 20s; 
}

@keyframes light-sweep {
    0% { 
        opacity: 0.5; 
        transform: rotate(15deg) translateX(-10px); 
    }
    25% { 
        opacity: 0.85; 
        transform: rotate(15deg) translateX(15px); 
    }
    50% { 
        opacity: 1; 
        transform: rotate(15deg) translateX(40px); 
    }
    75% { 
        opacity: 0.85; 
        transform: rotate(15deg) translateX(20px); 
    }
    100% { 
        opacity: 0.5; 
        transform: rotate(15deg) translateX(-10px); 
    }
}

.hero-light-flare {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    filter: blur(50px);
    mix-blend-mode: screen;
}

.hero-light-flare--1 {
    width: 550px;
    height: 550px;
    top: 8%;
    right: 12%;
    background: radial-gradient(
        circle, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(232, 230, 227, 0.25) 30%,
        rgba(232, 230, 227, 0.12) 50%,
        transparent 70%
    );
    animation: flare-pulse 8s ease-in-out infinite;
    box-shadow: 
        0 0 100px rgba(255, 255, 255, 0.4),
        0 0 150px rgba(232, 230, 227, 0.3);
}

.hero-light-flare--2 {
    width: 400px;
    height: 400px;
    bottom: 18%;
    left: 18%;
    background: radial-gradient(
        circle, 
        rgba(255, 255, 255, 0.28) 0%, 
        rgba(240, 240, 240, 0.18) 30%,
        rgba(220, 220, 220, 0.10) 50%,
        transparent 70%
    );
    animation: flare-pulse 10s ease-in-out infinite;
    animation-delay: -3s;
    box-shadow: 
        0 0 80px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(240, 240, 240, 0.2);
}

@keyframes flare-pulse {
    0% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: scale(1.15); 
        opacity: 0.85; 
    }
    50% { 
        transform: scale(1.3); 
        opacity: 1; 
    }
    75% { 
        transform: scale(1.15); 
        opacity: 0.85; 
    }
    100% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
}

/* Additional atmospheric layers for depth */
.hero-light-ambient {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        ellipse 120% 80% at 50% 50%,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    animation: ambient-glow 15s ease-in-out infinite alternate;
}

@keyframes ambient-glow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.hero-fog-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
}

/* Particle-like light specs */
.hero-light-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(3px 3px at 50% 50%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(3px 3px at 15% 80%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 40% 20%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 200%;
    background-position: 50% 50%;
    animation: particles-float 20s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes particles-float {
    0%, 100% { 
        background-position: 0% 0%; 
        opacity: 0.4; 
    }
    50% { 
        background-position: 100% 100%; 
        opacity: 0.7; 
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section-glass {
    background: var(--gray-900);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.stats-section-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 20% 50%, rgba(255,255,255,0.02) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
    pointer-events: none;
}
.stat-card-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stat-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--ease-smooth);
}
.stat-card-glass:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}
.stat-card-glass:hover::before {
    opacity: 1;
}
.stat-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(232, 230, 227, 0.15);
    transition: var(--ease-smooth);
}
.stat-card-glass:hover .stat-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(232, 230, 227, 0.25);
}
.stat-icon-box svg {
    color: var(--black);
}
.stat-number-display {
    font-size: 2.75rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin: 0.75rem 0 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section-glass {
    padding: 6rem 0;
    background: var(--black);
    color: var(--white);
    position: relative;
}
.services-section-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.section-title-glass {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
}
.services-section-glass p,
.services-section-glass .lead {
    color: rgba(255, 255, 255, 0.6);
}
.service-card-glass {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-2xl);
    padding: 2.75rem 2rem;
    text-align: center;
    transition: var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(232,230,227,0.2), transparent);
    opacity: 0;
    transition: var(--ease-smooth);
}
.service-card-glass::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(232,230,227,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--ease-smooth);
}
.service-card-glass:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), var(--shadow-glow);
    background: rgba(255, 255, 255, 0.05);
}
.service-card-glass:hover::before,
.service-card-glass:hover::after {
    opacity: 1;
}
.service-icon-circle {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    transition: var(--ease-bounce);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(232, 230, 227, 0.15);
}
.service-card-glass:hover .service-icon-circle {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(232, 230, 227, 0.3);
}
.service-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}
.service-card-description {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}
.service-price-display {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}
.btn-service-book {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--ease-smooth);
    margin-top: 0.75rem;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(232, 230, 227, 0.15);
}
.btn-service-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 230, 227, 0.3);
    color: var(--black);
}
.btn-view-all-services {
    background: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--ease-smooth);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-view-all-services:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
/* ============================================
   SERVICE CATEGORY CARDS
   ============================================ */
.service-category-card {
    position: relative;
    height: 100%;
    transition: var(--ease-smooth);
}
.service-category-card:hover {
    transform: translateY(-10px);
}
.service-category-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--ease-smooth);
}
.service-category-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 2;
    opacity: 0;
    transition: var(--ease-smooth);
}
.service-category-card:hover .service-category-card-inner {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), var(--shadow-cream-glow);
    border-color: rgba(232, 230, 227, 0.15);
}
.service-category-card:hover .service-category-card-inner::before {
    opacity: 1;
}
.service-category-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.service-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-category-card:hover .service-category-img {
    transform: scale(1.08);
}
.service-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}
.service-category-icon-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.service-category-icon-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--ease-smooth);
}
.service-category-card:hover .service-category-icon-placeholder i {
    transform: scale(1.1);
    color: rgba(232, 230, 227, 0.5);
}
.service-category-content {
    padding: 28px 24px;
}
.service-category-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}
.service-category-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 16px;
    min-height: 48px;
}
.service-category-count {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 6px;
}
.service-category-count i {
    color: var(--cream);
}
.btn-service-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(232, 230, 227, 0.2);
    width: 100%;
    justify-content: center;
}
.btn-service-category:hover {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 230, 227, 0.35);
    color: var(--black);
}
.btn-service-category svg {
    transition: transform 0.3s ease;
}
.btn-service-category:hover svg {
    transform: translateX(4px);
}
/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(232,230,227,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.how-it-works-section h2 {
    color: var(--white);
}
.how-it-works-section > .container > .text-center > p,
.how-it-works-section .lead {
    color: rgba(255, 255, 255, 0.6);
}
.how-it-works-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--ease-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.how-it-works-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(232,230,227,0.15), transparent);
    opacity: 0;
    transition: var(--ease-smooth);
}
.how-it-works-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}
.how-it-works-card:hover::after {
    opacity: 1;
}
.how-it-works-number-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(232, 230, 227, 0.15);
    transition: var(--ease-bounce);
}
.how-it-works-card:hover .how-it-works-number-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(232, 230, 227, 0.25);
}
.how-it-works-number {
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
}
.how-it-works-card h5 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.how-it-works-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.65;
}
/* ============================================
   CTA SECTION
   ============================================ */
.cta-section-glass {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.cta-section-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 50%, rgba(232,230,227,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 70% 50%, rgba(232,230,227,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-2xl);
    padding: 4.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-inner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,230,227,0.2), transparent);
}
.cta-title {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 800;
}
.cta-inner-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.btn-cta-signup {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black);
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
    transition: var(--ease-smooth);
    border: none;
    box-shadow: 0 4px 20px rgba(232, 230, 227, 0.2);
    letter-spacing: 0.01em;
}
.btn-cta-signup:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(232, 230, 227, 0.35);
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    color: var(--black);
}
/* ============================================
   PAGE HERO SECTIONS
   ============================================ */
.page-hero-section {
    background: var(--black);
    color: var(--white);
    padding: 5.5rem 0 4.5rem;
    text-align: center;
    position: relative;
}
.page-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.page-hero-section h1 {
    margin-bottom: 0.75rem;
    color: var(--white);
}
.page-hero-section .lead {
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto;
}
/* ============================================
   FOOTER
   ============================================ */
.footer-glass {
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-brand-title {
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.12em;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.footer-brand-description {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-section-title {
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--ease-smooth);
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.2rem 0;
}
.footer-link:hover {
    color: var(--cream);
    transform: translateX(4px);
}
.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 2.5rem 0 1.25rem;
}
.footer-copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}
/* ============================================
   SAFETY PAGE
   ============================================ */
.safety-feature-card {
    transition: var(--ease-smooth);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
}
.safety-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.1);
}
.safety-icon-wrapper {
    margin-bottom: 0.5rem;
}
.safety-icon-circle {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease-smooth);
}
.safety-feature-card:hover .safety-icon-circle {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(232, 230, 227, 0.25);
}
.safety-standards-card {
    border-radius: var(--radius-xl);
    transition: var(--ease-smooth);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
}
.safety-standards-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.safety-standard-item,
.safety-tip-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}
.safety-standard-item:last-child,
.safety-tip-item:last-child {
    border-bottom: none;
}
.community-guidelines-card {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.guideline-item {
    padding: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--ease-smooth);
    color: rgba(255, 255, 255, 0.7);
}
.guideline-item:hover {
    background: rgba(255, 255, 255, 0.04);
}
.safety-contact {
    padding: 2rem 0;
}
/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.service-detail-card {
    transition: var(--ease-smooth);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
}
.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.1);
}
.service-icon-container {
    padding: 1.5rem 0 0.5rem;
}
.service-icon-image {
    max-height: 90px;
    object-fit: contain;
}
.service-detail-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
}
.service-detail-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}
.service-pricing-box {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.service-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.8);
}
.service-pricing-row + .service-pricing-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0.3rem;
    padding-top: 0.6rem;
}
.service-vehicle-badge {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.service-book-btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: var(--ease-smooth);
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black);
    border: none;
}
.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 230, 227, 0.25);
}
.services-features-section {
    background: var(--gray-900);
    padding: 5rem 0;
    color: var(--white);
}
.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.feature-title {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.feature-description {
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.55);
}
.no-services-alert {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.services-cta-section {
    padding: 4rem 0;
}
/* ============================================
   DRIVE / BECOME A DRIVER PAGE
   ============================================ */
.benefit-card {
    transition: var(--ease-smooth);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.1);
}
.requirements-card {
    border-radius: var(--radius-xl);
    transition: var(--ease-smooth);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
}
.requirements-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.requirement-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}
.requirement-item:last-child {
    border-bottom: none;
}
.step-number-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    color: var(--black);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--ease-bounce);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(232, 230, 227, 0.15);
}
.step-item:hover .step-number-circle {
    transform: scale(1.15);
    box-shadow: 0 8px 28px rgba(232, 230, 227, 0.3);
}
.step-item {
    transition: var(--ease-smooth);
    color: var(--white);
}
.step-item p {
    color: rgba(255, 255, 255, 0.6);
}
.how-to-start-card {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
}
.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 1.25rem 0;
    box-shadow: none;
    background: transparent;
    color: var(--white);
}
.faq-accordion .accordion-button::after {
    filter: invert(1);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--cream);
}
.faq-accordion .accordion-body {
    padding: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}
.final-cta {
    padding: 2rem 0 1rem;
}
/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate].fade-in-up {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger */
.row > [data-animate]:nth-child(1) { transition-delay: 0.05s; }
.row > [data-animate]:nth-child(2) { transition-delay: 0.12s; }
.row > [data-animate]:nth-child(3) { transition-delay: 0.19s; }
.row > [data-animate]:nth-child(4) { transition-delay: 0.26s; }
/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1em;
    background-color: var(--black);
    color: var(--white);
    opacity: 0;
    border-radius: var(--radius-sm);
}
.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    top: 1rem;
}
/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glow-text {
    text-shadow: 0 0 24px rgba(232, 230, 227, 0.3);
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .service-category-image,
    .service-category-icon-placeholder {
        height: 180px;
    }
    .service-category-title { font-size: 1.25rem; }
    .service-category-description { font-size: 0.9rem; min-height: auto; }
    .service-category-content { padding: 24px 20px; }
    .btn-service-category { padding: 12px 24px; font-size: 0.9rem; }
    .service-category-icon-placeholder i { font-size: 60px; }
    .section-title-glass { font-size: 2rem; }
    .cta-inner-box { padding: 3rem 1.5rem; }
    .cta-title { font-size: 1.75rem; }
}