/* ==========================================================================
   VRide — web design system
   --------------------------------------------------------------------------
   One stylesheet for the public site, the admin panel and the franchise panel.

   Loaded as a plain static file. There is deliberately no build step: the
   Vite/Tailwind pipeline that used to sit in this repo never shipped a single
   byte (no blade ever referenced it) and was removed on 2026-08-13. Adding a
   build back would mean a new deploy step for every CSS change.

   ⛔ The class names below are not free to rename. 86 blade files already use
   them, so this file REDEFINES them rather than replacing them; pages can then
   be migrated one at a time without the site ever looking broken in between.

   Colours are the app's own palette, copied from AppConfigController::BRAND_THEME
   (= vride-new/src/theme/theme.ts). If the app's brand colour changes, change it
   in both places or the website and the app will drift apart.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand — identical to the app */
    --v-yellow: #FFD700;
    --v-yellow-dark: #DAA520;
    --v-yellow-accent: #FFEA66;
    --v-yellow-light: #FFF8DC;

    /* Ink & surfaces */
    --v-text: #121212;
    --v-muted: #6B7280;
    --v-placeholder: #9CA3AF;
    --v-border: #E5E7EB;
    --v-bg: #FFFFFF;
    --v-bg-soft: #FAFAFA;
    --v-bg-sunk: #F4F5F7;

    /* State */
    --v-success: #10B981;
    --v-error: #EF4444;
    --v-warning: #F59E0B;
    --v-info: #3B82F6;

    /* Radius — the app's scale */
    --v-r-sm: 8px;
    --v-r-md: 12px;
    --v-r-lg: 16px;
    --v-r-xl: 20px;
    --v-r-pill: 999px;

    /* Spacing */
    --v-s-1: 4px;
    --v-s-2: 8px;
    --v-s-3: 12px;
    --v-s-4: 16px;
    --v-s-5: 24px;
    --v-s-6: 32px;
    --v-s-7: 48px;

    /* Elevation — soft, never heavy; the brand is bright */
    --v-shadow-sm: 0 1px 2px rgba(18, 18, 18, .06);
    --v-shadow: 0 2px 8px rgba(18, 18, 18, .08);
    --v-shadow-lg: 0 8px 24px rgba(18, 18, 18, .10);

    /* Layout */
    --v-sidebar-w: 260px;
    --v-header-h: 64px;

    --v-font: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* ----------------------------------------------------------------------
       Legacy aliases — 171 uses across 18 blade files.

       These were declared inside layouts/app.blade.php's <style> block, which
       the admin panel no longer inherits (it has its own layout since
       2026-08-13). Without them every `var(--vride-dark)` in an admin blade
       would resolve to nothing and the text would lose its colour.

       They are aliases, not copies, so the site and the app cannot drift:
       change --v-* above and these follow.

       ⚠️ One deliberate change of value: --vride-dark used to be #2C3E50, a
       blue-grey that exists nowhere in the app. It now points at the app's own
       ink, #121212. That is the redesign, not a mistake.
       ---------------------------------------------------------------------- */
    --vride-yellow: var(--v-yellow);
    --vride-yellow-dark: var(--v-yellow-dark);
    --vride-yellow-light: var(--v-yellow-light);
    --vride-white: var(--v-bg);
    --vride-dark: var(--v-text);
    --vride-gray: var(--v-muted);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
body {
    font-family: var(--v-font);
    color: var(--v-text);
    background-color: var(--v-bg);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--v-yellow-dark); }
a:hover { color: var(--v-text); }

.text-muted { color: var(--v-muted) !important; }

/* Focus that is visible without being ugly — the brand yellow is too light to
   rely on alone, so it is paired with a dark ring. */
:focus-visible {
    outline: 2px solid var(--v-yellow-dark);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
    border-radius: var(--v-r-sm);
    font-weight: 600;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.btn-vride-primary {
    background: linear-gradient(135deg, var(--v-yellow) 0%, var(--v-yellow-dark) 100%);
    border: 1px solid var(--v-yellow-dark);
    color: var(--v-text);
}
.btn-vride-primary:hover,
.btn-vride-primary:focus {
    background: var(--v-yellow-dark);
    border-color: var(--v-yellow-dark);
    color: var(--v-text);
    box-shadow: var(--v-shadow);
}

.btn-vride-outline {
    background: transparent;
    border: 1px solid var(--v-yellow-dark);
    color: var(--v-text);
}
.btn-vride-outline:hover {
    background: var(--v-yellow-light);
    color: var(--v-text);
}

.btn-outline-primary { --bs-btn-color: var(--v-yellow-dark); --bs-btn-border-color: var(--v-yellow-dark); --bs-btn-hover-bg: var(--v-yellow); --bs-btn-hover-color: var(--v-text); --bs-btn-hover-border-color: var(--v-yellow-dark); }
.btn-outline-success { --bs-btn-color: var(--v-success); --bs-btn-border-color: var(--v-success); --bs-btn-hover-bg: var(--v-success); }
.btn-outline-danger  { --bs-btn-color: var(--v-error);   --bs-btn-border-color: var(--v-error);   --bs-btn-hover-bg: var(--v-error); }
.btn-outline-warning { --bs-btn-color: var(--v-warning); --bs-btn-border-color: var(--v-warning); --bs-btn-hover-bg: var(--v-warning); }

/* --------------------------------------------------------------------------
   4. Cards
   -------------------------------------------------------------------------- */
.card {
    border: 1px solid var(--v-border);
    border-radius: var(--v-r-md);
    box-shadow: var(--v-shadow-sm);
}
.card-header,
.card-footer { background: var(--v-bg-soft); border-color: var(--v-border); }

.card-vride {
    border: 1px solid var(--v-border);
    border-radius: var(--v-r-md);
    background: var(--v-bg);
    box-shadow: var(--v-shadow-sm);
    transition: box-shadow .15s ease, transform .15s ease;
}
.card-vride:hover { box-shadow: var(--v-shadow); }

.card-header-vride {
    background: linear-gradient(135deg, var(--v-yellow) 0%, var(--v-yellow-dark) 100%);
    color: var(--v-text);
    font-weight: 700;
    border-bottom: 1px solid var(--v-yellow-dark);
    border-radius: var(--v-r-md) var(--v-r-md) 0 0;
}

/* --------------------------------------------------------------------------
   5. Badges
   -------------------------------------------------------------------------- */
.badge {
    border-radius: var(--v-r-pill);
    font-weight: 600;
    letter-spacing: .01em;
    padding: .35em .7em;
}
.badge-sm { font-size: .72rem; padding: .25em .55em; }

.badge-vride-primary { background: var(--v-yellow); color: var(--v-text); }
.badge-success   { background: var(--v-success) !important; color: #fff; }
.badge-danger    { background: var(--v-error) !important;   color: #fff; }
.badge-warning   { background: var(--v-warning) !important; color: var(--v-text); }
.badge-info      { background: var(--v-info) !important;    color: #fff; }
.badge-secondary { background: var(--v-muted) !important;   color: #fff; }

.bg-primary   { background-color: var(--v-yellow) !important; color: var(--v-text) !important; }
.bg-success   { background-color: var(--v-success) !important; }
.bg-danger    { background-color: var(--v-error) !important; }
.bg-warning   { background-color: var(--v-warning) !important; color: var(--v-text) !important; }
.bg-info      { background-color: var(--v-info) !important; }
.bg-secondary { background-color: var(--v-muted) !important; }

/* --------------------------------------------------------------------------
   6. Forms
   -------------------------------------------------------------------------- */
.form-control-vride,
.form-control,
.form-select {
    border-radius: var(--v-r-sm);
    border: 1px solid var(--v-border);
}
.form-control:focus,
.form-select:focus,
.form-control-vride:focus {
    border-color: var(--v-yellow-dark);
    box-shadow: 0 0 0 .2rem rgba(218, 165, 32, .18);
}
.form-control::placeholder { color: var(--v-placeholder); }

/* --------------------------------------------------------------------------
   7. Tables
   -------------------------------------------------------------------------- */
.table { --bs-table-border-color: var(--v-border); margin-bottom: 0; }
.table > thead th {
    background: var(--v-bg-sunk);
    color: var(--v-muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--v-border);
    white-space: nowrap;
}
.table > tbody td { vertical-align: middle; }

.admin-table { width: 100%; }
/* Wide tables scroll inside their own box instead of pushing the page sideways. */
.admin-table-wrap { overflow-x: auto; }

/* --------------------------------------------------------------------------
   8. Pagination
   -------------------------------------------------------------------------- */
.pagination { --bs-pagination-color: var(--v-text); --bs-pagination-active-bg: var(--v-yellow); --bs-pagination-active-border-color: var(--v-yellow-dark); --bs-pagination-active-color: var(--v-text); }
.page-link:focus { box-shadow: 0 0 0 .2rem rgba(218, 165, 32, .18); }

/* --------------------------------------------------------------------------
   9. Public site — navbar, hero, footer
   -------------------------------------------------------------------------- */
.navbar-vride {
    background: linear-gradient(135deg, var(--v-yellow) 0%, var(--v-yellow-dark) 100%) !important;
    box-shadow: var(--v-shadow);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    z-index: 1030;
}
.navbar-vride .navbar-brand { color: var(--v-text) !important; font-weight: 700; padding: 0; display: inline-flex; align-items: center; }
.navbar-vride .nav-link { color: var(--v-text) !important; font-weight: 600; border-radius: var(--v-r-sm); padding: .45rem .75rem; }
.navbar-vride .nav-link:hover,
.navbar-vride .nav-link.active { background: rgba(255, 255, 255, .35); }
.navbar-toggler { border-color: rgba(0, 0, 0, .2); }

.hero-vride {
    background: linear-gradient(135deg, var(--v-yellow-light) 0%, var(--v-yellow) 100%);
    color: var(--v-text);
}

.footer-vride { background: var(--v-text); color: #fff; }
.footer-vride a { color: var(--v-yellow); }
.footer-vride a:hover { color: var(--v-yellow-accent); }

.loading-vride { color: var(--v-yellow-dark); }

/* `.org` is used by the marketing pages' schema/organisation block. */
.org { color: inherit; }

/* --------------------------------------------------------------------------
   10. Admin / franchise shell
   -------------------------------------------------------------------------- */
.admin-wrapper { display: flex; min-height: 100vh; background: var(--v-bg-sunk); }

.admin-sidebar {
    width: var(--v-sidebar-w);
    flex: 0 0 var(--v-sidebar-w);
    background: var(--v-text);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.sidebar-header { padding: var(--v-s-4); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.sidebar-footer { margin-top: auto; padding: var(--v-s-4); border-top: 1px solid rgba(255, 255, 255, .08); font-size: .8rem; color: rgba(255, 255, 255, .55); }
.sidebar-menu { padding: var(--v-s-2) 0; }

.menu-section {
    padding: var(--v-s-4) var(--v-s-4) var(--v-s-2);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .4);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, .78);
    padding: .55rem var(--v-s-4);
    border-radius: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.admin-sidebar .nav-link:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.admin-sidebar .nav-link.active {
    background: rgba(255, 215, 0, .14);
    color: var(--v-yellow);
    font-weight: 700;
    box-shadow: inset 3px 0 0 var(--v-yellow);
}

/* ⛔ These two names are the opposite of what they sound like, and the markup
   has used them this way since long before this file existed:
     .admin-content      = the whole right-hand COLUMN (sibling of the sidebar)
     .admin-main-content = the <main> inside it, where the page actually renders
   Getting them the wrong way round collapses the layout. */
.admin-content { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.admin-main-content { flex: 1 1 auto; }

/* Collapsible sidebar groups.
   These four class names existed in the markup with no CSS behind them at all —
   the grouping worked only because Bootstrap's collapse did the hiding. They now
   have a look of their own. */
.small-submenu .nav-link { font-size: .85rem; padding-top: .35rem; padding-bottom: .35rem; color: rgba(255, 255, 255, .62); }
.small-submenu .nav-link:hover { color: #fff; }
.admin-sidebar .nav-link.submenu-active { background: rgba(255, 215, 0, .10); color: var(--v-yellow); font-weight: 600; box-shadow: inset 3px 0 0 var(--v-yellow); }
.accordion-arrow { font-size: .7rem; opacity: .55; transition: transform .18s ease; }
.nav-link[aria-expanded="true"] .accordion-arrow { transform: rotate(180deg); opacity: .9; }

.admin-header {
    background: var(--v-bg);
    border-bottom: 1px solid var(--v-border);
    position: sticky;
    top: 0;
    z-index: 1020;
}
.admin-welcome-text { color: var(--v-muted); font-size: .9rem; }

.admin-footer { color: var(--v-muted); font-size: .85rem; border-top: 1px solid var(--v-border); }
.user-info { font-size: .9rem; }

.admin-header h4 { color: var(--v-text) !important; font-weight: 700; margin: 0; }

/* Bootstrap's .container caps width for reading columns; inside the panel the
   page should use the full width it has. */
.admin-wrapper .container { max-width: 100%; }
.admin-wrapper .pagination .small { font-size: .75rem !important; }

.table tbody tr:hover { background-color: rgba(255, 215, 0, .10); }
.admin-table small,
.admin-table .text-muted { color: var(--v-muted) !important; }

.card-vride .card-header-vride { border-radius: var(--v-r-md) var(--v-r-md) 0 0; }

@media (max-width: 991.98px) {
    .admin-header h4 { font-size: 1.2rem; }
}

@media (max-width: 991.98px) {
    .admin-sidebar { position: fixed; left: 0; top: 0; transform: translateX(-100%); transition: transform .2s ease; z-index: 1040; }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-content { padding: var(--v-s-4); }
}

/* --------------------------------------------------------------------------
   11. New components for the rebuilt panels
   --------------------------------------------------------------------------
   Prefixed `v-` so they can never collide with Bootstrap or with the legacy
   class names above.
   -------------------------------------------------------------------------- */

/* A note that must stay on screen. ⛔ Do NOT give these `.alert` — the layout
   auto-closes every `.alert` after 5 seconds, which has twice silently hidden
   permanent guidance. */
.v-note {
    border: 1px solid var(--v-border);
    border-left: 3px solid var(--v-yellow-dark);
    border-radius: var(--v-r-sm);
    background: var(--v-bg-soft);
    padding: var(--v-s-3) var(--v-s-4);
    font-size: .88rem;
    color: var(--v-muted);
}
.v-note-danger { border-left-color: var(--v-error); }
.v-note-success { border-left-color: var(--v-success); }

/* Page header */
.v-page-head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--v-s-3); margin-bottom: var(--v-s-5); }
.v-page-title { font-size: 1.4rem; font-weight: 700; margin: 0; }
.v-page-sub { color: var(--v-muted); font-size: .9rem; margin: 0; }
.v-page-actions { margin-left: auto; display: flex; gap: var(--v-s-2); flex-wrap: wrap; }

/* Section heading between groups of tiles */
.v-section-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--v-muted);
    margin: 0 0 var(--v-s-3);
}

/* Stat tile — the whole tile is a link to the list it counts. */
.v-tile {
    display: block;
    background: var(--v-bg);
    border: 1px solid var(--v-border);
    border-radius: var(--v-r-md);
    padding: var(--v-s-4);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--v-shadow-sm);
    transition: box-shadow .15s ease, border-color .15s ease;
}
.v-tile:hover { box-shadow: var(--v-shadow); border-color: var(--v-yellow-dark); color: inherit; }
.v-tile-label { color: var(--v-muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.v-tile-value { font-size: 1.75rem; font-weight: 700; line-height: 1.15; margin-top: var(--v-s-1); }
.v-tile-foot { color: var(--v-muted); font-size: .8rem; margin-top: var(--v-s-1); }

/* Something is waiting on a human. Marked with a left edge rather than a red
   fill: a queue with work in it is normal, not an error. */
.v-tile-attention { border-left: 3px solid var(--v-yellow-dark); }
.v-tile-attention .v-tile-value { color: var(--v-yellow-dark); }

/* Entity link — every name/id that has a page of its own uses this, so it is
   obvious at a glance what can be clicked through. */
.v-link { color: var(--v-text); font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--v-yellow-dark); }
.v-link:hover { color: var(--v-yellow-dark); border-bottom-style: solid; }

/* Key/value rows on detail pages */
.v-kv { display: grid; grid-template-columns: minmax(120px, 200px) 1fr; gap: var(--v-s-2) var(--v-s-4); }
.v-kv dt { color: var(--v-muted); font-weight: 600; font-size: .85rem; }
.v-kv dd { margin: 0; }

/* Filter bar */
.v-filters { display: flex; flex-wrap: wrap; gap: var(--v-s-2); align-items: end; }
.v-filters .form-control,
.v-filters .form-select { min-width: 160px; }

/* Empty state */
.v-empty { text-align: center; padding: var(--v-s-7) var(--v-s-4); color: var(--v-muted); }
.v-empty i { font-size: 2rem; opacity: .35; display: block; margin-bottom: var(--v-s-3); }

/* Money — tabular figures so columns line up */
.v-money { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.v-money-neg { color: var(--v-error); }

/* Timeline for dispatch / status history */
.v-timeline { list-style: none; margin: 0; padding: 0 0 0 var(--v-s-5); border-left: 2px solid var(--v-border); }
.v-timeline > li { position: relative; padding: 0 0 var(--v-s-4) var(--v-s-4); }
.v-timeline > li::before {
    content: ""; position: absolute; left: calc(-1 * var(--v-s-5) - 5px); top: 4px;
    width: 10px; height: 10px; border-radius: var(--v-r-pill);
    background: var(--v-yellow); border: 2px solid var(--v-bg);
}
.v-timeline time { display: block; color: var(--v-muted); font-size: .78rem; }

/* Tabs on detail pages */
.v-tabs { display: flex; gap: var(--v-s-1); flex-wrap: wrap; border-bottom: 1px solid var(--v-border); margin-bottom: var(--v-s-4); }
.v-tabs a {
    padding: .5rem .9rem; border-radius: var(--v-r-sm) var(--v-r-sm) 0 0;
    color: var(--v-muted); text-decoration: none; font-weight: 600; font-size: .9rem;
    border: 1px solid transparent; border-bottom: none;
}
.v-tabs a:hover { color: var(--v-text); background: var(--v-bg-soft); }
.v-tabs a.active { color: var(--v-text); background: var(--v-bg); border-color: var(--v-border); box-shadow: inset 0 3px 0 var(--v-yellow); }

/* While the settings search is active every tab is shown at once, so the tab
   rail on the left would be misleading — nothing is "selected" any more. */
.settings-searching .settings-sidebar-card { opacity: .45; pointer-events: none; }

@media print {
    .admin-sidebar, .admin-header, .v-page-actions, .navbar-vride { display: none !important; }
    .admin-content { padding: 0; }
}

/* ── Policy pages ─────────────────────────────────────────────────────────
   ⛔ This shell — hero, card, sidebar, CTA — was written out five times,
   once inside each policy page's own <style> block, and shipped uncached
   with every one of them. It belongs in one cached file. Anything only a
   single page uses is still in that page, keyframes included.
   ────────────────────────────────────────────────────────────────────── */
.policy-hero { background: linear-gradient(135deg, var(--vride-yellow) 0%, var(--vride-yellow-dark) 100%); padding: 60px 0; color: var(--vride-dark); position: relative; overflow: hidden; }
.policy-hero::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 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='%23000000' fill-opacity='0.05'%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"); opacity: 0.3; }
.policy-hero .container { position: relative; z-index: 1; }
.breadcrumb-dark { background: transparent; padding: 0; margin: 0; }
.breadcrumb-dark .breadcrumb-item a { color: var(--vride-dark); opacity: 0.8; }
.breadcrumb-dark .breadcrumb-item.active { color: var(--vride-dark); }
.policy-icon-wrapper { width: 120px; height: 120px; background: rgba(255,255,255,0.3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.policy-icon-wrapper i { font-size: 3rem; color: var(--vride-dark); }
.policy-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.3s ease; }
.policy-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.policy-card-header { display: flex; align-items: center; padding: 20px 24px; background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); border-bottom: 1px solid #eee; }
.policy-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-right: 16px; color: #fff; font-size: 1.25rem; }
.policy-card-header h3 { margin: 0; font-size: 1.25rem; font-weight: 600; }
.policy-card-body { padding: 24px; }
.policy-card-body p { color: #555; line-height: 1.7; }
.bg-gradient-primary { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
.bg-gradient-info { background: linear-gradient(135deg, #17a2b8 0%, #138496 100%); }
.bg-gradient-success { background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%); }
.bg-gradient-warning { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.bg-gradient-secondary { background: linear-gradient(135deg, #6c757d 0%, #545b62 100%); }
.bg-gradient-purple { background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%); }
.bg-gradient-dark { background: linear-gradient(135deg, #343a40 0%, #23272b 100%); }
.bg-gradient-teal { background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%); }
.sticky-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.sidebar-card h5 { font-weight: 600; margin-bottom: 16px; color: var(--vride-dark); }
.contact-item { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; }
.contact-item:last-child { border-bottom: none; }
.contact-item i { width: 30px; color: var(--vride-yellow-dark); }
.contact-item a { color: var(--vride-dark); text-decoration: none; }
.policy-link { display: flex; align-items: center; padding: 12px; margin: 8px 0; background: #f8f9fa; border-radius: 10px; color: var(--vride-dark); text-decoration: none; transition: all 0.3s ease; }
.policy-link:hover { background: var(--vride-yellow-light); transform: translateX(5px); }
.policy-link i:first-child { width: 30px; color: var(--vride-yellow-dark); }
.policy-link span { flex: 1; }
.cta-card { background: linear-gradient(135deg, var(--vride-yellow) 0%, var(--vride-yellow-dark) 100%); color: var(--vride-dark); }

@media (max-width: 991px) {
    .sticky-sidebar { position: relative; top: 0; margin-top: 40px; }
}
