/* ==========================================================================
   VRide — public website design system (2026-09-19)
   --------------------------------------------------------------------------
   The website wears the same colours as the admin Command Center and the app:
   ink, VRide yellow, white cards on a soft grey page. Owner, 2026-09-19:
   "poori website re-design karo… isi color theme mein… app ki tarah".

   ⛔ Public site only. public/css/vride.css is shared with the admin and the
   franchise panels — nothing here may be moved into it, and nothing there is
   relied on here.

   Bootstrap 5 stays underneath for the grid, collapse, dropdowns and accordion;
   everything visual is defined below with the `s-` prefix.
   ========================================================================== */

:root {
    --s-ink: #0F1115;
    --s-ink-2: #171A21;
    --s-ink-3: #232733;
    --s-yellow: #FFC400;
    --s-yellow-2: #FFD43B;
    --s-yellow-soft: #FFF4CC;
    --s-yellow-deep: #B38700;
    --s-text: #14161B;
    --s-muted: #5F6776;
    --s-subtle: #8A93A5;
    --s-line: #E6E8EC;
    --s-page: #F6F7F9;
    --s-card: #FFFFFF;
    --s-green: #10B981;
    --s-red: #EF4444;
    --s-blue: #3B82F6;
    --s-radius: 14px;
    --s-radius-lg: 22px;
    --s-shadow: 0 1px 2px rgba(16, 18, 22, .04), 0 8px 24px rgba(16, 18, 22, .06);
    --s-shadow-lg: 0 20px 50px rgba(16, 18, 22, .14);
    --s-font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --s-header-h: 72px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }
body.s-body {
    font-family: var(--s-font);
    color: var(--s-text);
    background: var(--s-page);
    font-size: 15.5px;
    line-height: 1.6;
    padding-top: var(--s-header-h);
    -webkit-font-smoothing: antialiased;
}
.s-body h1, .s-body h2, .s-body h3, .s-body h4, .s-body h5 { font-weight: 800; letter-spacing: -.02em; color: inherit; }
.s-body a { color: inherit; }
.s-body img { max-width: 100%; }
.s-body ::selection { background: var(--s-yellow); color: var(--s-ink); }
.s-body :focus-visible { outline: 3px solid rgba(255, 196, 0, .6); outline-offset: 2px; border-radius: 6px; }

.s-container { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: 20px; }
@media (max-width: 575.98px) { .s-container { padding-inline: 16px; } }

.s-section { padding-block: 84px; }
.s-section.tight { padding-block: 56px; }
.s-section.white { background: #fff; }
.s-section.ink { background: var(--s-ink); color: #fff; }
.s-section.soft { background: var(--s-yellow-soft); }
@media (max-width: 767.98px) { .s-section { padding-block: 56px; } .s-section.tight { padding-block: 40px; } }

.s-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    color: var(--s-yellow-deep); margin-bottom: 12px;
}
.ink .s-eyebrow, .s-hero .s-eyebrow { color: var(--s-yellow); }
.s-eyebrow::before { content: ''; width: 18px; height: 3px; border-radius: 3px; background: currentColor; }
.s-title { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; margin: 0 0 14px; }
.s-lead { font-size: 17px; color: var(--s-muted); max-width: 640px; margin: 0; }
.ink .s-lead, .s-hero .s-lead { color: #B8BFCC; }
.s-head { margin-bottom: 40px; }
.s-head.center { text-align: center; }
.s-head.center .s-lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.s-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 11px 22px; border-radius: 999px;
    font-weight: 700; font-size: 15px; line-height: 1.2; text-decoration: none !important;
    border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.s-btn:hover { transform: translateY(-1px); }
.s-btn:active { transform: translateY(0); }
.s-btn[disabled], .s-btn.disabled { opacity: .5; pointer-events: none; }
.s-btn-primary { background: var(--s-yellow); color: var(--s-ink) !important; box-shadow: 0 6px 18px rgba(255, 196, 0, .35); }
.s-btn-primary:hover { background: var(--s-yellow-2); box-shadow: 0 10px 24px rgba(255, 196, 0, .45); }
.s-btn-dark { background: var(--s-ink); color: #fff !important; }
.s-btn-dark:hover { background: var(--s-ink-3); }
.s-btn-ghost { background: transparent; color: var(--s-text) !important; border-color: var(--s-line); }
.s-btn-ghost:hover { border-color: var(--s-text); }
.ink .s-btn-ghost, .s-hero .s-btn-ghost { color: #fff !important; border-color: rgba(255, 255, 255, .28); }
.ink .s-btn-ghost:hover, .s-hero .s-btn-ghost:hover { border-color: #fff; }
.s-btn-sm { min-height: 38px; padding: 8px 16px; font-size: 14px; }
.s-btn-lg { min-height: 54px; padding: 14px 28px; font-size: 16px; }
.s-btn-block { width: 100%; }

.s-link { font-weight: 700; color: var(--s-text); text-decoration: none; border-bottom: 2px solid var(--s-yellow); }
.s-link:hover { color: var(--s-yellow-deep); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.s-header {
    position: fixed; inset: 0 0 auto 0; z-index: 1030;
    height: var(--s-header-h);
    background: rgba(15, 17, 21, .96);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding-top: env(safe-area-inset-top, 0px);
}
.s-header .s-container { height: 100%; display: flex; align-items: center; gap: 18px; }
.s-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.s-brand img { height: 42px; width: auto; border-radius: 10px; display: block; }
.s-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; list-style: none; padding: 0; }
.s-nav > li { position: relative; }
.s-nav a, .s-nav button {
    display: inline-flex; align-items: center; gap: 6px;
    color: #C9CED8; text-decoration: none; font-weight: 600; font-size: 14.5px;
    padding: 9px 12px; border-radius: 10px; background: none; border: 0;
}
.s-nav a:hover, .s-nav button:hover, .s-nav .show > button { color: #fff; background: rgba(255, 255, 255, .06); }
.s-nav a.active { color: var(--s-yellow); }
.s-nav .dropdown-menu {
    border: 1px solid var(--s-line); border-radius: 14px; padding: 8px;
    box-shadow: var(--s-shadow-lg); min-width: 240px; margin-top: 8px !important;
}
.s-nav .dropdown-menu a { color: var(--s-text); display: flex; gap: 10px; padding: 10px 12px; border-radius: 10px; font-weight: 600; }
.s-nav .dropdown-menu a:hover { background: var(--s-yellow-soft); color: var(--s-text); }
.s-nav .dropdown-menu a i { width: 18px; color: var(--s-yellow-deep); text-align: center; margin-top: 3px; }
.s-nav .dropdown-menu small { display: block; color: var(--s-muted); font-weight: 500; font-size: 12.5px; }
.s-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.s-header-actions .dropdown-menu { border-radius: 14px; padding: 8px; box-shadow: var(--s-shadow-lg); border: 1px solid var(--s-line); min-width: 240px; }
.s-header-actions .dropdown-item { border-radius: 10px; padding: 10px 12px; font-weight: 600; }
.s-header-actions .dropdown-item:hover { background: var(--s-yellow-soft); }
.s-login { color: #fff !important; }
.s-burger {
    display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .14);
    background: transparent; color: #fff; font-size: 18px;
}
@media (max-width: 1099.98px) {
    .s-nav, .s-header-actions .s-hide-mobile { display: none; }
    .s-burger { display: inline-flex; align-items: center; justify-content: center; }
    .s-header-actions { margin-left: auto; }
}

/* Mobile drawer */
.s-drawer {
    position: fixed; inset: 0; z-index: 1040; background: rgba(15, 17, 21, .5);
    opacity: 0; pointer-events: none; transition: opacity .2s ease, visibility .2s ease;
    /* Closed, the panel sits off-screen to the right — clipped and hidden, or
       it widens the page on a phone. */
    overflow: hidden; visibility: hidden;
}
.s-drawer.open { opacity: 1; pointer-events: auto; visibility: visible; }
.s-drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 92vw);
    background: var(--s-ink); color: #fff; padding: calc(18px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto; transform: translateX(100%); transition: transform .25s ease;
}
.s-drawer.open .s-drawer-panel { transform: none; }
.s-drawer-panel .s-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.s-drawer-panel h6 { color: var(--s-subtle); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin: 18px 0 6px; }
.s-drawer-panel a { display: flex; align-items: center; gap: 12px; color: #E4E7EE; text-decoration: none; padding: 11px 10px; border-radius: 10px; font-weight: 600; }
.s-drawer-panel a i { width: 20px; text-align: center; color: var(--s-yellow); }
.s-drawer-panel a:hover { background: rgba(255, 255, 255, .06); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.s-hero {
    position: relative; overflow: hidden; color: #fff;
    background:
        radial-gradient(900px 480px at 85% -10%, rgba(255, 196, 0, .22), transparent 60%),
        radial-gradient(700px 420px at -10% 110%, rgba(255, 196, 0, .12), transparent 60%),
        var(--s-ink);
    padding-block: 72px 88px;
}
.s-hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 44px 44px; mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
}
.s-hero > * { position: relative; z-index: 1; }
.s-hero h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin: 0 0 18px; }
.s-hero h1 em { font-style: normal; color: var(--s-yellow); }
.s-hero .s-lead { font-size: 18px; }
.s-hero.page { padding-block: 56px 60px; }
.s-hero.page h1 { font-size: clamp(30px, 4vw, 46px); }
.s-crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--s-subtle); margin-bottom: 14px; }
.s-crumbs a { color: var(--s-subtle); text-decoration: none; }
.s-crumbs a:hover { color: #fff; }
.s-crumbs span::before { content: '/'; margin-right: 6px; opacity: .6; }

.s-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: #B8BFCC; font-size: 14px; }
.s-trust b { color: #fff; font-size: 20px; display: block; line-height: 1.1; }

/* The booking box on the home hero */
.s-quickbook {
    background: #fff; color: var(--s-text); border-radius: var(--s-radius-lg);
    box-shadow: var(--s-shadow-lg); padding: 22px;
}
.s-quickbook h3 { font-size: 19px; margin: 0 0 4px; }
.s-quickbook p { color: var(--s-muted); font-size: 14px; margin: 0 0 16px; }
.s-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.s-tab {
    border: 1.5px solid var(--s-line); background: #fff; border-radius: 999px;
    padding: 7px 14px; font-weight: 700; font-size: 13.5px; color: var(--s-muted); cursor: pointer;
}
.s-tab.on { background: var(--s-ink); border-color: var(--s-ink); color: #fff; }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.s-card { background: var(--s-card); border: 1px solid var(--s-line); border-radius: var(--s-radius); box-shadow: var(--s-shadow); }
.s-card-pad { padding: 24px; }
.s-card.hover { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.s-card.hover:hover { transform: translateY(-3px); box-shadow: var(--s-shadow-lg); border-color: #D9DDE4; }
a.s-card { display: block; text-decoration: none; color: inherit; }
.s-grid { display: grid; gap: 20px; }
.s-grid.c2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.s-grid.c3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.s-grid.c4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 991.98px) { .s-grid.c3, .s-grid.c4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575.98px) { .s-grid.c2, .s-grid.c3, .s-grid.c4 { grid-template-columns: minmax(0, 1fr); } }

.s-icon {
    width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--s-yellow-soft); color: var(--s-ink); font-size: 20px; flex-shrink: 0;
}
.ink .s-icon { background: rgba(255, 196, 0, .14); color: var(--s-yellow); }
.s-feature h3 { font-size: 18px; margin: 16px 0 6px; }
.s-feature p { color: var(--s-muted); margin: 0; font-size: 14.5px; }
.ink .s-feature p { color: #AEB5C2; }
.ink .s-card { background: var(--s-ink-2); border-color: rgba(255, 255, 255, .08); box-shadow: none; }

/* Service tile with the app's illustration */
.s-service { overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.s-service-img { aspect-ratio: 3 / 2; background: var(--s-yellow-soft); overflow: hidden; }
.s-service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.s-service:hover .s-service-img img { transform: scale(1.04); }
.s-service-icon { aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--s-yellow) 0%, var(--s-yellow-2) 100%); color: var(--s-ink); font-size: 44px; }
.s-service-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.s-service-body h3 { font-size: 17.5px; margin: 0; }
.s-service-body p { font-size: 14px; color: var(--s-muted); margin: 0; flex: 1; }
.s-service-body .s-more { font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; margin-top: 8px; }

/* Steps */
.s-steps { counter-reset: step; }
.s-step { position: relative; padding-left: 64px; }
.s-step::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%;
    background: var(--s-yellow); color: var(--s-ink); font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.s-step h3 { font-size: 17px; margin: 6px 0 4px; }
.s-step p { color: var(--s-muted); margin: 0; font-size: 14.5px; }
.ink .s-step p { color: #AEB5C2; }

/* Stats */
.s-stat b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.s-stat span { color: var(--s-muted); font-size: 14px; }
.ink .s-stat span { color: #AEB5C2; }

/* Chips / badges */
.s-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; background: var(--s-page); border: 1px solid var(--s-line); font-size: 12.5px; font-weight: 700; color: var(--s-muted); }
.s-chip.yellow { background: var(--s-yellow-soft); border-color: #FFE38A; color: #6B5200; }
.s-chip.green { background: #E7F8F1; border-color: #BDEBD7; color: #067452; }
.s-chip.red { background: #FDECEC; border-color: #F8C7C7; color: #A61B1B; }
.s-chip.dark { background: var(--s-ink); border-color: var(--s-ink); color: #fff; }

/* Listing card (vehicle / tour / ride) */
.s-listing { overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.s-listing-img { position: relative; aspect-ratio: 16 / 10; background: var(--s-page); overflow: hidden; }
.s-listing-img img { width: 100%; height: 100%; object-fit: cover; }
.s-listing-img .s-chip { position: absolute; top: 12px; left: 12px; }
.s-listing-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.s-listing-body h3 { font-size: 16.5px; margin: 0; }
.s-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: var(--s-muted); }
.s-meta i { color: var(--s-yellow-deep); margin-right: 4px; }
.s-price { font-size: 20px; font-weight: 800; }
.s-price small { font-size: 13px; color: var(--s-muted); font-weight: 600; }
.s-listing-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--s-line); }

/* Filters bar */
.s-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; padding: 16px; }
.s-filters .s-field { flex: 1 1 180px; margin: 0; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.s-field { margin-bottom: 14px; position: relative; }
.s-field label, .s-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--s-muted); margin-bottom: 6px; }
.s-input, .s-select, .s-textarea,
.s-field input:not([type=checkbox]):not([type=radio]), .s-field select, .s-field textarea {
    width: 100%; border: 1.5px solid var(--s-line); border-radius: 12px; background: #fff;
    padding: 12px 14px; font-size: 15px; color: var(--s-text); min-height: 48px; font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.s-field textarea, .s-textarea { min-height: 120px; resize: vertical; }
.s-field select, .s-select { min-width: 140px; }
.s-input:focus, .s-select:focus, .s-textarea:focus,
.s-field input:focus, .s-field select:focus, .s-field textarea:focus { outline: none; border-color: var(--s-yellow); box-shadow: 0 0 0 4px rgba(255, 196, 0, .18); }
.s-input-icon { position: relative; }
.s-input-icon > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--s-subtle); pointer-events: none; }
.s-input-icon > input { padding-left: 40px !important; }
.s-phone { display: flex; gap: 8px; }
.s-phone select { flex: 0 0 132px; min-width: 0; }
.s-phone input { flex: 1; min-width: 0; }
.s-help { font-size: 12.5px; color: var(--s-muted); margin-top: 6px; }
.s-alert { border-radius: 12px; padding: 12px 14px; font-size: 14px; margin-bottom: 14px; border: 1px solid transparent; }
.s-alert.error { background: #FDECEC; color: #8F1B1B; border-color: #F8C7C7; }
.s-alert.ok { background: #E7F8F1; color: #06573E; border-color: #BDEBD7; }
.s-alert.info { background: var(--s-yellow-soft); color: #5C4700; border-color: #FFE38A; }

/* Suggestions under an address box */
.s-sug { position: absolute; z-index: 60; left: 0; right: 0; top: 100%; background: #fff; border: 1px solid var(--s-line); border-radius: 12px; margin-top: 6px; box-shadow: var(--s-shadow-lg); max-height: 260px; overflow-y: auto; }
.s-sug button { display: flex; gap: 10px; width: 100%; text-align: left; padding: 11px 14px; font-size: 14px; background: none; border: 0; border-bottom: 1px solid #F1F2F5; cursor: pointer; color: var(--s-text); }
.s-sug button:last-child { border-bottom: 0; }
.s-sug button:hover { background: var(--s-yellow-soft); }
.s-sug button i { color: var(--s-subtle); margin-top: 3px; }

/* --------------------------------------------------------------------------
   Prose (policies, about) + FAQ
   -------------------------------------------------------------------------- */
.s-prose { max-width: 820px; font-size: 16px; color: #2A2F3A; }
.s-prose h2 { font-size: 24px; margin: 38px 0 12px; }
.s-prose h3 { font-size: 19px; margin: 28px 0 10px; }
.s-prose p, .s-prose li { color: #3A404C; }
.s-prose ul, .s-prose ol { padding-left: 22px; }
.s-prose li { margin-bottom: 6px; }
.s-prose a { color: var(--s-text); font-weight: 700; text-decoration-color: var(--s-yellow); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.s-prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
.s-prose th, .s-prose td { border: 1px solid var(--s-line); padding: 10px 12px; text-align: left; vertical-align: top; }
.s-prose th { background: var(--s-page); }
.s-toc { position: sticky; top: calc(var(--s-header-h) + 20px); }
.s-toc a { display: block; padding: 7px 10px; border-radius: 8px; text-decoration: none; color: var(--s-muted); font-weight: 600; font-size: 14px; }
.s-toc a:hover { background: var(--s-yellow-soft); color: var(--s-text); }

.s-faq details { background: #fff; border: 1px solid var(--s-line); border-radius: 14px; padding: 0 18px; margin-bottom: 10px; }
.s-faq summary { list-style: none; cursor: pointer; padding: 17px 0; font-weight: 700; display: flex; justify-content: space-between; gap: 12px; }
.s-faq summary::-webkit-details-marker { display: none; }
.s-faq summary::after { content: '+'; font-size: 22px; line-height: 1; color: var(--s-yellow-deep); }
.s-faq details[open] summary::after { content: '–'; }
.s-faq details > div { padding: 0 0 18px; color: var(--s-muted); }

/* Tables */
.s-table-wrap { overflow-x: auto; border-radius: var(--s-radius); border: 1px solid var(--s-line); background: #fff; }
.s-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
.s-table th { background: var(--s-page); text-align: left; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--s-muted); padding: 12px 14px; border-bottom: 1px solid var(--s-line); }
.s-table td { padding: 12px 14px; border-bottom: 1px solid #F0F1F4; vertical-align: top; }
.s-table tr:last-child td { border-bottom: 0; }

/* CTA band */
.s-cta { border-radius: 26px; padding: 44px; background: var(--s-yellow); color: var(--s-ink); position: relative; overflow: hidden; }
.s-cta::after { content: ''; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.s-cta h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 8px; }
.s-cta p { margin: 0; color: #3D3200; }
@media (max-width: 575.98px) { .s-cta { padding: 28px 22px; } }
.s-store { display: inline-flex; align-items: center; gap: 10px; background: var(--s-ink); color: #fff !important; text-decoration: none; border-radius: 14px; padding: 10px 16px; min-height: 52px; }
.s-store i { font-size: 24px; }
.s-store small { display: block; font-size: 10.5px; color: #AEB5C2; line-height: 1; }
.s-store b { font-size: 15px; line-height: 1.2; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.s-footer { background: var(--s-ink); color: #AEB5C2; padding: 64px 0 calc(28px + env(safe-area-inset-bottom, 0px)); font-size: 14.5px; }
.s-footer h6 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.s-footer a { color: #AEB5C2; text-decoration: none; }
.s-footer a:hover { color: var(--s-yellow); }
.s-footer ul { list-style: none; padding: 0; margin: 0; }
.s-footer li { margin-bottom: 9px; }
.s-footer .s-social { display: flex; gap: 8px; margin-top: 16px; }
.s-footer .s-social a { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .06); color: #fff; }
.s-footer .s-social a:hover { background: var(--s-yellow); color: var(--s-ink); }
.s-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 13px; }
.s-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 991.98px) { .s-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .s-footer-grid { grid-template-columns: 1fr; } }

/* WhatsApp help bubble */
.s-wa {
    position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 1020;
    width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff !important;
    display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.s-muted { color: var(--s-muted) !important; }
.s-hr { border: 0; border-top: 1px solid var(--s-line); margin: 22px 0; }
.s-stack { display: flex; flex-direction: column; gap: 12px; }
.s-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.s-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.s-empty { text-align: center; padding: 56px 20px; color: var(--s-muted); }
.s-empty i { font-size: 40px; color: #D0D4DC; margin-bottom: 12px; display: block; }
[hidden] { display: none !important; }

/* Pagination (Laravel's bootstrap-5 view) */
.s-body .pagination { gap: 6px; flex-wrap: wrap; }
.s-body .page-link { border-radius: 10px !important; border: 1px solid var(--s-line); color: var(--s-text); font-weight: 600; min-width: 40px; text-align: center; }
.s-body .page-item.active .page-link { background: var(--s-ink); border-color: var(--s-ink); color: #fff; }
.s-body .page-link:hover { background: var(--s-yellow-soft); color: var(--s-text); }

/* Bootstrap rows inside our container: a wide gutter's negative margin is
   larger than a phone's 16px side padding and pushed the page sideways. */
@media (max-width: 991.98px) { .s-container .row { --bs-gutter-x: 1.5rem; } }

/* Phones: service tiles two to a row, picture and name only — nine one-column
   tiles made the home page a very long scroll. */
@media (max-width: 575.98px) {
    .s-grid.m2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .s-grid.m2 .s-service-body { padding: 12px; }
    .s-grid.m2 .s-service-body p { display: none; }
    .s-grid.m2 .s-service-body h3 { font-size: 14.5px; }
    .s-grid.m2 .s-service-body .s-more { font-size: 12.5px; margin-top: 2px; }
    .s-grid.m2 .s-service-icon { font-size: 30px; }
}

.s-footer .s-store { background: var(--s-ink-3); border: 1px solid rgba(255,255,255,.08); }

/* --------------------------------------------------------------------------
   Long-form legal pages (booking, refund, privacy, terms, theft protection,
   account deletion).

   ⛔ Their WORDS are kept exactly as written — these are the policies VRide
   is held to, and re-typing them risks dropping a clause. Only their shell is
   restyled here, so the markup they already use takes the site's colours.
   The old names (--vride-*) are aliased to the new palette for the page-level
   rules those pages still carry.
   -------------------------------------------------------------------------- */
.s-body {
    --vride-yellow: var(--s-yellow);
    --vride-yellow-dark: #E0A800;
    --vride-yellow-light: var(--s-yellow-soft);
    --vride-dark: var(--s-ink);
}
.policy-hero {
    position: relative; overflow: hidden; color: #fff; padding: 56px 0 60px;
    background: radial-gradient(900px 480px at 85% -10%, rgba(255, 196, 0, .2), transparent 60%), var(--s-ink);
}
.policy-hero .container { position: relative; z-index: 1; max-width: 1200px; padding-inline: 20px; }
.policy-hero h1, .policy-hero .display-4 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.02em; color: #fff; }
.policy-hero .lead { color: #B8BFCC; font-size: 17px; }
.breadcrumb-dark { background: transparent; padding: 0; margin: 0 0 14px; font-size: 13px; }
.breadcrumb-dark .breadcrumb-item a { color: var(--s-subtle); text-decoration: none; }
.breadcrumb-dark .breadcrumb-item.active, .breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before { color: var(--s-subtle); }
.policy-icon-wrapper { width: 110px; height: 110px; border-radius: 28px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 196, 0, .14); }
.policy-icon-wrapper i { font-size: 44px; color: var(--s-yellow); }
.policy-card { background: #fff; border: 1px solid var(--s-line); border-radius: var(--s-radius); box-shadow: var(--s-shadow); overflow: hidden; }
.policy-card-header { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-bottom: 1px solid var(--s-line); }
.policy-card-header h3 { margin: 0; font-size: 18px; font-weight: 800; }
.policy-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: var(--s-yellow-soft) !important; color: var(--s-ink) !important; }
.policy-card-body { padding: 22px; }
.policy-card-body p, .policy-card-body li { color: #3A404C; line-height: 1.7; }
.sticky-sidebar { position: sticky; top: calc(var(--s-header-h) + 20px); }
@media (max-width: 991px) { .sticky-sidebar { position: relative; top: 0; margin-top: 32px; } }
.sidebar-card { background: #fff; border: 1px solid var(--s-line); border-radius: var(--s-radius); padding: 22px; box-shadow: var(--s-shadow); }
.sidebar-card h5 { font-weight: 800; font-size: 16px; margin-bottom: 14px; }
.contact-item { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #F0F1F4; }
.contact-item:last-child { border-bottom: 0; }
.contact-item i { width: 28px; color: var(--s-yellow-deep); }
.contact-item a { color: var(--s-text); text-decoration: none; font-weight: 600; }
.policy-link { display: flex; align-items: center; padding: 11px 12px; margin: 6px 0; background: var(--s-page); border-radius: 10px; color: var(--s-text); text-decoration: none; font-weight: 600; font-size: 14px; }
.policy-link:hover { background: var(--s-yellow-soft); color: var(--s-text); }
.policy-link i:first-child { width: 28px; color: var(--s-yellow-deep); }
.policy-link span { flex: 1; }
.cta-card { background: var(--s-yellow) !important; color: var(--s-ink); border: 0; }
.cta-card .text-muted { color: #4A3D00 !important; }
.highlight-box { background: var(--s-yellow-soft); border-left: 4px solid var(--s-yellow); padding: 14px 16px; border-radius: 0 10px 10px 0; margin-top: 14px; }
.btn-vride-primary, .btn.btn-vride-primary {
    background: var(--s-ink); color: #fff !important; border: 0; border-radius: 999px; font-weight: 700; padding: 11px 22px;
}
.btn-vride-primary:hover { background: var(--s-ink-3); }
.cta-card .btn-vride-primary { background: var(--s-ink); }
.card-vride { background: #fff; border: 1px solid var(--s-line); border-radius: var(--s-radius); box-shadow: var(--s-shadow); overflow: hidden; }
.card-header-vride { background: var(--s-yellow-soft); color: var(--s-ink); font-weight: 800; padding: 14px 18px; border-bottom: 1px solid #FFE38A; }
.card-vride .card-body { padding: 20px 18px; }

/* The booking box sits in the dark hero but is a white card: its ghost buttons use dark ink. */
.s-hero .s-quickbook .s-btn-ghost { color: var(--s-text) !important; border-color: var(--s-line); }
.s-hero .s-quickbook .s-btn-ghost:hover { border-color: var(--s-text); }
