/* ==========================================================================
   CabCab Design System — Modern Minimalist Mobility (Black, Yellow, White)
   With Dedicated Highway Journey Corridor & Official Google Reviews Showcase
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-white: #FFFFFF;
    --bg-offwhite: #F8F9FA;
    --bg-subtle: #F1F3F5;
    --bg-dark: #0E0E10;
    --bg-dark-card: #18181B;
    --bg-dark-card-hover: #222226;

    --text-main: #0E0E10;
    --text-muted: #555860;
    --text-light: #8E929B;
    --text-white: #FFFFFF;

    --accent-yellow: #FFC107;
    --accent-yellow-hover: #E8AC00;
    --accent-yellow-glow: rgba(255, 193, 7, 0.28);
    --accent-yellow-light: #FFF9E6;

    --border-light: rgba(14, 14, 16, 0.08);
    --border-focus: rgba(14, 14, 16, 0.2);
    --border-dark: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);

    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.4);

    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, svg {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 110px 0;
}

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

.text-accent {
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--accent-yellow);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.85;
}

/* Section Header Typography */
.section-header {
    max-width: 780px;
    margin: 0 auto 60px auto;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-yellow-light);
    color: #8C6200;
    border: 1px solid rgba(255, 193, 7, 0.4);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-pill.pill-light {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--accent-yellow);
    border-color: rgba(255, 193, 7, 0.3);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    color: var(--text-main);
    margin-bottom: 18px;
}

.section-description {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-img {
    height: 52px;
    width: auto;
    border-radius: var(--radius-full);
    transition: transform var(--transition-normal);
}

.brand-logo:hover .brand-img {
    transform: scale(1.05) rotate(-3deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1;
    color: var(--text-main);
}

.brand-dot {
    color: var(--accent-yellow);
}

.brand-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
    transition: width var(--transition-normal);
}

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

/* Header Actions */
.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 8px 18px 8px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--accent-yellow);
    border-radius: var(--radius-full);
    color: var(--text-main);
    font-size: 0.95rem;
}

.btn-phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.68rem;
    color: #A0A0A5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.btn-phone:hover {
    background-color: #27272A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Micro Page Progress Dock (Clean, Minimalist, ZERO content overlap)
   ========================================================================== */
.page-progress-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1040;
    pointer-events: none;
    background: rgba(14, 14, 16, 0.05);
}

.progress-track-line {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-track-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FFC107, #FFD54F);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
    transition: width 0.05s linear;
}

.micro-cab-indicator {
    position: absolute;
    bottom: 4px;
    left: 0;
    transform: translateX(-50%);
    width: 48px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: left 0.05s linear;
    will-change: left;
}

.micro-cab-svg {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 90vh;
    padding-top: 130px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ambient-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.75;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.glow-1 {
    top: 10%;
    right: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
}

.glow-2 {
    bottom: 5%;
    left: 10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 236, 179, 0.5) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-accent {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
    display: inline-block;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.2px;
    color: var(--text-main);
    margin-bottom: 24px;
}

.hero-highlight {
    position: relative;
    display: inline-block;
    color: var(--text-main);
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -4px;
    right: -4px;
    height: 20px;
    background-color: var(--accent-yellow);
    z-index: -1;
    border-radius: 6px;
}

.hero-subheading {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 38px auto;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.02rem;
    font-weight: 700;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--bg-dark);
    color: var(--text-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-yellow);
    color: var(--text-main);
    border-color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px var(--accent-yellow-glow);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    border-color: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
    background-color: var(--bg-subtle);
    color: var(--text-main);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    border-color: var(--border-focus);
    transform: translateY(-3px);
}

/* Hero Stats Row */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-md);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.35;
}

/* ==========================================================================
   Dedicated Live Highway Journey Corridor (Signature Car Animation)
   ========================================================================== */
.journey-corridor-section {
    padding: 40px 0 70px 0;
    background-color: var(--bg-white);
}

.journey-corridor-card {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: var(--text-white);
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.journey-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 40px auto;
}

.journey-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.35);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow);
    animation: pulseGlow 1.4s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.journey-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    color: #FFFFFF;
    line-height: 1.25;
}

.journey-title .text-accent {
    color: var(--accent-yellow) !important;
    display: inline-block;
}

.journey-title .text-accent::after {
    background-color: rgba(255, 193, 7, 0.25);
    bottom: 2px;
}

.journey-desc {
    color: #A0A0AA;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Highway Track Layout */
.highway-track-container {
    position: relative;
    background: #141418;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 24px 20px 24px;
    overflow: hidden;
}

/* Milestone Nodes */
.milestones-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
    z-index: 5;
}

.milestone-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.55;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-normal);
}

.milestone-node:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.milestone-node:hover .node-pin {
    border-color: var(--accent-yellow);
    background: #2D2D35;
}

.milestone-node.active {
    opacity: 1;
    transform: translateY(-4px);
}

.milestone-node.active .node-pin {
    background-color: var(--accent-yellow);
    color: var(--text-main);
    box-shadow: 0 0 18px var(--accent-yellow);
    border-color: #FFFFFF;
}

.node-pin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #232328;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

.node-city {
    font-size: 0.92rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.node-detail {
    font-size: 0.72rem;
    color: #8C8C94;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Asphalt Road */
.asphalt-road {
    position: relative;
    height: 84px;
    background: linear-gradient(180deg, #18181D 0%, #1F1F24 50%, #18181D 100%);
    border-radius: 12px;
    border-top: 2px solid #33333A;
    border-bottom: 2px solid #33333A;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.road-lanes {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.lane-dash {
    width: 44px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

/* The Animated Luxury White Cab */
.highway-cab {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 175px;
    z-index: 10;
    will-change: transform;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.6));
    pointer-events: none;
}

.headlight-beam {
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-40%);
    width: 80px;
    height: 38px;
    background: radial-gradient(ellipse at left, rgba(255, 245, 157, 0.5) 0%, rgba(255, 245, 157, 0) 75%);
    pointer-events: none;
    opacity: 0.85;
}

.premium-cab-svg {
    width: 100%;
    height: auto;
}

.wheel-spokes {
    transform-origin: center center;
    will-change: transform;
}

/* Highway Footer */
.highway-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 16px;
}

.speed-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B5B5BE;
    font-weight: 600;
}

.pulse-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 8px #10B981;
}

.active-city-display {
    color: #E4E4E7;
}

.active-city-display strong {
    color: var(--accent-yellow);
}

.btn-instant-call {
    background-color: var(--accent-yellow);
    color: var(--text-main);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-instant-call:hover {
    background-color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================================================
   Routes Section ("Book a cab for and from...")
   ========================================================================== */
.routes-section {
    background-color: var(--bg-offwhite);
    position: relative;
}

.route-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-main);
    border-color: var(--border-focus);
}

.tab-btn.active {
    background-color: var(--bg-dark);
    color: var(--text-white);
    border-color: var(--bg-dark);
    box-shadow: var(--shadow-sm);
}

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

.route-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: background-color var(--transition-fast);
}

.route-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.route-card:hover::before {
    background-color: var(--accent-yellow);
}

.route-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.route-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background-color: var(--bg-subtle);
    color: var(--text-muted);
}

.badge-hot {
    background-color: var(--accent-yellow-light);
    color: #8C6200;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.badge-scenic {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.badge-airport {
    background-color: #E3F2FD;
    color: #1565C0;
    border: 1px solid #BBDEFB;
}

.route-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.route-cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: var(--bg-offwhite);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.city-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.step-dot.origin {
    background-color: var(--text-main);
}

.step-dot.destination {
    background-color: var(--accent-yellow);
    border: 2px solid var(--text-main);
}

.city-type {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1;
}

.city-name {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.route-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
}

.connector-icon {
    font-size: 1.1rem;
    color: var(--accent-yellow-hover);
    font-weight: 800;
}

.route-summary {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 24px;
}

.route-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.vehicle-hint {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.btn-route-book {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-main);
    background-color: var(--accent-yellow);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.btn-route-book:hover {
    background-color: var(--text-main);
    color: var(--text-white);
    transform: translateX(3px);
}

/* Route CTA Banner */
.route-cta-banner {
    margin-top: 60px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 40px 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.banner-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.banner-text p {
    color: #A0A0A5;
    font-size: 1rem;
}

.route-cta-banner .btn-primary {
    background-color: var(--accent-yellow);
    color: var(--text-main);
    border-color: var(--accent-yellow);
    white-space: nowrap;
}

.route-cta-banner .btn-primary:hover {
    background-color: var(--text-white);
    color: var(--text-main);
    border-color: var(--text-white);
}

/* ==========================================================================
   Why Choose CabCab (Features Grid)
   ========================================================================== */
.features-section {
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-white);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    color: var(--text-main);
}

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

/* ==========================================================================
   Google Business Reviews Showcase
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-offwhite);
}

.google-badge-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.google-badge-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.google-g-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.google-badge-info {
    display: flex;
    flex-direction: column;
}

.google-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.score-num {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.stars-gold {
    color: #FBBC05;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.verified-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10B981;
}

.google-badge-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-google-review {
    background-color: var(--bg-dark);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: var(--transition-fast);
}

.btn-google-review:hover {
    background-color: var(--accent-yellow);
    color: var(--text-main);
    transform: translateY(-2px);
}

.btn-google-view {
    background-color: var(--bg-subtle);
    color: var(--text-main);
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.btn-google-view:hover {
    background-color: var(--bg-white);
    border-color: var(--border-focus);
    transform: translateY(-2px);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: rgba(255, 193, 7, 0.4);
}

.review-card.featured-review {
    grid-column: span 2;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF5 100%) !important;
    border: 1.5px solid rgba(255, 193, 7, 0.5) !important;
}

@media (max-width: 992px) {
    .review-card.featured-review {
        grid-column: span 1;
    }
}

.g-ext-icon {
    font-size: 0.78rem;
    color: #9CA3AF;
    margin-left: 4px;
    vertical-align: middle;
    display: inline-block;
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: var(--text-main);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-meta {
    flex: 1;
    margin-left: 12px;
}

.reviewer-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.reviewer-badge {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.google-tiny-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: #4285F4;
    background: rgba(66, 133, 244, 0.08);
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.review-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-date {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: normal;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.review-route-tag {
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    font-size: 0.78rem;
    font-weight: 700;
    color: #8C6200;
}

.reviews-bottom-bar {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 16px 32px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 20px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    flex-wrap: wrap;
}

.btn-outline-google {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-main);
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 2px;
    transition: var(--transition-fast);
}

.btn-outline-google:hover {
    color: #8C6200;
    border-color: var(--text-main);
}

/* ==========================================================================
   SEO Travel Guides & Blog Section
   ========================================================================== */
.blog-section {
    background-color: var(--bg-white);
}

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

.blog-card {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-white);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 193, 7, 0.5);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.blog-tag {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background-color: var(--accent-yellow-light);
    color: #8C6200;
}

.blog-read {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: -0.4px;
    color: var(--text-main);
}

.blog-card p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.blog-link {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.blog-link:hover {
    color: var(--accent-yellow-hover);
    transform: translateX(4px);
}

/* ==========================================================================
   FAQs Accordion Section (AEO Schema)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-offwhite);
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: #7A5500;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-yellow-hover);
    transition: transform var(--transition-fast);
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   Contact Section & Google Maps Viewer Box
   ========================================================================== */
.contact-section {
    background-color: var(--bg-white);
}

.contact-wrapper {
    background-color: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 64px;
    color: var(--text-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    box-shadow: var(--shadow-dark);
}

.contact-heading {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.contact-heading .text-accent::after {
    background-color: rgba(255, 193, 7, 0.4);
}

.contact-subtext {
    color: #A0A0A5;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
}

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

.contact-detail-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-normal);
}

.contact-detail-card:not(.static):hover {
    background: var(--bg-dark-card-hover);
    border-color: var(--accent-yellow);
    transform: translateX(6px);
}

.detail-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: #8C8C94;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1.2;
}

.detail-value.address {
    font-size: 0.96rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.5;
}

.detail-note {
    display: block;
    font-size: 0.8rem;
    color: #8C8C94;
    margin-top: 4px;
}

/* Map Viewer Box */
.contact-map-col {
    display: flex;
    flex-direction: column;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-dark);
}

.map-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
}

.map-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow);
}

.btn-map-out {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-yellow);
    transition: var(--transition-fast);
}

.btn-map-out:hover {
    color: #FFFFFF;
}

.map-iframe-container {
    width: 100%;
    height: 330px;
    background: #111;
}

.map-iframe-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-box-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
    color: #A0A0A5;
}

.text-accent-underline {
    color: var(--accent-yellow);
    font-weight: 700;
}

.text-accent-underline:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 90px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.2fr 1.5fr;
    gap: 48px;
    padding-bottom: 70px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo {
    height: 48px;
    width: auto;
    border-radius: var(--radius-full);
}

.footer-brand-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #FFFFFF;
}

.footer-about {
    color: #8C8C94;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.footer-badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: #A0A0A5;
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    color: #8C8C94;
    font-size: 0.92rem;
    font-weight: 500;
}

.footer-nav-list a:hover {
    color: var(--accent-yellow);
    transform: translateX(4px);
}

.footer-contact-line {
    font-size: 0.92rem;
    color: #8C8C94;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-phone {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-yellow);
}

.footer-map-action {
    display: inline-block;
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 700;
    border-bottom: 1.5px solid var(--accent-yellow);
    padding-bottom: 4px;
    transition: var(--transition-fast);
}

.footer-map-action:hover {
    color: var(--accent-yellow);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    background: #08080A;
}

.legal-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6C6C74;
}

/* ==========================================================================
   Mobile Sticky Action Dock
   ========================================================================== */
.mobile-dock {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(14, 14, 16, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.dock-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
}

.dock-call {
    background-color: var(--accent-yellow);
    color: var(--text-main);
}

.dock-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
    .hero-headline {
        font-size: 3.8rem;
    }
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-headline {
        font-size: 3.2rem;
    }
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .google-badge-card {
        padding: 28px 24px;
    }
    .route-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }
    .highway-cab {
        width: 140px;
    }
}

@media (max-width: 768px) {
    /* Global Mobile Layout & Anti-Overflow */
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section-padding {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.85rem;
        letter-spacing: -0.8px;
        line-height: 1.2;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .section-header {
        margin-bottom: 32px;
    }

    /* Mobile Header & Navigation */
    .header-container {
        padding: 10px 16px;
    }

    .brand-logo {
        gap: 10px;
    }

    .brand-img {
        height: 42px;
        width: auto;
    }

    .brand-name {
        font-size: 1.35rem;
        letter-spacing: -0.5px;
    }

    .brand-tag {
        font-size: 0.62rem;
        letter-spacing: 0.3px;
    }

    .header-cta {
        gap: 8px;
    }

    .btn-phone {
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--accent-yellow);
        border: 1.5px solid #0E0E10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .btn-phone-text {
        display: none !important;
    }

    .btn-phone-icon {
        width: auto;
        height: auto;
        background: transparent !important;
        font-size: 1.15rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0E0E10;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        border-radius: 50%;
        background-color: #F4F4F5;
        border: 1px solid #E4E4E7;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .menu-toggle span {
        width: 18px;
        height: 2px;
        background-color: #0E0E10;
        border-radius: 1px;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
        transform: translateY(-160%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        width: 100%;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 86px;
        padding-bottom: 36px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.76rem;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .hero-headline {
        font-size: 2.15rem;
        line-height: 1.14;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .hero-subheading {
        font-size: 0.98rem;
        line-height: 1.55;
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.98rem;
        justify-content: center;
    }

    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 16px 12px;
        border-radius: var(--radius-sm);
    }

    .stat-value {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.74rem;
        line-height: 1.3;
    }

    /* Live Highway Corridor & Animated Cab */
    .desktop-only-node {
        display: none !important;
    }

    .journey-corridor-card {
        padding: 20px 12px 16px 12px;
        border-radius: var(--radius-md);
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .journey-header {
        margin-bottom: 20px;
    }

    .highway-track-container {
        padding: 14px 10px 12px 10px;
        border-radius: var(--radius-sm);
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .asphalt-road {
        width: 100% !important;
        max-width: 100% !important;
        height: 56px !important;
        border-radius: 8px;
        position: relative;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .highway-cab {
        width: 72px !important;
        height: auto !important;
        position: absolute;
        top: 50%;
        z-index: 10;
        pointer-events: none;
    }

    .headlight-beam {
        width: 32px;
        right: -25px;
        height: 18px;
    }

    .lane-dash {
        width: 18px;
        height: 3px;
    }

    .milestones-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        gap: 0;
        margin-bottom: 12px;
        padding: 0;
    }

    .milestone-node {
        flex: 1;
        max-width: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 2px;
        opacity: 0.55;
        cursor: pointer;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .milestone-node.active {
        opacity: 1;
    }

    .node-pin {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
        margin-bottom: 4px;
        border-width: 1px;
    }

    .node-city {
        font-size: 0.66rem;
        font-weight: 800;
        line-height: 1.15;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
    }

    .node-detail {
        display: none !important;
    }

    .highway-status-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 14px;
    }

    .active-city-display {
        font-size: 0.84rem;
    }

    .btn-instant-call {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Routes Section (Mobile Optimization) */
    .route-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 10px;
        margin-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .route-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .routes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .route-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .route-card-top {
        margin-bottom: 14px;
    }

    .route-badge {
        font-size: 0.72rem;
        padding: 3px 10px;
    }

    .route-time {
        font-size: 0.8rem;
    }

    .route-cities {
        padding: 12px 14px;
        margin-bottom: 14px;
        border-radius: var(--radius-sm);
    }

    .city-step {
        gap: 8px;
    }

    .city-type {
        font-size: 0.65rem;
    }

    .city-name {
        font-size: 1.15rem;
    }

    .connector-icon {
        font-size: 0.95rem;
    }

    .route-summary {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .route-card-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding-top: 14px;
    }

    .vehicle-hint {
        text-align: center;
        font-size: 0.78rem;
    }

    .btn-route-book {
        width: 100%;
        text-align: center;
        padding: 11px 16px;
        font-size: 0.92rem;
        border-radius: var(--radius-full);
    }

    .route-cta-banner {
        padding: 24px 16px;
        border-radius: var(--radius-md);
        margin-top: 36px;
        gap: 16px;
    }

    .route-cta-banner .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 22px 16px;
        border-radius: var(--radius-md);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
        margin-bottom: 14px;
    }

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .feature-desc {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    /* Google Reviews Section */
    .google-badge-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
        margin-bottom: 24px;
        gap: 18px;
    }

    .google-badge-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .google-score-row {
        justify-content: center;
    }

    .score-num {
        font-size: 2.1rem;
    }

    .stars-gold {
        font-size: 1.3rem;
    }

    .google-badge-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .google-badge-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .reviewer-name {
        font-size: 0.95rem;
    }

    .review-text {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .reviews-bottom-bar {
        padding: 20px 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: var(--radius-md);
        gap: 14px;
        margin-top: 24px;
    }

    .btn-trust-call {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Contact & Map Section */
    .contact-wrapper {
        padding: 24px 16px;
        border-radius: var(--radius-md);
        gap: 24px;
    }

    .contact-card-title {
        font-size: 1.45rem;
    }

    .contact-info-list {
        gap: 14px;
    }

    .contact-item-val {
        font-size: 0.88rem;
    }

    .contact-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .contact-actions-row .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .map-container {
        height: 260px;
        border-radius: var(--radius-md);
    }

    /* Footer on Mobile */
    .site-footer {
        padding: 50px 0 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
    }

    .legal-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Sticky Mobile Action Dock */
    .mobile-dock {
        display: flex;
        padding: 8px 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
    }

    .dock-btn {
        padding: 12px 14px;
        font-size: 0.88rem;
        font-weight: 800;
        border-radius: var(--radius-full);
    }

    body {
        padding-bottom: 74px;
    }

    /* Blog Articles on Mobile */
    .blog-feed-section {
        padding: 36px 0 60px 0;
    }

    .article-main-card {
        padding: 22px 16px;
        border-radius: var(--radius-md);
        margin-bottom: 28px;
    }

    .article-title {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .route-matrix-card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 16px -16px;
        padding: 0 16px;
    }

    .route-matrix-table {
        min-width: 480px;
    }

    /* Form Inputs Auto-Zoom Prevention */
    input, select, textarea {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.9rem;
        letter-spacing: -0.8px;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-card {
        padding: 14px 10px;
    }

    .stat-value {
        font-size: 1.45rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .asphalt-road {
        height: 56px;
    }

    .highway-cab {
        width: 76px !important;
    }

    .node-pin {
        width: 26px;
        height: 26px;
        font-size: 0.72rem;
    }

    .node-city {
        font-size: 0.65rem;
    }

    .node-detail {
        display: none;
    }

    .city-name {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   Guaranteed Card Visibility & Legibility (Fix for Faded/Invisible Cards)
   ========================================================================== */
.gsap-card,
.feature-card,
.review-card,
.blog-card,
.route-card,
.stat-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure rich contrast and crisp typography across all cards */
.review-card, .feature-card, .blog-card {
    background-color: #FFFFFF !important;
    border: 1px solid #E4E4E7 !important;
    color: #0E0E10 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-card .review-text,
.feature-card p,
.blog-card p {
    color: #3F3F46 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-card .reviewer-name,
.feature-card h3,
.blog-card h3 {
    color: #0E0E10 !important;
    font-weight: 800;
}

/* ==========================================================================
   Dedicated Blog Page & Article Styles (SEO / GEO / AEO Optimized)
   ========================================================================== */
.blog-page-header {
    padding-top: 130px;
    padding-bottom: 50px;
    background: linear-gradient(180deg, #F8F8FA 0%, #FFFFFF 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.blog-page-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.blog-page-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

.blog-category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.category-pill-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: #FFFFFF;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-pill-btn:hover,
.category-pill-btn.active {
    background: var(--accent-yellow);
    color: var(--text-main);
    border-color: var(--accent-yellow);
}

/* Blog Feed Layout */
.blog-feed-section {
    padding: 60px 0 90px 0;
    background-color: var(--bg-white);
}

.article-main-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 42px 38px;
    margin-bottom: 48px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.04);
    transition: var(--transition-normal);
}

.article-main-card:hover {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-category-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #92400E;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.article-heading {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--text-main);
    margin-bottom: 18px;
    line-height: 1.3;
}

.article-lead {
    font-size: 1.08rem;
    color: #27272A;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* AEO Quick Answer Callout Box */
.aeo-answer-box {
    background: #FFFDF0;
    border-left: 4px solid var(--accent-yellow);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.aeo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #92400E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.aeo-content {
    font-size: 0.98rem;
    color: #1F2937;
    line-height: 1.65;
    font-weight: 500;
}

/* Tables for GEO and Comparisons */
.data-table-wrapper {
    overflow-x: auto;
    margin: 28px 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.seo-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    text-align: left;
}

.seo-data-table th {
    background: #F8F9FA;
    padding: 14px 18px;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 2px solid var(--border-light);
}

.seo-data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-light);
    color: #374151;
}

.seo-data-table tr:last-child td {
    border-bottom: none;
}

.seo-data-table tr:hover {
    background-color: #FAFAFB;
}

/* Article Key Highlights List */
.article-highlights {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-highlights li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.96rem;
    color: #374151;
    line-height: 1.6;
}

.article-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Article CTA Box */
.article-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0E0E10 0%, #1F1F24 100%);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    margin-top: 32px;
    color: #FFFFFF;
    flex-wrap: wrap;
    gap: 16px;
}

.article-cta-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.article-cta-text p {
    color: #9CA3AF;
    font-size: 0.88rem;
    margin: 0;
}
