/* ============================================================
   CabRide – Savaari-inspired responsive frontend
   ============================================================ */

:root {
    --primary: #e85d04;
    --primary-dark: #c44900;
    --primary-light: #fff4ed;
    --secondary: #1a1a2e;
    --text: #333333;
    --text-muted: #666666;
    --border: #e8e8e8;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --success: #28a745;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-sm: 8px;
    --header-h: 72px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,93,4,.35);
}

.btn-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-radius: 6px;
}
.btn-cta:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232,93,4,.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary-light); color: var(--primary-dark); }

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
.btn-secondary:hover { background: #2d2d4a; color: #fff; }

.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ── Top bar ─────────────────────────────────────────────── */
.top-bar {
    background: var(--secondary);
    color: #fff;
    font-size: .8rem;
    padding: 6px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-tag { opacity: .85; letter-spacing: .3px; }
.top-bar-phone {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.top-bar-phone:hover { color: var(--primary); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -.5px;
}

.main-nav ul {
    display: flex;
    gap: 28px;
}
.main-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: .95rem;
    position: relative;
    padding: 4px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-content h1 span { color: var(--primary); }

.hero-subtitle {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: .85rem;
    backdrop-filter: blur(4px);
}
.hero-badge strong { display: block; font-size: 1rem; }

/* ── Booking widget ──────────────────────────────────────── */
.booking-widget {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.booking-tab {
    padding: 14px 8px;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}
.booking-tab:hover { color: var(--primary); background: #fff; }
.booking-tab.active {
    color: var(--primary);
    background: #fff;
    border-bottom-color: var(--primary);
}

.booking-form {
    padding: 24px;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.booking-form .form-group { margin-bottom: 16px; min-width: 0; }
.booking-form .form-group.full { grid-column: 1 / -1; }

.form-label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    min-width: 0;
}
select.form-control {
    padding-right: 36px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    cursor: pointer;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,.12);
}

.form-control-icon {
    position: relative;
    min-width: 0;
}
.form-control-icon .form-control { padding-left: 40px; padding-right: 36px; }
.form-control-icon .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}

/* ── Section common ──────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* ── Features / USP ──────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.feature-card p { font-size: .875rem; color: var(--text-muted); }

/* ── Services cards ──────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 120px 1fr;
    transition: box-shadow var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.service-card-body p { font-size: .875rem; color: var(--text-muted); margin-bottom: 12px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: .75rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* ── Routes grid ─────────────────────────────────────────── */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.route-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}
.route-card-photo {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.route-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: inherit;
}
.routes-grid-photo .route-card-photo {
    padding: 0;
    overflow: hidden;
}
.route-card-thumb {
    height: 140px;
    width: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.route-card-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.route-cities {
    font-weight: 700;
    font-size: .95rem;
    color: var(--secondary);
    margin-bottom: 0;
    line-height: 1.4;
    word-break: break-word;
}
.route-meta {
    font-size: .8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.route-card-photo .route-meta .service-tag {
    font-size: .72rem;
    padding: 3px 8px;
    border-radius: 20px;
}
.route-price {
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-stars {
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: .9rem;
    color: var(--text);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: .9rem;
}
.testimonial-name { font-weight: 600; font-size: .875rem; }
.testimonial-route { font-size: .75rem; color: var(--text-muted); }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
    background: var(--primary);
    color: #fff;
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: .875rem; opacity: .85; }

/* ── CTA banner ──────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary), #0f3460);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-banner p { opacity: .85; margin-bottom: 28px; font-size: 1.05rem; }
.cta-phone {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
}

/* ── Page header (inner pages) ───────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--secondary), #0f3460);
    color: #fff;
    padding: 48px 0;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 8px;
}
.page-hero p { opacity: .85; font-size: 1.05rem; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: .875rem;
    margin-bottom: 16px;
    opacity: .7;
}
.breadcrumb a { color: #fff; }
.breadcrumb span { opacity: .5; }

/* ── Car selection (booking) ─────────────────────────────── */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 0 20px;
}
.booking-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0 24px;
}
.booking-step::after {
    content: '→';
    position: absolute;
    right: -4px;
    opacity: .4;
}
.booking-step:last-child::after { display: none; }
.booking-step.active { color: var(--primary); }
.booking-step.done { color: var(--success); }
.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}
.booking-step.active .step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.booking-step.done .step-num {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.cars-list { display: flex; flex-direction: column; gap: 16px; }

.car-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: border-color var(--transition);
}
.car-card:hover, .car-card.selected { border-color: var(--primary); }

.car-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    flex-shrink: 0;
}
.car-card-media .fleet-thumb {
    width: 130px;
    height: 86px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.car-card-media .car-icon {
    width: 130px;
    height: 86px;
    margin: 0 auto;
}

.car-icon {
    width: 80px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.car-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); }
.car-type { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; }
.car-features { display: flex; flex-wrap: wrap; gap: 8px; }
.car-feature {
    font-size: .75rem;
    background: var(--bg-alt);
    padding: 3px 10px;
    border-radius: 20px;
    color: var(--text-muted);
}
.car-price-block { text-align: right; }
.car-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}
.car-price-note { font-size: .75rem; color: var(--text-muted); }

/* ── Checkout ────────────────────────────────────────────── */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}
.checkout-form-card, .summary-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.checkout-form-card h3, .summary-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: .9rem;
    border-bottom: 1px dashed var(--border);
}
.summary-row.total {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    border-bottom: none;
    padding-top: 12px;
}

/* ── Confirmation ──────────────────────────────────────────── */
.confirm-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 32px;
    box-shadow: var(--shadow);
}
.confirm-icon {
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}
.confirm-box h2 { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.booking-id {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 16px 0;
}

/* ── Blog ────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light), #ffe0cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.blog-card-body { padding: 20px; }
.blog-category {
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.blog-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card-body p { font-size: .875rem; color: var(--text-muted); margin-bottom: 12px; }
.blog-meta { font-size: .75rem; color: var(--text-muted); }

/* ── Route detail / CMS content ──────────────────────────── */
.content-area {
    max-width: 800px;
    margin: 0 auto;
}
.content-area h1 { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
.content-area h2 { font-size: 1.4rem; font-weight: 700; margin: 28px 0 12px; color: var(--secondary); }
.content-area p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.content-area ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.content-area li { margin-bottom: 6px; }

.faq-section { margin-top: 40px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open {
    border-color: rgba(232, 93, 4, .35);
    box-shadow: 0 8px 28px rgba(232, 93, 4, .12);
}
.faq-question {
    padding: 18px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: .98rem;
    color: var(--secondary);
    transition: color var(--transition), background var(--transition);
}
.faq-item.open .faq-question {
    color: var(--primary);
    background: linear-gradient(90deg, rgba(232, 93, 4, .06) 0%, #fff 100%);
}
.faq-q-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--primary);
}
.faq-q-icon svg {
    width: 22px;
    height: 22px;
}
.faq-item.open .faq-q-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232, 93, 4, .35);
}
.faq-q-text { flex: 1; line-height: 1.45; min-width: 0; }
.faq-q-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-alt);
    position: relative;
    transition: background var(--transition), transform var(--transition);
}
.faq-q-toggle::before,
.faq-q-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--secondary);
    transform: translate(-50%, -50%);
    transition: background var(--transition);
}
.faq-q-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-q-toggle {
    background: var(--primary);
    transform: rotate(180deg);
}
.faq-item.open .faq-q-toggle::before,
.faq-item.open .faq-q-toggle::after { background: #fff; }
.faq-item.open .faq-q-toggle::after { opacity: 0; }
.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer {
    padding: 0 20px 0 20px;
    margin: 0;
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.75;
    transition: padding .35s ease;
}
.faq-item.open .faq-answer { padding: 4px 20px 20px 78px; }
.faq-item:not(.open) .faq-answer { padding-bottom: 0; }
@media (max-width: 600px) {
    .faq-item.open .faq-answer { padding: 4px 16px 16px 16px; }
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-item h4 { font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: .9rem; color: var(--text-muted); }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,.75);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo .logo-text { color: #fff; }
.footer-desc { font-size: .875rem; margin: 16px 0; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,.75); font-size: .875rem; }
.footer-contact a:hover { color: var(--primary); }
.footer-col h4 {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .875rem; }
.footer-col a:hover { color: var(--primary); }
.footer-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ── Floating contact buttons ─────────────────────────────── */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    z-index: 1000;
}

.fab-call {
    display: none;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 93, 4, .35);
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}
.fab-call:hover { transform: scale(1.06); color: #fff; box-shadow: 0 6px 20px rgba(232, 93, 4, .45); }

.fab-whatsapp {
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}
.fab-whatsapp:hover { transform: scale(1.06); color: #fff; box-shadow: 0 6px 20px rgba(37, 211, 102, .5); }
.fab-whatsapp svg { width: 26px; height: 26px; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border: none;
    font-weight: 600;
}
.btn-whatsapp:hover { background: #1da851; color: #fff; }

.booking-cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}
.booking-cta-row-checkout { margin-top: 12px; }
.booking-whatsapp-group { margin-bottom: 16px; }
.label-optional { font-weight: 400; color: var(--text-muted); font-size: .85em; }
.phone-input-wrap-country {
    display: flex;
    align-items: stretch;
}
.country-code-select {
    width: 165px;
    min-width: 130px;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0 10px;
    background: var(--bg-alt);
    color: var(--secondary);
    font-weight: 600;
    font-size: .9rem;
}
.phone-input-wrap-country .form-control {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 480px) {
    .phone-input-wrap-country {
        flex-direction: column;
        gap: 8px;
    }
    .country-code-select,
    .phone-input-wrap-country .form-control {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        min-height: 46px;
    }
}

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.hide-mobile { display: inline-flex; }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }

/* ── Hero & promo banners ────────────────────────────────── */
.hero-banner {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
}
.page-hero-banner {
    background-size: cover !important;
    background-position: center !important;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.promo-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
    display: block;
}
.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}
.promo-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.promo-card-body { padding: 20px; }
.promo-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.promo-card-body p { font-size: .875rem; color: var(--text-muted); margin-bottom: 10px; }
.promo-link { color: var(--primary); font-weight: 600; font-size: .875rem; }

.service-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.service-emoji { font-size: 2.5rem; }
.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.feature-card .feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; }
}

/* ── Distance preview & airport direction ───────────────── */
.distance-preview {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
}
.distance-badge { font-size: .9rem; color: var(--secondary); }
.distance-badge strong { color: var(--primary); }
.distance-note { display: block; font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

.airport-direction {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.direction-option { cursor: pointer; }
.direction-option input { display: none; }
.direction-card {
    display: block;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.direction-option input:checked + .direction-card {
    border-color: var(--primary);
    background: var(--primary-light);
}
.direction-card strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.direction-card small { color: var(--text-muted); font-size: .75rem; }

.fleet-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
}

@media (max-width: 480px) {
    .airport-direction { grid-template-columns: 1fr; }
}

/* ── Route detail layout ─────────────────────────────────── */
.route-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 1024px) {
    .route-detail-grid { grid-template-columns: 1fr; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-110%);
        opacity: 0;
        transition: all var(--transition);
        z-index: 999;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; }
    .main-nav ul { flex-direction: column; padding: 16px 20px; gap: 0; }
    .main-nav li { border-bottom: 1px solid var(--border); }
    .main-nav a { display: block; padding: 14px 0; }
    .main-nav a::after { display: none; }

    .hamburger { display: flex; }
    .hide-mobile { display: none !important; }
    .fab-call { display: flex; }

    .booking-tabs { grid-template-columns: repeat(2, 1fr); }
    .booking-form .form-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { grid-template-columns: 80px 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr 1fr; }
    .car-card { grid-template-columns: 140px 1fr; text-align: left; }
    .car-card-media { width: 140px; }
    .car-card-media .fleet-thumb { width: 130px; height: 86px; }
    .car-price-block { text-align: right; border-top: none; padding-top: 0; }
    .car-features { justify-content: flex-start; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .booking-steps { flex-wrap: wrap; gap: 8px; }
    .booking-step::after { display: none; }
    .hero { padding: 40px 0 60px; }
    .section { padding: 48px 0; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .booking-tabs { grid-template-columns: 1fr 1fr; }
    .booking-tab { font-size: .72rem; padding: 10px 4px; }
    .promo-slide { flex: 0 0 100%; }
}

/* ============================================================
   SAVAARI-STYLE HERO, CAROUSELS & SERVICES
   ============================================================ */

.hero-savaari {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-carousel-track { width: 100%; height: 100%; position: relative; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-img,
.page-banner-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slide::after,
.page-banner-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}

.hero-savaari-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 40px;
}
.hero-savaari-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-kicker {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.booking-widget-savaari {
    width: 100%;
    max-width: 920px;
    box-shadow: 0 12px 48px rgba(0,0,0,.25);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}
.booking-widget-savaari .booking-form {
    padding: 20px 20px 24px;
}
.booking-widget-savaari .booking-form .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.booking-widget-savaari .btn-block {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}
.booking-tabs-savaari {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f5f5f5;
}
.booking-tabs-savaari .booking-tab {
    padding: 16px 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    border-bottom: 3px solid transparent;
}
.booking-tabs-savaari .booking-tab.active {
    color: var(--primary);
    background: #fff;
    border-bottom-color: var(--primary);
}

/* Carousel controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.9);
    color: var(--primary);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background var(--transition);
}
.carousel-btn:hover { background: #fff; }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.carousel-dot.active { background: #fff; }

/* Promo carousel */
.promo-section { padding: 32px 0; background: #fff; }
.promo-section-hero {
    padding: 20px 0 4px;
    background: transparent;
    width: 100%;
    max-width: 920px;
    margin: 24px auto 0;
}
.promo-section-hero .promo-slide-content h3 { color: var(--secondary); }
.promo-section-hero .promo-cta { color: var(--primary); }
.promo-carousel { position: relative; display: flex; align-items: center; gap: 12px; }
.promo-carousel-viewport { overflow: hidden; flex: 1; }
.promo-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform .4s ease;
}
.promo-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--transition);
}
.promo-slide:hover { transform: translateY(-4px); color: inherit; }
.promo-slide img,
.promo-slide-photo { width: 100%; height: 160px; object-fit: cover; display: block; }
.service-card-photo { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card-with-photo {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}
.service-card-with-photo:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card-with-photo .service-card-body { padding: 20px; }
.fleet-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.promo-slide-placeholder {
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.promo-slide-content { padding: 16px 18px; }
.promo-slide-content h3 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.promo-slide-content p { font-size: .85rem; color: var(--text-muted); margin-bottom: 8px; }
.promo-cta { color: var(--primary); font-weight: 700; font-size: .85rem; }
.promo-prev, .promo-next { position: static; transform: none; flex-shrink: 0; }

/* USP strip */
.usp-strip {
    background: var(--primary);
    color: #fff;
    padding: 36px 0;
}
.usp-strip-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: .9rem;
    font-weight: 500;
}
.usp-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.usp-icon-badge {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
    color: var(--primary);
    flex-shrink: 0;
}
.usp-icon-badge svg {
    width: 40px;
    height: 40px;
}
.usp-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    border: 3px solid #fff;
}
.features-grid-photo .feature-card-photo {
    padding: 0;
    overflow: hidden;
    text-align: left;
}
.features-grid-photo .feature-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.features-grid-photo .feature-card-photo h3,
.features-grid-photo .feature-card-photo p {
    padding: 0 20px;
}
.features-grid-photo .feature-card-photo h3 { padding-top: 18px; margin-bottom: 8px; }
.features-grid-photo .feature-card-photo p { padding-bottom: 22px; }
.feature-card-usp {
    text-align: center;
    padding: 28px 20px !important;
    overflow: visible;
}
.feature-card-usp .usp-icon-badge { margin: 0 auto 16px; }
.feature-card-usp h3,
.feature-card-usp p { padding: 0 !important; }
.section-usp-mobile { display: none; }

/* Savaari service cards */
.services-grid-savaari { grid-template-columns: repeat(2, 1fr); }
.services-grid.services-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 768px) {
    .services-grid.services-photo-grid { grid-template-columns: 1fr; }
}
.service-card-savaari {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}
.service-card-savaari:hover { box-shadow: var(--shadow-lg); }
.service-card-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.service-photo-g1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.service-photo-g2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.service-photo-g3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.service-photo-g4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.service-card-savaari .service-card-body { padding: 24px; }
.service-card-savaari h3 { color: var(--secondary); font-size: 1.15rem; margin-bottom: 10px; }
.service-card-savaari p { font-size: .9rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.tag-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 6px;
}

.breadcrumb-light { color: rgba(255,255,255,.8); font-size: .875rem; margin-bottom: 12px; }
.breadcrumb-light a { color: #fff; }

@media (max-width: 1024px) {
    .promo-slide { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
    .services-grid-savaari { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-savaari { min-height: auto; }
    .booking-tabs-savaari { grid-template-columns: repeat(2, 1fr); }
    .usp-grid { grid-template-columns: 1fr 1fr; }
    .carousel-btn { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* Inner page banner slider */
.page-hero-slider {
    position: relative;
    min-height: 280px;
    color: #fff;
    overflow: hidden;
}
.page-banner-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-banner-track {
    width: 100%;
    height: 100%;
    position: relative;
}
.page-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.page-banner-slide.active { opacity: 1; z-index: 1; }
.page-hero-slider-content {
    position: relative;
    z-index: 2;
    padding: 56px 0 48px;
    background: linear-gradient(180deg, rgba(26,26,46,.55) 0%, rgba(26,26,46,.75) 100%);
}
.page-hero-slider .carousel-btn { color: var(--primary); }
.page-banner-dots { bottom: 12px; }

/* SEO content blocks */
.seo-content h2,
.seo-content h3 { color: var(--secondary); margin: 28px 0 12px; }
.seo-content h2:first-child { margin-top: 0; }
.seo-intro { max-width: 820px; margin: 0 auto 32px; text-align: center; color: var(--text-muted); }
.seo-intro p { font-size: 1.05rem; line-height: 1.8; }
.faq-section-seo .faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; border-radius: 0; box-shadow: none; }
.faq-section-seo .faq-question { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); padding: 0; background: none; }
.faq-section-seo .faq-answer { color: var(--text-muted); margin: 0; line-height: 1.7; padding: 0 !important; }
.faq-section-seo .faq-answer-wrap { grid-template-rows: 1fr !important; }
.faq-section-seo .faq-q-icon,
.faq-section-seo .faq-q-toggle { display: none; }

/* Homepage FAQ block */
.faq-home-section {
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    position: relative;
}
.faq-home-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.faq-home-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--secondary);
    margin: 8px 0 12px;
    line-height: 1.25;
}
.faq-home-header > p {
    color: var(--text-muted);
    font-size: .98rem;
    line-height: 1.75;
    margin: 0;
}
.faq-home-body {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
.faq-home-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--header-h) + 16px);
}
.faq-home-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-home-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.4;
}
.faq-highlight-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.faq-home-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-home-accordion {
    width: 100%;
    min-width: 0;
}
.faq-home-accordion .faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius);
}
.faq-home-accordion .faq-item:last-child { margin-bottom: 0; }
.blog-post-meta { color: var(--text-muted); margin-bottom: 20px; font-size: .95rem; }
.hero-kicker { margin: 0; }

/* Popular routes bar (before footer) */
.popular-routes-bar {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 48px 0 40px;
}
.popular-routes-bar-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}
.popular-routes-bar-header h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}
.popular-routes-bar-header p {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 16px;
}
.popular-routes-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
}
.popular-route-link {
    font-size: .875rem;
    color: var(--primary);
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px dashed transparent;
    transition: color var(--transition), border-color var(--transition);
}
.popular-route-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-light);
}

@media (max-width: 1024px) {
    .popular-routes-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .popular-routes-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .popular-routes-links { grid-template-columns: 1fr; }
}

/* Related routes SEO (route pages) */
.related-routes-seo {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 48px 0 40px;
}
.related-routes-seo-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}
.related-routes-seo-intro h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}
.related-routes-seo-intro p { color: var(--text-muted); font-size: .95rem; }
.related-routes-group {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.related-routes-group:last-child { border-bottom: none; margin-bottom: 0; }
.related-routes-group h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}
.related-routes-desc { font-size: .875rem; color: var(--text-muted); margin-bottom: 12px; }
.route-link-km {
    display: block;
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 400;
}
.popular-route-link { display: block; }

/* Homepage city route blocks */
.homepage-city-routes .city-routes-block { margin-bottom: 36px; }
.city-routes-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary);
}
.city-routes-heading a { color: var(--primary); }
.city-routes-heading a:hover { color: var(--primary-dark); }
.routes-grid-compact { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .routes-grid-compact { grid-template-columns: repeat(2, 1fr); } }

.route-fare-note { color: var(--text-muted); margin-bottom: 16px; font-size: .95rem; }
.car-price-rt { color: var(--primary); margin-top: 4px; font-weight: 600; }

.service-card-photo[src] { object-fit: cover; background: var(--bg-alt); }

.payment-test-badge {
    display: inline-block;
    background: #fff3e6;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.payment-hint {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
}
.payment-breakdown {
    text-align: left;
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}
.payment-advance-row span:last-child {
    color: var(--primary);
    font-weight: 700;
}
.payment-tabs {
    display: flex;
    gap: 8px;
    margin: 20px 0 0;
    flex-wrap: wrap;
}
.payment-tab {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}
.payment-tab.active,
.payment-tab:hover {
    border-color: var(--primary);
    background: #fff8f3;
    color: var(--primary);
}
.payment-panel {
    margin-top: 20px;
    padding-top: 8px;
}
.payment-qr-panel {
    text-align: center;
}
.payment-qr-wrap {
    display: inline-block;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}
.payment-qr-img {
    display: block;
    max-width: 100%;
    height: auto;
}
.payment-qr-amount {
    font-size: 1rem;
    margin-bottom: 8px;
}
.payment-choice-block {
    margin: 16px 0;
    text-align: left;
}
.payment-choice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .2s;
}
.payment-choice:has(input:checked) {
    border-color: var(--primary);
    background: #fff8f3;
}
.payment-choice input {
    margin-top: 4px;
    accent-color: var(--primary);
}
.payment-choice span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.payment-choice small {
    color: var(--text-muted);
    font-size: .8rem;
}
.alert-error {
    background: #fdecea;
    color: #b42318;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: .9rem;
}

/* Round-trip add stops */
.add-stops-panel {
    margin-top: 4px;
    margin-bottom: 8px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}
.add-stops-panel[hidden] { display: none !important; }
.label-hint {
    font-weight: 500;
    font-size: .72rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 6px;
}
.form-hint {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0 0 12px;
    line-height: 1.5;
}
.stop-fields-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}
.stop-field-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.stop-field-row .stop-input { flex: 1; min-width: 0; }
.btn-remove-stop {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-remove-stop:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: #fdecea;
}
.btn-add-stop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px dashed var(--primary);
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}
.btn-add-stop:hover {
    background: var(--primary);
    color: #fff;
    border-style: solid;
}
.add-stops-summary-bar {
    background: var(--primary-light);
    border: 1px solid rgba(232, 93, 4, .25);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: .9rem;
    color: var(--secondary);
}
.add-stops-summary-bar strong { color: var(--primary); }
.add-stops-km-note { color: var(--text-muted); font-size: .85rem; }
.add-stops-checkout .form-hint { margin-top: -4px; }
.summary-row-stops span:last-child { text-align: right; max-width: 60%; line-height: 1.4; }

/* ============================================================
   MOBILE RESPONSIVE POLISH (site-wide)
   ============================================================ */

@media (max-width: 1024px) {
    .faq-home-body { grid-template-columns: 1fr; gap: 28px; }
    .faq-home-sidebar { position: static; order: 2; }
    .faq-home-accordion { order: 1; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .container { padding: 0 16px; }

    .top-bar { font-size: .75rem; padding: 5px 0; }
    .top-bar-tag { display: none; }
    .top-bar-inner { justify-content: center; }

    .header-inner { height: var(--header-h); gap: 12px; }
    .logo-text { font-size: 1.15rem; }
    .header-actions { gap: 8px; }
    .header-actions .btn-sm { padding: 8px 12px; font-size: .8rem; }

    .hero-savaari { min-height: auto; }
    .hero-savaari-overlay { padding: 36px 0 16px; }
    .hero-kicker {
        font-size: clamp(1rem, 4.2vw, 1.35rem);
        margin-bottom: 12px;
        letter-spacing: .4px;
        line-height: 1.25;
        padding: 0 2px;
    }

    .booking-widget-savaari {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 28px rgba(0,0,0,.22), 0 0 0 2px rgba(232,93,4,.14);
    }
    .booking-widget-savaari .booking-form {
        padding: 12px 12px 14px;
        background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    }
    .booking-widget-savaari .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }
    .booking-widget-savaari .booking-form .form-row.form-row-inline {
        grid-template-columns: 1fr 1fr !important;
    }
    .booking-widget-savaari .booking-form .form-group { margin-bottom: 8px; }
    .booking-widget-savaari .form-label {
        font-size: .68rem;
        margin-bottom: 3px;
        letter-spacing: .35px;
    }
    .booking-widget-savaari .form-control {
        padding: 9px 10px;
        font-size: .88rem;
        min-height: 40px;
    }
    .booking-widget-savaari select.form-control {
        font-size: .88rem;
        padding: 9px 28px 9px 10px;
    }
    .booking-widget-savaari .form-control-icon .form-control {
        padding-left: 32px;
        padding-right: 28px;
    }
    .booking-widget-savaari .form-control-icon .icon {
        left: 10px;
        font-size: .95rem;
    }
    .booking-widget-savaari .booking-whatsapp-group { margin-bottom: 8px; }
    .booking-widget-savaari .booking-whatsapp-group .form-hint {
        font-size: .72rem;
        margin: 3px 0 0;
        line-height: 1.35;
    }
    .booking-widget-savaari .phone-input-wrap-country {
        flex-direction: row;
        gap: 0;
    }
    .booking-widget-savaari .country-code-select {
        width: 96px;
        min-width: 88px;
        font-size: .74rem;
        padding: 0 6px;
        min-height: 40px;
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    }
    .booking-widget-savaari .phone-input-wrap-country .form-control {
        min-height: 40px;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
    .booking-widget-savaari .btn-block {
        margin-top: 4px;
        padding: 12px 16px;
        font-size: .92rem;
        font-weight: 700;
        letter-spacing: .5px;
        box-shadow: 0 4px 14px rgba(232,93,4,.35);
    }
    .booking-widget-savaari .btn-add-stop {
        padding: 8px 12px;
        font-size: .82rem;
        margin-bottom: 8px;
    }
    .booking-widget-savaari .stop-fields-list { gap: 8px; margin-bottom: 8px; }

    .booking-form .form-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
    .booking-form .form-group { margin-bottom: 12px; }
    .booking-tabs-savaari .booking-tab {
        padding: 10px 4px;
        font-size: .65rem;
        letter-spacing: .3px;
    }
    select.form-control { font-size: .9rem; padding: 11px 34px 11px 12px; }
    .form-control-icon .form-control { padding-left: 36px; padding-right: 34px; }
    .form-label { font-size: .72rem; margin-bottom: 5px; }

    .promo-section-hero { max-width: 100%; margin-top: 16px; padding-top: 12px; }
    .promo-slide { flex: 0 0 88%; min-width: 88%; }
    .promo-prev, .promo-next { display: none; }

    .usp-strip { padding: 28px 0; }
    .usp-strip-title { font-size: 1.05rem; margin-bottom: 20px; }
    .usp-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .usp-icon-badge { width: 56px; height: 56px; }
    .usp-icon-badge svg { width: 28px; height: 28px; }

    .section { padding: 40px 0; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.35rem; }
    .section-header p { font-size: .9rem; }

    .services-grid-savaari,
    .services-grid.services-photo-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card-photo { height: 180px; }

    .stats-grid { gap: 16px; }
    .stat-number { font-size: 1.6rem; }

    .cta-banner { padding: 40px 0; text-align: center; }
    .cta-banner h2 { font-size: 1.4rem; }
    .cta-phone { display: block; margin-bottom: 12px; }

    .page-hero-slider { min-height: 220px; }
    .page-hero-slider-content { padding: 36px 0 28px; }
    .page-hero-slider-content h1 { font-size: 1.45rem; }
    .page-hero-slider-content p { font-size: .9rem; }
    .page-hero-banner { padding: 36px 0; }
    .page-hero h1 { font-size: 1.45rem; }

    .car-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 16px;
        text-align: center;
    }
    .car-card-media {
        width: 100%;
        justify-content: center;
        margin: 0 auto;
    }
    .car-card-media .fleet-thumb {
        width: 180px;
        height: 110px;
        margin: 0 auto;
        border-radius: var(--radius-sm);
    }
    .car-card-media .car-icon {
        width: 120px;
        height: 80px;
        margin: 0 auto;
        font-size: 2.2rem;
    }
    .car-info { width: 100%; }
    .car-info h3 { font-size: 1.05rem; }
    .car-features { justify-content: center; }
    .car-price-block {
        width: 100%;
        text-align: center;
        padding-top: 8px;
        border-top: 1px dashed var(--border);
    }

    .checkout-grid { gap: 24px; }
    .checkout-form-card, .summary-card { padding: 20px 16px; }
    .confirm-box { padding: 28px 20px; margin: 0 4px; }

    .faq-home-header { margin-bottom: 28px; }
    .faq-home-sidebar { padding: 20px 16px; }
    .faq-question { padding: 14px 16px; gap: 12px; font-size: .9rem; }
    .faq-q-icon { width: 38px; height: 38px; border-radius: 10px; }
    .faq-q-icon svg { width: 18px; height: 18px; }
    .faq-q-toggle { width: 26px; height: 26px; }

    .popular-routes-bar { padding: 36px 0 32px; }
    .related-routes-seo { padding: 36px 0 32px; }

    .routes-grid-photo { gap: 14px; }
    .routes-grid-photo .route-card-thumb { height: 130px; }
    .route-card-body { padding: 14px 16px; }
    .route-cities { font-size: .9rem; }

    .floating-actions {
        right: 16px;
        bottom: 16px;
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
        gap: 10px;
    }
    .fab-call,
    .fab-whatsapp {
        width: 48px;
        height: 48px;
    }
    .fab-whatsapp svg { width: 24px; height: 24px; }
}

@media (max-width: 640px) {
    .booking-widget-savaari .booking-form .form-row:not(.form-row-inline),
    .booking-form .form-row:not(.form-row-inline) { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }

    .hero-savaari-overlay { padding: 28px 0 12px; }
    .hero-kicker {
        font-size: .95rem;
        margin-bottom: 10px;
    }
    .booking-widget-savaari .booking-form { padding: 10px 10px 12px; }
    .booking-tabs-savaari .booking-tab { padding: 9px 2px; font-size: .62rem; }
    .booking-widget-savaari .country-code-select {
        width: 88px;
        min-width: 82px;
        font-size: .7rem;
    }

    .booking-tabs,
    .booking-tabs-savaari { grid-template-columns: 1fr 1fr; }

    .usp-grid { grid-template-columns: 1fr; }
    .usp-item { flex-direction: row; text-align: left; gap: 12px; }
    .usp-item span:last-child { flex: 1; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.4rem; }

    .routes-grid,
    .routes-grid-compact,
    .routes-grid-photo { grid-template-columns: 1fr; }

    .faq-q-text { font-size: .85rem; }
    .faq-item.open .faq-answer { padding: 4px 16px 14px 16px; font-size: .88rem; }

    .btn-lg { padding: 12px 24px; font-size: .95rem; width: 100%; }
    .cta-banner .btn-lg { width: auto; max-width: 100%; }

    .carousel-btn { width: 32px; height: 32px; font-size: 1rem; }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }

    .promo-slide { flex: 0 0 92%; min-width: 92%; }

    .routes-grid-photo .route-card-thumb { height: 120px; }
    .car-card-media .fleet-thumb { width: 160px; height: 100px; }

    .footer-grid { gap: 24px; }
}

/* ── Customer account panel ─────────────────────────────────────────── */
.customer-auth-section { padding-top: 48px; padding-bottom: 64px; }
.customer-auth-wrap { max-width: 480px; margin: 0 auto; }
.customer-auth-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
}
.customer-auth-icon {
    width: 72px; height: 72px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
}
.customer-auth-card h1 { text-align: center; font-size: 1.5rem; margin-bottom: 8px; }
.customer-auth-sub { text-align: center; color: var(--text-muted); font-size: .92rem; margin-bottom: 24px; }
.customer-auth-form .form-group { margin-bottom: 18px; }
.phone-input-wrap { display: flex; align-items: stretch; }
.phone-prefix {
    display: flex; align-items: center;
    padding: 0 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-weight: 600; color: var(--secondary);
}
.phone-input-wrap .form-control {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.otp-input { letter-spacing: .35em; font-size: 1.25rem; text-align: center; font-weight: 700; }
.otp-sent-note { text-align: center; margin-bottom: 16px; color: var(--text-muted); }
.customer-otp-demo { text-align: center; margin-bottom: 16px; }
.customer-otp-demo code { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.btn-link {
    background: none; border: none; color: var(--primary);
    text-decoration: underline; cursor: pointer; font-size: .9rem; margin-top: 12px;
}
.alert-info { background: #e8f4fd; color: #0c5460; border: 1px solid #bee5eb; padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; }

.customer-panel-section { padding-top: 40px; }
.customer-panel-header {
    display: flex; flex-wrap: wrap; align-items: flex-start;
    justify-content: space-between; gap: 16px; margin-bottom: 28px;
}
.customer-panel-header h1 { font-size: 1.75rem; margin-bottom: 4px; }
.customer-greeting { color: var(--text-muted); font-size: .95rem; }
.customer-panel-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.customer-back-link { display: inline-block; font-size: .88rem; color: var(--primary); margin-bottom: 8px; text-decoration: none; }
.customer-back-link:hover { text-decoration: underline; }

.customer-booking-list { display: flex; flex-direction: column; gap: 16px; }
.customer-booking-card {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; justify-content: space-between;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px;
    box-shadow: var(--shadow-sm);
}
.customer-booking-route { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.customer-booking-route strong { font-size: 1.05rem; }
.customer-booking-id { font-size: .8rem; color: var(--text-muted); background: var(--bg-alt); padding: 2px 8px; border-radius: 4px; }
.customer-booking-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: .88rem; color: var(--text-muted); }
.customer-booking-side { text-align: right; min-width: 160px; }
.customer-booking-fare { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.customer-pay-badge {
    display: inline-block; font-size: .75rem; font-weight: 600;
    padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.customer-pay-paid { background: #d4edda; color: #155724; }
.customer-pay-pending { background: #fff3cd; color: #856404; }
.customer-booking-btns { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.customer-reviewed-tag { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.customer-detail-grid { margin-top: 8px; }
.customer-review-card { max-width: 560px; margin: 0 auto; }
.customer-star-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.star-pick input { position: absolute; opacity: 0; pointer-events: none; }
.star-pick span {
    display: inline-block; padding: 8px 14px;
    border: 2px solid var(--border); border-radius: var(--radius-sm);
    cursor: pointer; font-weight: 600; transition: .15s;
}
.star-pick input:checked + span,
.star-pick span:hover {
    border-color: var(--primary); background: var(--primary-light); color: var(--primary);
}
.customer-review-display { margin-top: 8px; }
.customer-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 8px; }
.customer-empty { margin-top: 24px; }

@media (max-width: 640px) {
    .customer-booking-card { flex-direction: column; }
    .customer-booking-side { text-align: left; width: 100%; }
    .customer-booking-btns { justify-content: flex-start; }
    .customer-panel-header { flex-direction: column; }
    .customer-auth-card { padding: 24px 18px; }
}
