/* ============================================
   LUBBON — Premium Black & White CSS
   Version 2.0 | Organized & Enhanced
   ============================================

   TABLE OF CONTENTS
   -----------------
   01. CSS Custom Properties (Variables)
   02. Base & Reset
   03. Typography
   04. Navbar — Glassmorphism
   05. Section Dividers
   06. Hero Section
   07. Hero Effects (Smoke, Light, Fog)
   08. Stats Section
   09. Services Section
   10. Service Category Cards
   11. How It Works Section
   12. Landmarks Section & Cards
   13. CTA Section
   14. Page Hero Sections
   15. Footer
   16. Safety Page
   17. Services Detail Page
   18. Become a Driver Page
   19. Modal (Landmark View More)
   20. Animations & Keyframes
   21. Scroll Animation Observer
   22. Accessibility
   23. Utility Classes
   24. Responsive — Tablet (max 991px)
   25. Responsive — Mobile (max 768px)
   26. Responsive — Small Mobile (max 576px)
   27. Responsive — Extra Small (max 375px)
   28. Touch Device Optimizations
   29. Landscape Orientation
   30. Reduced Motion
   31. Print Styles
   ============================================ */


/* ============================================
   01. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Core Palette */
    --black:          #000000;
    --black-soft:     #0a0a0a;
    --black-card:     #111111;
    --white:          #ffffff;
    --off-white:      #f5f5f5;
    --cream:          #1a1a1a;
    --cream-dark:     #111111;

    /* Grays */
    --gray-50:  #fafafa;
    --gray-100: #f0f0f0;
    --gray-200: #e4e4e4;
    --gray-300: #d1d1d1;
    --gray-600: #6b6b6b;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Glass / Transparency */
    --glass-dark:         rgba(255, 255, 255, 0.97);
    --glass-light:        rgba(0, 0, 0, 0.03);
    --glass-border-light: rgba(0, 0, 0, 0.08);
    --glass-border-dark:  rgba(0, 0, 0, 0.12);

    /* 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(0,0,0,0.04);
    --shadow-cream-glow: 0 0 40px rgba(0,0,0,0.08);

    /* Border Radii */
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  16px;
    --radius-xl:  20px;
    --radius-2xl: 28px;
}


/* ============================================
   02. 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(--white) !important;
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}


/* ============================================
   03. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title-glass {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 800;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 0.6rem;
}

.text-gradient {
    background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}


/* ============================================
   04. NAVBAR — GLASSMORPHISM
   ============================================ */
.glass-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}

.navbar-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    pointer-events: none;
}

/* Brand */
.brand-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 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(--white);
    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(0, 0, 0, 0.3);
}

.brand-text {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--black);
}

/* Toggler */
.navbar-toggler-glass {
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--ease-smooth);
}

.navbar-toggler-glass:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.04);
}

/* Nav Links */
.nav-link {
    position: relative;
    padding: 0.5rem 1.25rem !important;
    color: rgba(0, 0, 0, 0.55) !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(--black), var(--gray-700));
    transition: var(--ease-smooth);
    transform: translateX(-50%);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.nav-link:hover,
.nav-link.active {
    color: var(--black) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link.active {
    font-weight: 600;
}

/* Nav Button */
.btn-glass-nav {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    color: var(--white) !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(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.btn-glass-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black) 100%);
    color: var(--white) !important;
}

/* User Dropdown */
.user-dropdown-toggle {
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--ease-smooth);
}

.user-dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

.dropdown-menu-glass {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    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(0, 0, 0, 0.4);
    font-size: 0.78rem;
    padding: 0.25rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dropdown-divider-glass {
    border-color: rgba(0, 0, 0, 0.08);
    margin: 0.35rem 0;
}

.dropdown-item-glass-nav {
    color: rgba(0, 0, 0, 0.75);
    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(0, 0, 0, 0.05);
    color: var(--black);
    transform: translateX(2px);
}

/* Navbar Mobile Collapse */
@media (max-width: 991px) {
    .glass-navbar {
        padding: 0.75rem 0;
    }

    .brand-text {
        font-size: 1.25rem;
        letter-spacing: 0.08em;
    }

    .brand-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .navbar-collapse {
        margin-top: 1.25rem;
        padding: 1.25rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        border-radius: var(--radius-md);
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-item { margin: 0.35rem 0; }

    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
    }

    .nav-link::after {
        bottom: 5px;
    }

    .navbar-nav .btn,
    .btn-glass-nav {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem;
    }

    .user-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    .dropdown-menu-glass {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .navbar > .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-toggler-glass {
        padding: 0.4rem 0.6rem;
    }
}


/* ============================================
   05. SECTION DIVIDERS
   ============================================ */

/* Standard horizontal rule divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0,0,0,0.08) 20%,
        rgba(0,0,0,0.12) 50%,
        rgba(0,0,0,0.08) 80%,
        transparent 100%
    );
    position: relative;
}

/* Dot accent divider */
.section-divider-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    overflow: visible;
}

.section-divider-dot::before,
.section-divider-dot::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1));
}

.section-divider-dot::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.1), transparent);
}

.section-divider-dot-center {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Wave SVG divider (for bg transitions) */
.section-divider-wave {
    line-height: 0;
    overflow: hidden;
}

.section-divider-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* Thick label divider — "between" two sections */
.section-label-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.section-label-divider::before,
.section-label-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.08);
}

.section-label-divider span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(0,0,0,0.3);
    white-space: nowrap;
}

/* Background band — alternating light/lighter pattern */
.bg-section-white { background: var(--white); }
.bg-section-light { background: var(--gray-100); }
.bg-section-dark  { background: var(--black); color: var(--white); }


/* ============================================
   06. 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);
}

.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, #e8e6e3 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.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);
}

.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);
}


/* ============================================
   07. HERO EFFECTS (Smoke, Light, Fog)
   ============================================ */

/* Smoke */
.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 700px 350px at 15% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 65%),
        radial-gradient(ellipse 600px 300px at 35% 85%, rgba(255, 255, 255, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 500px 250px at 60% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: smoke-drift 18s ease-in-out infinite alternate;
    opacity: 0.8;
}

.hero-smoke-layer--2 {
    background:
        radial-gradient(ellipse 850px 400px at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 650px 320px at 25% 85%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    animation: smoke-drift-reverse 22s ease-in-out infinite alternate;
    animation-delay: -5s;
    opacity: 0.65;
}

.hero-smoke-layer--3 {
    background:
        radial-gradient(ellipse 1000px 250px at 50% 92%, rgba(220, 220, 220, 0.1) 0%, transparent 70%);
    animation: smoke-rise 14s ease-in-out infinite alternate;
    opacity: 0.5;
}

/* Light Overlay */
.hero-light-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-light-beam {
    position: absolute;
    width: 300px;
    height: 140%;
    top: -20%;
    background: linear-gradient(
        180deg,
        rgba(232, 230, 227, 0.1) 0%,
        rgba(232, 230, 227, 0.05) 30%,
        rgba(232, 230, 227, 0.01) 60%,
        transparent 100%
    );
    transform: rotate(15deg);
    filter: blur(40px);
    animation: light-sweep 12s ease-in-out infinite;
}

.hero-light-beam--1 { left: 10%; opacity: 0.8; }
.hero-light-beam--2 { left: 45%; width: 200px; opacity: 0.6; animation-delay: -4s; animation-duration: 16s; }
.hero-light-beam--3 { left: 75%; width: 250px; opacity: 0.4; transform: rotate(-10deg); animation-delay: -8s; animation-duration: 20s; }

/* Flares */
.hero-light-flare {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    filter: blur(60px);
    mix-blend-mode: screen;
}

.hero-light-flare--1 {
    width: 450px;
    height: 450px;
    top: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(232, 230, 227, 0.12) 0%, transparent 70%);
    animation: flare-pulse 8s ease-in-out infinite;
}

.hero-light-flare--2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: flare-pulse 10s ease-in-out infinite;
    animation-delay: -3s;
}

/* Bottom Fog */
.hero-fog-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.5) 30%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 100%
    );
}


/* ============================================
   08. STATS SECTION
   ============================================ */
.stats-section-glass {
    background: var(--gray-100);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    color: var(--black);
}

.stats-section-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 20% 50%, rgba(0,0,0,0.02) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 50%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card-glass {
    background: var(--white);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: var(--ease-smooth);
    border: 1px solid rgba(0, 0, 0, 0.07);
    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(0,0,0,0.1), transparent);
    opacity: 0;
    transition: var(--ease-smooth);
}

.stat-card-glass:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), var(--shadow-glow);
}

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

.stat-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 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(0, 0, 0, 0.2);
    transition: var(--ease-smooth);
}

.stat-card-glass:hover .stat-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon-box svg { color: var(--white); }

.stat-number-display {
    font-size: 2.75rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    margin: 0.75rem 0 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label-text {
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ============================================
   09. SERVICES SECTION
   ============================================ */
.services-section-glass {
    padding: 6rem 0;
    background: var(--white);
    color: var(--black);
    position: relative;
}

.services-section-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.services-section-glass p,
.services-section-glass .lead {
    color: rgba(0, 0, 0, 0.55);
}

.service-card-glass {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: 2.75rem 2rem;
    text-align: center;
    transition: var(--ease-smooth);
    border: 1px solid rgba(0, 0, 0, 0.07);
    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(0,0,0,0.12), transparent);
    opacity: 0;
    transition: var(--ease-smooth);
}

.service-card-glass::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.02) 0%, transparent 60%);
    opacity: 0;
    transition: var(--ease-smooth);
}

.service-card-glass:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1), var(--shadow-glow);
    background: var(--white);
}

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

.service-icon-circle {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 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(--white);
    font-family: 'Montserrat', sans-serif;
    transition: var(--ease-bounce);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card-glass:hover .service-icon-circle {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.service-card-description {
    color: rgba(0, 0, 0, 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(--black);
    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(--black) 0%, var(--gray-700) 100%);
    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);
    margin-top: 0.75rem;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-service-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.btn-view-all-services {
    background: transparent;
    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);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.btn-view-all-services:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.4);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


/* ============================================
   10. 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: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    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(0,0,0,0.1), 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.15), var(--shadow-cream-glow);
    border-color: rgba(0, 0, 0, 0.14);
}

.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-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.service-category-icon-placeholder i {
    font-size: 80px;
    color: rgba(0, 0, 0, 0.2);
    transition: var(--ease-smooth);
}

.service-category-card:hover .service-category-icon-placeholder i {
    transform: scale(1.1);
    color: rgba(0, 0, 0, 0.35);
}

.service-category-content {
    padding: 28px 24px;
}

.service-category-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.service-category-description {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.65;
    margin-bottom: 16px;
    min-height: 48px;
}

.service-category-count {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    gap: 6px;
}

.service-category-count i { color: var(--black); }

.btn-service-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    color: var(--white);
    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(0, 0, 0, 0.2);
    width: 100%;
    justify-content: center;
}

.btn-service-category:hover {
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.btn-service-category svg {
    transition: transform 0.3s ease;
}

.btn-service-category:hover svg {
    transform: translateX(4px);
}


/* ============================================
   11. HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--gray-100);
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works-section h2 { color: var(--black); }

.how-it-works-section > .container > .text-center > p,
.how-it-works-section .lead {
    color: rgba(0, 0, 0, 0.55);
}

.how-it-works-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    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(0,0,0,0.1), transparent);
    opacity: 0;
    transition: var(--ease-smooth);
}

.how-it-works-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 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(--black) 0%, var(--gray-700) 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(0, 0, 0, 0.2);
    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(0, 0, 0, 0.3);
}

.how-it-works-number {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
}

.how-it-works-card h5 {
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-it-works-card p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.95rem;
    line-height: 1.65;
}


/* ============================================
   12. LANDMARKS SECTION & CARDS
   ============================================ */

/* Home section wrapper */
.landmarks-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.landmarks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

/* Full-page landmarks wrapper */
.landmarks-page-wrapper {
    padding: 4rem 0 5rem;
    background: var(--gray-50);
}

/* Province badge */
.landmarks-province-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

/* Filter bar */
.landmarks-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.landmark-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    background: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease-smooth);
    color: rgba(0, 0, 0, 0.55);
    font-family: 'Poppins', sans-serif;
}

.landmark-filter-btn:hover {
    border-color: rgba(0, 0, 0, 0.35);
    color: var(--black);
    background: var(--gray-50);
}

.landmark-filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Landmark Card */
.landmark-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--ease-smooth);
}

.landmark-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1), var(--shadow-glow);
    border-color: rgba(0, 0, 0, 0.13);
}

/* Placeholder image area (home cards - icon style) */
.landmark-card-image {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landmark-icon-bg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: var(--ease-bounce);
}

.landmark-card:hover .landmark-icon-bg {
    transform: scale(1.1);
}

/* Full placeholder image (landmarks page) */
.landmark-card-image-wrap {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.landmark-placeholder-img {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.landmark-card:hover .landmark-placeholder-img {
    transform: scale(1.04);
}

.landmark-placeholder-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: var(--ease-smooth);
}

.landmark-card:hover .landmark-placeholder-img::after {
    opacity: 1;
}

.landmark-ph-emoji {
    font-size: 2.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.landmark-ph-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
}

.landmark-ph-hint {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Category tag on image */
.landmark-category-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

/* Card body */
.landmark-card-body {
    padding: 1.35rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.landmark-location-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.landmark-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.landmark-description {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Tags */
.landmark-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.ltag {
    background: var(--gray-100);
    color: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.07);
    letter-spacing: 0.01em;
    transition: var(--ease-smooth);
}

.landmark-card:hover .ltag {
    background: var(--gray-200);
    border-color: rgba(0, 0, 0, 0.1);
}

/* View More Button */
.btn-landmark-view-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(0,0,0,0.15);
    background: transparent;
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease-smooth);
    font-family: 'Poppins', sans-serif;
    align-self: flex-start;
}

.btn-landmark-view-more:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateX(3px);
}

.btn-landmark-view-more svg {
    transition: transform 0.3s ease;
}

.btn-landmark-view-more:hover svg {
    transform: translateX(3px);
}

/* Landmark CTA Box */
.landmarks-cta-section {
    padding: 0 0 5rem;
    background: var(--gray-50);
}

.landmarks-cta-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
    padding: 3.5rem 2rem;
}

.landmarks-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.landmarks-cta-sub {
    color: rgba(0,0,0,0.5);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Landmark Modal */
.landmark-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.landmark-modal-backdrop.active {
    display: flex;
    animation: modalBackdropIn 0.3s ease;
}

.landmark-modal-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.landmark-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ease-smooth);
    backdrop-filter: blur(8px);
}

.landmark-modal-close:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: rotate(90deg);
}

.landmark-modal-img {
    width: 100%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    position: relative;
    overflow: hidden;
}

.landmark-modal-img-emoji {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

.landmark-modal-img-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
}

.landmark-modal-img-hint {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.landmark-modal-content {
    padding: 1.75rem 2rem 2rem;
}

.landmark-modal-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.38);
    margin-bottom: 0.4rem;
}

.landmark-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.landmark-modal-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(0,0,0,0.4);
    font-weight: 600;
    margin-bottom: 1rem;
}

.landmark-modal-desc {
    font-size: 0.92rem;
    color: rgba(0,0,0,0.65);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.landmark-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.btn-landmark-book-ride {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--ease-smooth);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-landmark-book-ride:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
    color: var(--white);
}

/* Section divider on landmarks page */
.section-divider-wave {
    line-height: 0;
    overflow: hidden;
}

.section-divider-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}


/* ============================================
   13. CTA SECTION
   ============================================ */
.cta-section-glass {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.cta-section-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 50%, rgba(0,0,0,0.02) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 70% 50%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner-box {
    background: var(--white);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-2xl);
    padding: 4.5rem 3rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-lg);
    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(0,0,0,0.1), transparent);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 2.25rem;
    font-weight: 800;
}

.cta-inner-box p {
    color: rgba(0, 0, 0, 0.55);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-signup {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    color: var(--white);
    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(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.btn-cta-signup:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black) 100%);
    color: var(--white);
}


/* ============================================
   14. 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: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.25);
}

.page-hero-section h1  { margin-bottom: 0.75rem; color: var(--white); }
.page-hero-title       { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; letter-spacing: -0.02em; color: var(--white); margin-bottom: 0.75rem; }
.page-hero-subtitle    { color: rgba(255, 255, 255, 0.6); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.page-hero-section .lead { color: rgba(255, 255, 255, 0.6); max-width: 520px; margin: 0 auto; }


/* ============================================
   15. FOOTER
   ============================================ */
.footer-glass {
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 4rem 0 2rem;
    color: rgba(0, 0, 0, 0.6);
}

.footer-brand-title {
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.12em;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-brand-description {
    color: rgba(0, 0, 0, 0.45);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-section-title {
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(0, 0, 0, 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(--black);
    transform: translateX(4px);
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.08);
    margin: 2.5rem 0 1.25rem;
}

.footer-copyright {
    color: rgba(0, 0, 0, 0.35);
    font-size: 0.85rem;
}


/* ============================================
   16. SAFETY PAGE
   ============================================ */
.safety-feature-card {
    transition: var(--ease-smooth);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: var(--black);
}

.safety-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), var(--shadow-glow);
    border-color: rgba(0, 0, 0, 0.12);
}

.safety-icon-wrapper { margin-bottom: 0.5rem; }

.safety-icon-circle {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    color: var(--white);
    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(0, 0, 0, 0.25);
}

.safety-standards-card {
    border-radius: var(--radius-xl);
    transition: var(--ease-smooth);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: var(--black);
}

.safety-standards-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.safety-standard-item,
.safety-tip-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.7);
}

.safety-standard-item:last-child,
.safety-tip-item:last-child {
    border-bottom: none;
}

.community-guidelines-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.guideline-item {
    padding: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--ease-smooth);
    color: rgba(0, 0, 0, 0.7);
}

.guideline-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.safety-contact { padding: 2rem 0; }


/* ============================================
   17. SERVICES DETAIL PAGE
   ============================================ */
.service-detail-card {
    transition: var(--ease-smooth);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: var(--black);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1), var(--shadow-glow);
    border-color: rgba(0, 0, 0, 0.12);
}

.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(--black);
}

.service-detail-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.55);
}

.service-pricing-box {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    color: rgba(0, 0, 0, 0.75);
}

.service-pricing-row + .service-pricing-row {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 0.3rem;
    padding-top: 0.6rem;
}

.service-vehicle-badge {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    color: var(--white);
    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(--black) 0%, var(--gray-700) 100%);
    color: var(--white);
    border: none;
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: var(--white);
}

.services-features-section {
    background: var(--gray-100);
    padding: 5rem 0;
    color: var(--black);
}

.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(--black);
}

.feature-description {
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.55);
}

.no-services-alert {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.services-cta-section {
    padding: 4rem 0;
}


/* ============================================
   18. BECOME A DRIVER PAGE
   ============================================ */
.benefit-card {
    transition: var(--ease-smooth);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: var(--black);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), var(--shadow-glow);
    border-color: rgba(0, 0, 0, 0.12);
}

.requirements-card {
    border-radius: var(--radius-xl);
    transition: var(--ease-smooth);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: var(--black);
}

.requirements-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.requirement-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.7);
}

.requirement-item:last-child { border-bottom: none; }

.step-number-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
    color: var(--white);
    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(0, 0, 0, 0.2);
}

.step-item:hover .step-number-circle {
    transform: scale(1.15);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.step-item {
    transition: var(--ease-smooth);
    color: var(--black);
}

.step-item p {
    color: rgba(0, 0, 0, 0.55);
}

.how-to-start-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 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(--black);
}

.faq-accordion .accordion-button::after { filter: none; }

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--gray-700);
}

.faq-accordion .accordion-body {
    padding: 0 0 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.75;
}

.final-cta { padding: 2rem 0 1rem; }


/* ============================================
   19. MODAL (LANDMARK VIEW MORE)
   ============================================ */
@keyframes modalBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}


/* ============================================
   20. ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes smoke-drift {
    0%   { transform: translateX(0) scale(1); }
    100% { transform: translateX(8%) scale(1.05); }
}

@keyframes smoke-drift-reverse {
    0%   { transform: translateX(0) scale(1.02); }
    100% { transform: translateX(-6%) scale(1); }
}

@keyframes smoke-rise {
    0%   { transform: translateY(0) scale(1); opacity: 0.5; }
    100% { transform: translateY(-8%) scale(1.08); opacity: 0.3; }
}

@keyframes light-sweep {
    0%, 100% { opacity: 0.3; transform: rotate(15deg) translateX(0); }
    50%       { opacity: 0.8; transform: rotate(15deg) translateX(40px); }
}

@keyframes flare-pulse {
    0%, 100% { transform: scale(1);   opacity: 0.4; }
    50%       { transform: scale(1.3); opacity: 0.9; }
}

@keyframes dropdownReveal {
    from { opacity: 0; transform: translateY(-8px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

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


/* ============================================
   21. SCROLL ANIMATION OBSERVER
   ============================================ */
[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 children in rows */
.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; }


/* ============================================
   22. ACCESSIBILITY
   ============================================ */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1em;
    background-color: var(--white);
    color: var(--black);
    opacity: 0;
    border-radius: var(--radius-sm);
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    top: 1rem;
}


/* ============================================
   23. UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}


/* ============================================
   24. RESPONSIVE — TABLET (max 991px)
   ============================================ */
@media (max-width: 991px) {

    /* Hero */
    .hero-wrapper {
        min-height: auto;
        height: auto;
        aspect-ratio: 16/13;
        position: relative;
        overflow: hidden;
    }

    .hero-car-background {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-car-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-overlay-dark {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.5) 100%);
        z-index: 2;
    }

    .hero-overlay-gradient-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, transparent 100%);
        z-index: 2;
    }

    .hero-smoke-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }

    .hero-smoke-layer {
        background:
            radial-gradient(ellipse 600px 300px at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 60%),
            radial-gradient(ellipse 500px 250px at 40% 85%, rgba(255,255,255,0.12) 0%, transparent 65%),
            radial-gradient(ellipse 400px 200px at 70% 82%, rgba(255,255,255,0.1) 0%, transparent 55%);
        animation: smoke-drift 15s ease-in-out infinite alternate;
        opacity: 1;
    }

    .hero-smoke-layer--2 {
        background:
            radial-gradient(ellipse 700px 350px at 60% 85%, rgba(255,255,255,0.13) 0%, transparent 60%),
            radial-gradient(ellipse 550px 280px at 30% 88%, rgba(255,255,255,0.1) 0%, transparent 55%);
        animation: smoke-drift-reverse 18s ease-in-out infinite alternate;
        animation-delay: -4s;
        opacity: 0.9;
    }

    .hero-smoke-layer--3 {
        background: radial-gradient(ellipse 800px 220px at 50% 92%, rgba(220,220,220,0.15) 0%, transparent 65%);
        animation: smoke-rise 12s ease-in-out infinite alternate;
        opacity: 0.85;
    }

    .hero-light-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }

    .hero-light-beam {
        width: 250px;
        height: 150%;
        top: -25%;
        background: linear-gradient(180deg, rgba(232,230,227,0.2) 0%, rgba(232,230,227,0.12) 25%, rgba(232,230,227,0.04) 50%, transparent 100%);
        transform: rotate(15deg);
        filter: blur(35px);
        animation: light-sweep 10s ease-in-out infinite;
    }

    .hero-light-beam--1 { left: 5%; opacity: 1; width: 220px; }
    .hero-light-beam--2 { left: 35%; width: 180px; opacity: 0.85; animation-delay: -3s; animation-duration: 14s; }
    .hero-light-beam--3 { left: 65%; width: 200px; opacity: 0.7; transform: rotate(-10deg); animation-delay: -6s; animation-duration: 16s; }

    .hero-light-flare { filter: blur(50px); }
    .hero-light-flare--1 { width: 350px; height: 350px; top: 20%; right: 5%; background: radial-gradient(circle, rgba(232,230,227,0.25) 0%, transparent 70%); animation: flare-pulse 6s ease-in-out infinite; }
    .hero-light-flare--2 { width: 250px; height: 250px; bottom: 30%; left: 65%; background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%); animation: flare-pulse 8s ease-in-out infinite; animation-delay: -2s; }

    .hero-fog-bottom {
        position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 4;
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 40%, transparent 100%);
    }

    .hero-container {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 5rem 0 4rem;
    }

    .hero-text-content {
        max-width: 100%;
        padding: 0 2rem;
        text-align: left;
        background: none;
        border: none;
        backdrop-filter: none;
        margin: 0;
    }

    .hero-main-title { font-size: 2rem; margin-bottom: 1.25rem; line-height: 1.15; text-align: left; }
    .hero-main-description { font-size: 1rem; max-width: 90%; margin-bottom: 2rem; line-height: 1.7; text-align: left; color: rgba(255,255,255,0.9); }

    .hero-button-group {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    .btn-hero-primary-glass,
    .btn-hero-secondary-glass {
        flex: 1;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        white-space: nowrap;
        min-width: 0;
    }

    /* Stats */
    .stats-section-glass { padding: 3rem 0; }
    .stat-card-glass { padding: 2rem 1.5rem; margin-bottom: 1rem; }
    .stat-number-display { font-size: 2.25rem; }
    .stat-icon-box { width: 48px; height: 48px; }

    /* Services */
    .services-section-glass { padding: 4rem 0; }
    .section-title-glass { font-size: 2rem; }
    .service-card-glass { padding: 2rem 1.5rem; margin-bottom: 1.5rem; }
    .service-icon-circle { width: 64px; height: 64px; font-size: 1.5rem; }
    .service-card-title { font-size: 1.25rem; }
    .service-price-display { font-size: 1.75rem; }
    .service-category-card { margin-bottom: 1.5rem; }
    .service-category-image,
    .service-category-icon-placeholder { height: 180px; }
    .service-category-content { padding: 1.5rem; }
    .service-category-title { font-size: 1.25rem; }

    /* How it works */
    .how-it-works-section { padding: 4rem 0; }
    .how-it-works-card { padding: 2rem 1.5rem; margin-bottom: 1rem; }
    .how-it-works-number-circle { width: 48px; height: 48px; }
    .how-it-works-number { font-size: 1.125rem; }

    /* CTA */
    .cta-section-glass { padding: 4rem 0; }
    .cta-inner-box { padding: 3rem 2rem; margin: 0 1rem; }
    .cta-title { font-size: 1.875rem; }

    /* Page hero */
    .page-hero-section { padding: 4rem 0 3rem; }
    .page-hero-section h1 { font-size: 2rem !important; }
    .page-hero-title { font-size: 2.25rem; }

    /* Landmarks */
    .landmark-card-image { height: 130px; }
    .landmark-placeholder-img { height: 170px; }
    .landmark-card-body { padding: 1.1rem 1.1rem 1.35rem; }
    .landmark-title { font-size: 1rem; }

    /* Footer */
    .footer-glass {
        padding: 3rem 0 1.5rem;
        text-align: center;
    }
    .footer-brand-description { max-width: 100%; margin: 0 auto 1.5rem; }
    .footer-section-title { margin-top: 1.5rem; }
    .footer-link:hover { transform: translateX(0) translateY(-2px); }

    /* Safety */
    .safety-feature-card { margin-bottom: 1.5rem; padding: 1.5rem; }
    .safety-icon-circle { width: 64px; height: 64px; }
    .safety-standards-card, .community-guidelines-card { margin-bottom: 1.5rem; }

    /* Services detail */
    .service-detail-card { margin-bottom: 1.5rem; }
    .service-icon-image { max-height: 70px; }
    .services-features-section { padding: 3rem 0; }

    /* Driver page */
    .benefit-card { margin-bottom: 1.5rem; padding: 1.5rem; }
    .requirements-card { margin-bottom: 1.5rem; }
    .step-number-circle { width: 48px; height: 48px; font-size: 1.125rem; }
    .how-to-start-card { padding: 1.5rem; }
}


/* ============================================
   25. RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
    .hero-wrapper { aspect-ratio: 16/14; }
    .hero-container { padding: 4.5rem 0 3.5rem; }
    .hero-text-content { padding: 0 1.75rem; }
    .hero-main-title { font-size: 1.875rem; }
    .hero-main-description { font-size: 0.95rem; max-width: 92%; }
    .hero-light-beam { width: 200px; }
    .hero-light-flare--1 { width: 280px; height: 280px; }

    .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; }
}


/* ============================================
   26. RESPONSIVE — SMALL MOBILE (max 576px)
   ============================================ */
@media (max-width: 576px) {
    :root {
        --radius-sm:  6px;
        --radius-md:  10px;
        --radius-lg:  14px;
        --radius-xl:  16px;
        --radius-2xl: 20px;
    }

    body { font-size: 15px; line-height: 1.6; }
    h1 { font-size: 1.875rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.25rem !important; }
    h4 { font-size: 1.125rem !important; }
    h5 { font-size: 1rem !important; }
    h6 { font-size: 0.875rem !important; }

    /* Hero */
    .hero-wrapper { aspect-ratio: 16/15; }
    .hero-overlay-gradient-left { width: 90%; }
    .hero-container { padding: 4rem 0 3rem; }
    .hero-text-content { padding: 0 1.5rem; }
    .hero-main-title { font-size: 1.625rem; margin-bottom: 1rem; }
    .hero-main-description { font-size: 0.875rem; max-width: 95%; margin-bottom: 1.75rem; line-height: 1.65; }
    .hero-button-group { flex-direction: column; gap: 0.625rem; max-width: 280px; }
    .btn-hero-primary-glass, .btn-hero-secondary-glass { width: 100%; padding: 0.875rem; font-size: 0.875rem; }
    .hero-smoke-layer { opacity: 0.8; }
    .hero-light-beam { width: 150px; filter: blur(25px); opacity: 0.8; }
    .hero-light-flare--1 { width: 200px; height: 200px; opacity: 0.9; }
    .hero-light-flare--2 { width: 150px; height: 150px; opacity: 0.7; }

    /* Stats */
    .stats-section-glass .row > [class*="col-"] { padding-left: 0.5rem; padding-right: 0.5rem; }
    .stat-card-glass { padding: 1.5rem 1rem; }
    .stat-number-display { font-size: 1.875rem; }
    .stat-label-text { font-size: 0.75rem; }

    /* Services */
    .services-section-glass { padding: 3rem 0; }
    .section-title-glass { font-size: 1.75rem; }
    .services-section-glass .lead { font-size: 0.95rem; }
    .service-card-glass { padding: 1.75rem 1.25rem; }
    .service-icon-circle { width: 56px; height: 56px; font-size: 1.25rem; }
    .service-card-description { font-size: 0.9rem; }
    .service-price-display { font-size: 1.5rem; }
    .btn-service-book, .btn-view-all-services { width: 100%; padding: 0.75rem 1.5rem; }
    .service-category-image, .service-category-icon-placeholder { height: 160px; }
    .service-category-icon-placeholder i { font-size: 48px; }
    .service-category-content { padding: 1.25rem; }
    .service-category-title { font-size: 1.125rem; margin-bottom: 0.5rem; }
    .service-category-description { font-size: 0.875rem; line-height: 1.5; margin-bottom: 0.75rem; }
    .service-category-count { padding: 6px 12px; font-size: 0.75rem; margin-bottom: 1rem; }
    .btn-service-category { padding: 12px 20px; font-size: 0.875rem; }

    /* How it works */
    .how-it-works-section { padding: 3rem 0; }
    .how-it-works-section h2 { font-size: 1.75rem !important; }
    .how-it-works-card { padding: 1.75rem 1.25rem; }
    .how-it-works-card h5 { font-size: 1.1rem !important; }
    .how-it-works-card p { font-size: 0.875rem; }

    /* CTA */
    .cta-section-glass { padding: 3rem 0; }
    .cta-inner-box { padding: 2.5rem 1.5rem; border-radius: var(--radius-xl); }
    .cta-title { font-size: 1.5rem; }
    .cta-inner-box p { font-size: 1rem; }
    .btn-cta-signup { width: 100%; padding: 0.875rem 2rem; }

    /* Page hero */
    .page-hero-section { padding: 3.5rem 0 2.5rem; }
    .page-hero-section h1 { font-size: 1.75rem !important; }
    .page-hero-section .lead { font-size: 0.95rem; padding: 0 1rem; }
    .page-hero-title { font-size: 1.75rem; }

    /* Landmarks */
    .landmark-card-image { height: 110px; }
    .landmark-placeholder-img { height: 150px; }
    .landmark-ph-emoji { font-size: 2rem; }
    .landmark-icon-bg { width: 60px; height: 60px; }
    .landmark-icon-bg svg { width: 28px; height: 28px; }
    .landmark-card-body { padding: 1rem; }
    .landmark-title { font-size: 0.95rem; }
    .landmark-description { font-size: 0.825rem; }
    .landmarks-filter-bar { gap: 0.4rem; }
    .landmark-filter-btn { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
    .ltag { font-size: 0.7rem; padding: 0.2rem 0.55rem; }
    .landmark-modal-box { border-radius: var(--radius-xl); }
    .landmark-modal-img { height: 170px; }
    .landmark-modal-content { padding: 1.25rem 1.25rem 1.5rem; }
    .landmark-modal-title { font-size: 1.2rem; }

    /* Footer */
    .footer-glass { padding: 2.5rem 0 1.25rem; }
    .footer-brand-title { font-size: 1.125rem; }
    .footer-brand-description { font-size: 0.875rem; }
    .footer-section-title { font-size: 0.8rem; margin-bottom: 0.75rem; }
    .footer-link { font-size: 0.875rem; padding: 0.25rem 0; }
    .footer-copyright { font-size: 0.8rem; }

    /* Safety */
    .safety-feature-card { padding: 1.25rem; text-align: center; }
    .safety-icon-wrapper { margin-bottom: 1rem; }
    .safety-icon-circle { width: 56px; height: 56px; }
    .safety-icon-circle svg { width: 28px; height: 28px; }
    .safety-standard-item, .safety-tip-item { padding: 0.625rem 0; font-size: 0.9rem; }
    .guideline-item { padding: 0.875rem; font-size: 0.9rem; }

    /* Services detail */
    .service-detail-card { margin-bottom: 1.25rem; }
    .service-icon-container { padding: 1rem 0 0.25rem; }
    .service-icon-image { max-height: 60px; }
    .service-detail-title { font-size: 1.25rem !important; }
    .service-detail-description { font-size: 0.875rem; }
    .service-pricing-box { padding: 0.875rem 1rem; }
    .service-pricing-row { font-size: 0.9rem; }
    .service-vehicle-badge { font-size: 0.75rem; padding: 0.25rem 0.75rem; }
    .service-book-btn { width: 100%; padding: 0.75rem; }
    .feature-title { font-size: 1.1rem !important; }
    .feature-description { font-size: 0.875rem; }

    /* Driver page */
    .benefit-card { padding: 1.25rem; text-align: center; }
    .benefit-card h4 { font-size: 1.1rem !important; }
    .benefit-card p { font-size: 0.9rem; }
    .requirements-card { padding: 1.25rem; }
    .requirement-item { padding: 0.625rem 0; font-size: 0.9rem; }
    .step-item { text-align: center; margin-bottom: 1.5rem; }
    .step-number-circle { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 0.75rem; }
    .step-item h5 { font-size: 1.1rem !important; }
    .step-item p { font-size: 0.875rem; }
    .how-to-start-card { padding: 1.25rem; }
    .faq-accordion .accordion-button { font-size: 0.95rem; padding: 1rem 0; }
    .faq-accordion .accordion-body { font-size: 0.875rem; line-height: 1.6; }
}


/* ============================================
   27. RESPONSIVE — EXTRA SMALL (max 375px)
   ============================================ */
@media (max-width: 375px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .hero-wrapper { aspect-ratio: 16/16; }
    .hero-container { padding: 3.5rem 0 2.5rem; }
    .hero-text-content { padding: 0 1.25rem; }
    .hero-main-title { font-size: 1.5rem; margin-bottom: 0.875rem; }
    .hero-main-description { font-size: 0.825rem; margin-bottom: 1.5rem; }
    .hero-light-beam { width: 120px; }
    .hero-light-flare--1 { width: 160px; height: 160px; }
    .section-title-glass { font-size: 1.5rem; }
    .stat-number-display { font-size: 1.625rem; }
    .service-price-display { font-size: 1.375rem; }
    .cta-title { font-size: 1.375rem; }
    .service-category-image, .service-category-icon-placeholder { height: 140px; }
    .landmark-placeholder-img { height: 130px; }
}

@media (min-width: 376px) and (max-width: 575px) {
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-category-card { margin-bottom: 1.5rem; }
    .col-md-6 { padding-left: 0.75rem; padding-right: 0.75rem; }
    .hero-text-content { padding: 0 2rem; }
}


/* ============================================
   28. TOUCH DEVICE OPTIMIZATIONS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .service-card-glass:hover,
    .stat-card-glass:hover,
    .how-it-works-card:hover,
    .service-category-card:hover,
    .safety-feature-card:hover,
    .benefit-card:hover,
    .service-detail-card:hover {
        transform: none;
    }

    .service-card-glass:active,
    .stat-card-glass:active,
    .how-it-works-card:active,
    .btn-hero-primary-glass:active,
    .btn-hero-secondary-glass:active,
    .btn-glass-nav:active,
    .btn-service-book:active,
    .btn-service-category:active,
    .btn-cta-signup:active,
    .btn-landmark-view-more:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .brand-icon-wrapper:hover { transform: none; }
    .nav-link:hover::after, .nav-link.active::after { width: 70%; }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-car-background img,
    .service-category-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@supports (padding: max(0px)) {
    .glass-navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-top: max(1rem, env(safe-area-inset-top));
    }

    .hero-container,
    .page-hero-section .container,
    .services-section-glass .container,
    .stats-section-glass .container,
    .how-it-works-section .container,
    .cta-section-glass .container,
    .footer-glass .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer-glass {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}


/* ============================================
   29. LANDSCAPE ORIENTATION
   ============================================ */
@media (max-height: 576px) and (orientation: landscape) {
    .hero-wrapper { min-height: auto; padding: 5rem 0 3rem; }
    .hero-main-title { font-size: 2rem; }
    .hero-button-group { flex-direction: row; }
    .btn-hero-primary-glass, .btn-hero-secondary-glass { width: auto; }
    .navbar-collapse { max-height: 80vh; }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-wrapper { aspect-ratio: auto; min-height: 100vh; }
    .hero-container { padding: 3rem 0; }
    .hero-text-content { max-width: 55%; padding: 0 2rem; }
    .hero-button-group { flex-direction: row; }
    .btn-hero-primary-glass, .btn-hero-secondary-glass { width: auto; flex: 1; }
}


/* ============================================
   30. REDUCED MOTION PREFERENCES
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-smoke-layer,
    .hero-smoke-layer--2,
    .hero-smoke-layer--3,
    .hero-light-beam,
    .hero-light-flare {
        animation: none;
    }
}

@media (prefers-color-scheme: dark) {
    body { background: var(--white) !important; }
}


/* ============================================
   31. PRINT STYLES
   ============================================ */
@media print {
    .glass-navbar,
    .hero-smoke-overlay,
    .hero-light-overlay,
    .hero-fog-bottom,
    .btn-hero-primary-glass,
    .btn-hero-secondary-glass,
    .btn-glass-nav,
    .btn-service-book,
    .btn-service-category,
    .btn-cta-signup,
    .landmark-modal-backdrop {
        display: none !important;
    }

    body { background: white !important; color: black !important; }
    .hero-wrapper { min-height: auto; page-break-inside: avoid; }
}

@supports not (display: grid) {
    .row { display: flex; flex-wrap: wrap; }
    .row > [class*="col-"] { flex: 1; min-width: 250px; }
}


.navbar-brand .brand-icon-wrapper {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.navbar-brand .brand-icon-wrapper .brand-logo-image {
    padding: 0;
    width: 42px;
    height: 42px;
}
