@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --orange: #ff6b2b;
    --orange-light: #ff8f5e;
    --orange-dark: #d9480f;
    --orange-glow: rgba(255, 107, 43, 0.3);
    --pink: #e81c6e;
    --pink-light: #f04b88;
    --pink-glow: rgba(232, 28, 110, 0.25);
    --dark-950: #03050a;
    --dark-900: #0a0d14;
    --dark-800: #111620;
    --dark-700: #1a1f2e;
    --dark-600: #252b3a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --white: #ffffff;
    
    /* Radii */
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
    --shadow-orange: 0 8px 32px rgba(255, 107, 43, 0.25);
    --shadow-pink: 0 8px 32px rgba(232, 28, 110, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: var(--transition-smooth);
    
    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Gradients */
    --gradient: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    --gradient-hover: linear-gradient(135deg, var(--orange-dark) 0%, var(--pink-light) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 107, 43, 0.08) 0%, rgba(232, 28, 110, 0.05) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-sans); 
  color: var(--gray-700); 
  background: var(--white); 
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .brand-name, .display-font { 
  font-family: var(--font-display); 
  line-height: 1.15; 
  letter-spacing: -0.03em; 
  font-weight: 700;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }
input, select, textarea { font-family: 'Inter', sans-serif; }
img { max-width: 100%; }

/* ===== BADGE & UTILS ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--gradient-soft);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 43, 0.15);
}
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    text-decoration: none;
    gap: 10px;
}
.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 107, 43, 0.35);
}
.btn-secondary {
    background: var(--white);
    color: var(--dark-900);
    border: 1px solid var(--gray-200);
}
.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
.btn-block {
    width: 100%;
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.88rem;
}

/* ── INPUTS ── */
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-weight: 500; font-size: 0.9rem; color: var(--gray-600); }
.input {
  width: 100%; padding: 16px 18px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200); font-size: 1rem;
  transition: var(--transition-fast); outline: none; background: #fff; color: var(--gray-800);
}
.input:hover { border-color: var(--gray-400); }
.input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-light); transform: translateY(-1px); }
.input-icon-wrap { position: relative; }
.input-icon-wrap .ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 1.2rem; pointer-events: none; transition: var(--transition); }
.input:focus + .ico, .input-icon-wrap:focus-within .ico { color: var(--orange); transform: translateY(-50%) scale(1.1); }
.input-icon-wrap .input { padding-left: 48px; }

/* ── CARDS ── */
.card { background: #fff; border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.8); }
.card-shadow { box-shadow: var(--shadow-md); }
.card-hover:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange-light); }
.card-glass { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: var(--shadow-lg); }

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 10px 32px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.navbar-brand img {
    height: 42px;
    width: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.92rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 4px 0;
}
.navbar-links a:hover {
    color: var(--orange);
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition-smooth);
    border-radius: 4px;
}
.navbar-links a:hover::after {
    width: 100%;
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--radius-xs);
    transition: var(--transition-fast);
}
.navbar-toggle:hover {
    background: var(--gray-100);
}
.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark-900);
    border-radius: 2px;
    transition: var(--transition-smooth);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 90;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    animation: slideInRight 0.4s ease-out;
}
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark-900);
}

/* ===== PARTICLES ===== */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(0.3); opacity: 0; }
}

.section { padding: 100px 0; position: relative; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark-900);
}
.section-header p {
    color: var(--gray-500);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

/* ── OTP INPUT ── */
.otp-inputs { display: flex; gap: 12px; justify-content: center; }
.otp-box { width: 56px; height: 64px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 1.6rem; font-weight: 700; text-align: center; color: var(--gray-800); outline: none; transition: var(--transition); background: #fff; box-shadow: var(--shadow-sm); }
.otp-box:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-light), var(--shadow-md); transform: translateY(-2px); }
.otp-box.filled { border-color: var(--orange); background: rgba(255, 106, 0, 0.04); }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-800);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    animation: toastIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.01em;
    font-family: var(--font-sans);
}
.toast.error {
    background: #dc2626;
    box-shadow: 0 12px 36px rgba(220, 38, 38, 0.35);
}
.toast.success {
    background: #059669;
    box-shadow: 0 12px 36px rgba(5, 150, 105, 0.35);
}
.toast.info {
    background: #2563eb;
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.35);
}
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translate(-50%, 24px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-900);
    color: var(--gray-300);
    padding: 56px 0 28px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 43, 0.3), rgba(232, 28, 110, 0.2), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}
.footer-brand .brand-name {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.footer-brand p {
    color: var(--gray-400);
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: 2px 0;
}
.footer-col a:hover {
    color: var(--orange-light);
    transform: translateX(3px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    color: var(--gray-500);
}
.social-links {
    display: flex;
    gap: 14px;
}
.social-link {
    color: var(--gray-400);
    transition: var(--transition-bounce);
    padding: 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
}
.social-link:hover {
    color: var(--orange-light);
    background: rgba(255, 107, 43, 0.15);
    transform: translateY(-3px);
}

/* ── LOADING OVERLAY ── */
.loading-overlay { position: fixed; inset: 0; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); z-index: 500; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; transition: var(--transition); }
.spinner { width: 56px; height: 56px; border: 4px solid var(--gray-100); border-top-color: var(--orange); border-radius: 50%; animation: spin 0.8s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite; box-shadow: 0 0 20px rgba(255,106,0,0.2); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── DRIVER CARD ── */
.driver-card { display: flex; align-items: center; gap: 18px; padding: 20px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: var(--transition); }
.driver-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange-light); }
.driver-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; box-shadow: var(--shadow-orange); border: 2px solid #fff; }
.driver-info h4 { font-weight: 700; font-size: 1.1rem; }
.driver-info .rating { color: #f59e0b; font-size: 0.9rem; font-weight: 600; margin-top: 2px; }
.driver-info .vehicle { color: var(--gray-500); font-size: 0.85rem; margin-top: 4px; background: var(--gray-50); padding: 4px 8px; border-radius: 6px; display: inline-block; }

/* ── MAP BOX ── */
#map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); transition: var(--transition); }
#map:hover { box-shadow: var(--shadow-lg); border-color: var(--orange-light); }

/* ── VEHICLE SELECT ── */
.vehicle-option { padding: 20px; border: 2px solid var(--gray-100); border-radius: var(--radius-lg); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 16px; background: #fff; position: relative; overflow: hidden; }
.vehicle-option:hover { border-color: var(--orange-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.vehicle-option.selected { border-color: var(--orange); background: var(--gradient-soft); box-shadow: var(--shadow-md); }
.vehicle-option.selected::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gradient); }
.vehicle-option .v-icon { font-size: 2.2rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); transition: var(--transition); }
.vehicle-option.selected .v-icon { transform: scale(1.15); filter: drop-shadow(0 8px 16px rgba(255,106,0,0.2)); }
.vehicle-option .v-info { flex: 1; }
.vehicle-option .v-info h4 { font-weight: 700; font-size: 1.05rem; }
.vehicle-option .v-info p { color: var(--gray-500); font-size: 0.85rem; margin-top: 2px; }
.vehicle-option .v-price { font-weight: 800; color: var(--orange); font-size: 1.25rem; text-align: right; font-family: 'Outfit', sans-serif; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 43, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(232, 28, 110, 0.05), transparent 40%),
                var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 80%, var(--white) 100%);
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
}

.hero-content {
    width: 45%;
    margin-left: 55%;
    text-align: left;
    position: relative;
    z-index: 3;
    padding: 80px 40px 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-eyebrow span {
    color: var(--orange);
    font-weight: 800;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--dark-950);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
}

.hero-content p {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
    margin-left: 0;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gray-400);
}

.scroll-line {
    width: 80px;
    height: 2px;
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--orange);
    animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

@media (max-width: 1024px) {
    .hero-bg-wrapper { width: 100%; opacity: 0.1; }
    .hero-overlay { display: none; }
    .hero-content { width: 100%; margin-left: 0; padding: 120px 24px 80px; align-items: center; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .scroll-indicator { right: 40px; bottom: 40px; transform: none; }
}

/* ===== QUICK BOOK ===== */
.quick-book {
    max-width: 960px;
    margin: -60px auto 0;
    position: relative;
    z-index: 20;
    padding: 0 24px;
}
.quick-book-inner {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}
.quick-book-inner:hover {
    box-shadow: 0 36px 96px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}
.vtype-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.vtype-tab {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-200);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--gray-600);
}
.vtype-tab:hover {
    border-color: var(--orange-light);
    color: var(--orange);
    background: rgba(255, 107, 43, 0.03);
}
.vtype-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(255, 107, 43, 0.3);
    transform: scale(1.03);
}
.quick-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}
@media (max-width: 768px) { .quick-form { grid-template-columns: 1fr; } .quick-book { margin-top: -40px; } }

/* ── SVC CARD ── */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.svc-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    transition: width var(--transition-smooth);
}
.svc-card:hover::before {
    width: 60%;
}
.svc-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 43, 0.2);
    box-shadow: var(--shadow-xl);
}
.svc-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 107, 43, 0.08), rgba(232, 28, 110, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    color: var(--orange);
    transition: var(--transition-bounce);
}
.svc-card:hover .svc-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.18);
}
.svc-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.08rem;
    color: var(--dark-900);
}
.svc-card p {
    color: var(--gray-500);
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* ===== WHY CARDS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-card {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: var(--transition-bounce);
    background: var(--white);
    position: relative;
}
.why-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(255, 107, 43, 0.1);
    background: rgba(255, 255, 255, 0.98);
}
.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--orange);
    display: inline-flex;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 43, 0.06);
    transition: var(--transition-bounce);
}
.why-card:hover .why-icon {
    background: rgba(255, 107, 43, 0.12);
    transform: scale(1.08);
}
.why-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-900);
    font-size: 1.1rem;
}
.why-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.how-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 8px 0;
}
.how-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.3);
    font-family: var(--font-mono);
}
.how-step h4 {
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--dark-900);
}
.how-step p {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.how-cta-card {
    background: linear-gradient(160deg, var(--dark-900) 0%, var(--dark-700) 100%);
    border-radius: var(--radius-2xl);
    padding: 52px 36px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.how-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 107, 43, 0.2), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(232, 28, 110, 0.15), transparent 50%);
    pointer-events: none;
}
.how-cta-card > * {
    position: relative;
    z-index: 1;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(160deg, var(--dark-950) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
    padding: 90px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 43, 0.2), transparent 55%),
        radial-gradient(ellipse at 75% 50%, rgba(232, 28, 110, 0.16), transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 143, 94, 0.08), transparent 40%);
}
.cta-banner > * {
    position: relative;
    z-index: 1;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed, .reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* -- LUCIDE ICONS -- */
[data-lucide], .lucide { width: 1em; height: 1em; display: inline-block; vertical-align: text-bottom; stroke-width: 2; }

/* ===== BOOKING PAGE ===== */
.booking-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 24px 72px;
}
.booking-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: start;
}
.booking-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.booking-title {
    margin-bottom: 10px;
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--dark-900);
}
.booking-subtitle {
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.6;
}
.vehicle-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 28px;
}
.vehicle-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-align: left;
    width: 100%;
}
.vehicle-option:hover {
    border-color: var(--orange-light);
    background: rgba(255, 107, 43, 0.02);
}
.vehicle-option.selected {
    border-color: var(--orange);
    background: rgba(255, 107, 43, 0.05);
    box-shadow: 0 8px 20px rgba(255, 107, 43, 0.1);
}
.v-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
}
.vehicle-option.selected .v-icon {
    background: var(--orange);
    color: #fff;
}
.v-info {
    flex-grow: 1;
}
.v-info h4 {
    font-weight: 700;
    margin-bottom: 2px;
}
.v-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.v-price {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark-900);
}
.estimate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0 28px;
}
.stat-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: var(--transition-smooth);
}
.stat-card:hover {
    background: #fff;
    border-color: var(--orange-light);
    box-shadow: var(--shadow-sm);
}
.stat-label {
    color: var(--gray-500);
    font-size: .85rem;
    margin-bottom: 6px;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-900);
}
.map-box {
    min-height: 260px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== DASHBOARD PAGE ===== */
.dashboard-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 36px 24px 64px;
}
.dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}
.dashboard-sub {
    color: var(--gray-500);
    margin-top: 8px;
}
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}
.summary-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.summary-label {
    color: var(--gray-500);
    font-size: .84rem;
    margin-bottom: 10px;
}
.summary-value {
    font-family: "Outfit", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
}
.orders-list {
    display: grid;
    gap: 16px;
}
.order-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.order-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}
.order-route {
    display: grid;
    gap: 8px;
    color: var(--gray-600);
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    text-transform: capitalize;
}
.status-pill.pending {
    background: rgba(245, 158, 11, .14);
    color: #b45309;
}
.status-pill.assigned {
    background: rgba(59, 130, 246, .14);
    color: #1d4ed8;
}
.status-pill.delivered {
    background: rgba(16, 185, 129, .14);
    color: #047857;
}
.status-pill.cancelled {
    background: rgba(239, 68, 68, .14);
    color: #b91c1c;
}
.empty-state {
    background: #fff;
    border: 1px dashed var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    color: var(--gray-500);
}
@media (max-width: 768px) {
    .summary-grid { grid-template-columns: 1fr; }
    .dashboard-head { flex-direction: column; align-items: start; }
    .order-top { flex-direction: column; }
}

/* ===== AUTH PAGE ===== */
body.auth-body { background: #f9fafb; }
.auth-wrap {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 68px);
}
.auth-left {
    background: linear-gradient(145deg, #0a0a0f 0%, #1a1a2e 60%, #0a0a0f 100%);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.auth-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(255, 106, 0, .22), transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(238, 9, 121, .16), transparent 55%);
}
.auth-left * { position: relative; z-index: 1; }
.auth-left .brand {
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
}
.auth-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.auth-left p {
    color: rgba(255, 255, 255, .58);
    font-size: .96rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
}
.feature-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}
.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
}
.auth-card {
    background: #fff;
    border-radius: 28px;
    padding: 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}
.auth-step { display: none; }
.auth-step.active { display: block; }
.step-dots { display: flex; gap: 8px; margin-bottom: 32px; }
.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    transition: .3s;
}
.dot.active { background: #ff6a00; width: 24px; }
.dot.done { background: #10b981; }
.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.auth-sub {
    color: #6b7280;
    font-size: .9rem;
    margin-bottom: 28px;
}
.tab-switch {
    display: flex;
    background: #f3f4f6;
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 28px;
}
.tab-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: .3s;
}
.tab-btn.active {
    background: #fff;
    color: #ff6a00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
.otp-hint {
    text-align: center;
    color: #6b7280;
    font-size: .88rem;
    margin-bottom: 22px;
}
.otp-hint span { color: #ff6a00; font-weight: 600; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
.otp-box {
    width: 48px;
    height: 56px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-900);
    transition: .2s;
    outline: none;
}
.otp-box:focus { border-color: #ff6a00; box-shadow: 0 0 0 3px rgba(255,106,0,.15); }
.otp-box.filled { border-color: #ff6a00; background: rgba(255,106,0,.05); }
.resend-row {
    text-align: center;
    margin-top: 16px;
    font-size: .85rem;
    color: #6b7280;
}
.resend-btn {
    color: #ff6a00;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    font-size: .85rem;
}
.resend-btn:disabled { color: #9ca3af; cursor: not-allowed; }
.success-state { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: .85rem;
    cursor: pointer;
    border: none;
    background: none;
    margin-bottom: 20px;
}
.back-link:hover { color: #ff6a00; }
.helper-note { margin-top: 18px; color: #6b7280; font-size: .82rem; line-height: 1.5; }
@media (max-width: 768px) {
    .auth-wrap { grid-template-columns: 1fr; }
    .auth-left { display: none; }
    .auth-right { padding: 24px 16px; }
    .auth-card { padding: 28px 20px; }
    .otp-box { width: 40px; height: 48px; font-size: 1.2rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .quick-form { grid-template-columns: 1fr 1fr; }
    .quick-form .btn-block { grid-column: span 2; }
}

@media (max-width: 900px) {
    .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 12px 20px; }
    .navbar-links { display: none; }
    .navbar-actions .btn-secondary { display: none; }
    .navbar-toggle { display: flex; }
    .hero { min-height: auto; padding: 100px 0 80px; }
    .hero-content { padding: 0 8px; max-width: 100%; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 0.95rem; }
    .quick-book { margin-top: -40px; padding: 0 12px; }
    .quick-book-inner { padding: 20px; border-radius: var(--radius-xl); }
    .quick-form { grid-template-columns: 1fr; gap: 12px; }
    .quick-form .btn-block { grid-column: span 1; }
    .vtype-tabs { gap: 6px; }
    .vtype-tab { padding: 8px 14px; font-size: 0.78rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .grid-3 { grid-template-columns: 1fr; gap: 14px; }
    .grid-4 { grid-template-columns: 1fr 1fr; gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 1.6rem; }
    .how-cta-card { padding: 36px 24px; }
    .cta-banner { padding: 56px 20px; }
    .mobile-menu.active { display: flex; }
    .hero-eyebrow { font-size: 0.72rem; padding: 7px 14px; }
}

@media (max-width: 640px) {
    .estimate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; gap: 12px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .vtype-tabs { flex-direction: column; }
    .vtype-tab { justify-content: center; }
    .container { padding: 0 16px; }
}
