 :root {
     --primary: #ff6b2f;
     --accent: #ff6b2f;
     --ink: #111111;
     --muted: #5e5a56;
     --line: #ebe3dc;
     --surface: #ffffff;
     --soft: #fff7f2;
     --dark: #1c1a19
 }

 body {
     font-family: 'Inter', sans-serif;
     background: #f8fafc
 }

 .navbar {
     background: #ffffffcc;
     backdrop-filter: blur(12px)
 }

 /* ===== PRO HERO ===== */
 .hero {
     position: relative;
     min-height: 92vh;
     display: flex;
     align-items: center;
     color: #fff;
     background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
 }

 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, rgba(2, 6, 23, .9) 0%, rgba(2, 6, 23, .6) 50%, rgba(37, 99, 235, .7) 100%);
 }

 .hero .container {
     position: relative;
     z-index: 2
 }

 .hero h1 {
     font-size: 3.2rem;
     font-weight: 700;
     line-height: 1.1;
 }

 .hero p {
     opacity: .9
 }

 .hero-card {
     background: #ffffff;
     border-radius: 18px;
     padding: 18px;
     box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
 }

 .hero-card input,
 .hero-card select {
     border-radius: 10px;
     height: 48px;
 }

 .hero-card button {
     height: 48px;
     border-radius: 10px;
     font-weight: 600;
 }

 .hero-badge {
     display: inline-block;
     background: rgba(255, 255, 255, .15);
     padding: 6px 12px;
     border-radius: 50px;
     font-size: 13px;
     margin-bottom: 15px;
 }

 .hero-stats {
     display: flex;
     gap: 20px;
     margin-top: 20px;
     font-size: 14px;
 }

 /* ===== OTHER ===== */
 .search-bar {
     background: #fff;
     padding: 15px;
     border-radius: 16px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15)
 }

 .vehicle-card {
     border-radius: 18px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: .3s
 }

 .vehicle-card:hover {
     transform: translateY(-8px)
 }

 .vehicle-card img {
     height: 200px;
     object-fit: cover
 }



 .price {
     font-weight: 600;
     color: var(--primary)
 }

 .scroll-container {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     padding-bottom: 10px
 }

 .scroll-container::-webkit-scrollbar {
     display: none
 }

 .feature {
     background: #fff;
     padding: 20px;
     border-radius: 14px;
     text-align: center
 }

 .cta {
     background: linear-gradient(135deg, #2563eb, #0ea5e9);
     color: #fff;
     padding: 60px;
     border-radius: 20px;
     text-align: center
 }

 .sticky-cta {
     position: fixed;
     bottom: 15px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 999
 }

 .badge-custom {
     background: #22c55e;
     color: #fff;
     font-size: 12px
 }

 .rating {
     color: #fbbf24;
     font-size: 14px
 }

 .review-card {
     background: #fff;
     padding: 20px;
     border-radius: 14px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05)
 }

/* ===== DWARKA RIDE HUB APP ===== */
* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fffaf7 0%, #fff4ee 42%, #fffcfa 100%);
}

body.modal-open {
    overflow: hidden;
}

body.nav-open {
    overflow: hidden;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(18px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(235, 227, 220, 0.96);
    box-shadow: 0 10px 32px rgba(17, 17, 17, 0.05);
    backdrop-filter: blur(18px);
}

.topbar::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 107, 47, 0), rgba(255, 107, 47, 0.32), rgba(255, 107, 47, 0));
    pointer-events: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.brand-word {
    color: #111 !important;
}

.brand-go {
    color: #ff6b2f;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    padding: 6px;
    background: #fff8f3;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    min-width: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: #111;
    background: #fff;
    font: inherit;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    border-color: #ffcfbb;
    box-shadow: 0 14px 28px rgba(255, 107, 47, 0.16);
}

.nav-toggle-bars {
    display: grid;
    gap: 4px;
}

.nav-toggle-bars span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.topbar.nav-open .nav-toggle {
    border-color: #ffcfbb;
    background: #fff4ed;
}

.topbar.nav-open .nav-toggle-bars span {
    background: #ff6b2f;
}

.topbar.nav-open .nav-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.topbar.nav-open .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.topbar.nav-open .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    font-size: 14px;
}

.nav-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 12px;
    color: #111;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-actions a:hover,
.nav-button:hover {
    color: #ff6b2f;
    background: #fff1e8;
}

.nav-button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    color: #111;
    background: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.platform-hero {
    min-height: 84vh;
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
    gap: clamp(22px, 4vw, 54px);
    padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
    color: #fff;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 107, 47, 0.24), transparent 28%),
        linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(72, 43, 31, 0.78)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
}

.platform-hero::before {
    content: none;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
}

.eyebrow,
.form-label {
    display: inline-flex;
    width: fit-content;
    color: #bf4b20;
    background: #fff3ea;
    border: 1px solid #ffd2bf;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.platform-hero .eyebrow {
    color: #fff;
    background: rgba(255, 107, 47, 0.22);
    border-color: rgba(255, 255, 255, 0.26);
}

.platform-hero h1 {
    max-width: 820px;
    margin: 18px 0 16px;
    font-size: clamp(42px, 6.4vw, 78px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.platform-hero p {
    max-width: 620px;
    margin: 0;
    color: #fff1e8;
    font-size: 18px;
    line-height: 1.7;
    opacity: 1;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin-top: 28px;
}

.hero-mini-stats div {
    display: grid;
    gap: 3px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.hero-mini-stats strong {
    color: #fff;
    font-size: 18px;
}

.hero-mini-stats span {
    color: #ffe2d4;
    font-size: 13px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-bullet-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-bullet-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 10px;
    color: #eff9f4;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.solid-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    padding: 12px 18px;
    border: 1px solid var(--primary);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.solid-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #e95b22);
    box-shadow: 0 16px 34px rgba(255, 107, 47, 0.26);
}

.ghost-btn {
    color: #fff7f2;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.solid-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.quick-book,
.vendor-form {
    align-self: center;
    display: grid;
    gap: 14px;
    width: 100%;
    padding: 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 231, 225, 0.92);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(8, 17, 14, 0.24);
    backdrop-filter: blur(14px);
}

.quick-book {
    max-height: calc(100vh - 110px);
    overflow: auto;
}

.quick-book h2,
.section-head h2,
.vendor-copy h2,
.local-routes h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
}

.quick-book h2 {
    font-size: 24px;
}

.quick-book p,
.vendor-copy p {
    color: var(--muted);
}

label {
    display: grid;
    gap: 7px;
    color: #31413a;
    font-size: 13px;
    font-weight: 800;
}

input,
select,
textarea {
    min-height: 46px;
    width: 100%;
    border: 1px solid #cbdcd4;
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

textarea {
    resize: vertical;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: #b44f24;
    font-size: 14px;
    font-weight: 700;
}

.form-status a {
    color: #bf4b20;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

.trust-strip div {
    display: grid;
    gap: 4px;
    padding: 24px clamp(18px, 4vw, 48px);
    background: #fff;
}

.trust-strip strong {
    color: var(--primary);
    font-size: 24px;
}

.trust-strip span {
    color: var(--muted);
}

.section-shell {
    padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.compact-head {
    margin-bottom: 18px;
}

.service-highlights,
.featured-offers-section,
.faq-section {
    background: #fff;
}

.service-grid,
.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-grid article,
.destination-grid article {
    display: grid;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff, #f8fcfa);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(31, 56, 47, 0.06);
}

.service-grid strong,
.destination-grid strong,
.offer-feature-card h3,
.faq-list summary {
    color: #172026;
    font-size: 18px;
    font-weight: 800;
}

.service-grid p,
.destination-grid p,
.offer-feature-card p,
.faq-list p {
    margin: 0;
    color: #526159;
    line-height: 1.65;
}

.offer-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.offer-feature-card {
    overflow: hidden;
    display: grid;
    background: linear-gradient(180deg, #ffffff, #fbfdfc);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(31, 56, 47, 0.08);
}

.offer-feature-card img,
.destination-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.offer-feature-card > div,
.destination-grid article div {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.offer-feature-type {
    display: inline-flex;
    width: fit-content;
    padding: 6px 9px;
    color: var(--primary);
    background: #e7f6f0;
    border: 1px solid #c5e8db;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.offer-feature-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #526159;
    font-size: 14px;
    font-weight: 700;
}

.offer-feature-meta strong {
    color: #bf4b20;
    font-size: 18px;
}

.about-rentigo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    background: var(--surface);
}

.about-copy h2,
.how-it-works h2,
.reviews-section h2,
.final-cta h2 {
    max-width: 840px;
    margin: 16px 0 14px;
    color: #172026;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.06;
}

.about-copy p,
.reviews-section p,
.final-cta p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.about-rentigo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(31, 56, 47, 0.16);
}

.about-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.about-points div,
.steps-grid div,
.review-preview-grid article {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: #fff8f3;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.about-points strong,
.steps-grid h3,
.review-preview-grid strong {
    color: #172026;
    font-size: 18px;
    font-weight: 800;
}

.about-points span,
.steps-grid p,
.review-preview-grid p {
    margin: 0;
    color: #526159;
    line-height: 1.6;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.vehicle-section-head p {
    max-width: 680px;
    margin: 10px 0 0;
    color: #526159;
    line-height: 1.7;
}

.filter-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #526159;
    font-weight: 700;
}

.filter-box select {
    min-width: 140px;
}

.listing-tools {
    position: sticky;
    top: 62px;
    z-index: 12;
    display: grid;
    grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(140px, 1fr)) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 22px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(31, 56, 47, 0.1);
    backdrop-filter: blur(18px);
}

.listing-tools label {
    min-width: 0;
}

.ghost-light-btn {
    min-height: 46px;
    border: 1px solid #cfd9cb;
    border-radius: 8px;
    padding: 10px 14px;
    color: #111;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.market-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(220, 231, 225, 0.94);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(17, 17, 17, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(17, 17, 17, 0.12);
}

.market-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.market-card-body {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.market-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
}

.market-card p {
    min-height: 46px;
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.offer-strip {
    display: grid;
    gap: 3px;
    padding: 10px;
    color: #7a330f;
    background: linear-gradient(135deg, #fff0e6, #fff8f3);
    border: 1px solid #ffd0ba;
    border-radius: 8px;
}

.offer-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #d95420);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(242, 107, 58, 0.32);
}

.offer-strip strong {
    font-size: 14px;
}

.offer-strip span {
    font-size: 13px;
    font-weight: 800;
}

.vehicle-meta,
.route-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vehicle-meta span,
.route-list span {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px 8px;
    color: #352b25;
    background: #fff8f3;
    font-size: 12px;
    font-weight: 800;
}

.route-list .city-chip {
    min-height: 40px;
    padding: 8px 14px;
    border-color: rgba(255, 107, 47, 0.25);
    color: #111 !important;
}

.market-card .solid-btn {
    width: 100%;
}

.load-more-row {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.public-empty {
    background: #fff;
    border: 1px solid #dfe6dc;
    border-radius: 8px;
}

.vendor-band {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
    gap: clamp(24px, 5vw, 68px);
    background: #eaf0e7;
    border-block: 1px solid #dfe6dc;
}

.vendor-cta-band,
.vendor-page-hero {
    display: grid;
    gap: 16px;
    background: #fff1e8;
    border-block: 1px solid #dfe6dc;
}

.how-it-works {
    background: #fff;
}

.destination-showcase {
    background: linear-gradient(180deg, #f4faf6, #ffffff);
}

.steps-grid,
.review-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.steps-grid div {
    background: #fff;
}

.steps-grid span {
    display: inline-flex;
    width: fit-content;
    color: var(--primary);
    background: #fff1e8;
    border: 1px solid #ffd3c0;
    border-radius: 8px;
    padding: 6px 9px;
    font-weight: 900;
}

.reviews-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    background: linear-gradient(135deg, #fff8f3, #ffffff);
}

.review-actions {
    margin-top: 24px;
}

.review-actions .ghost-light-btn,
.final-cta .ghost-light-btn {
    text-decoration: none;
}

.review-preview-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.review-preview-grid article {
    background: #fff;
}

.vendor-cta-band {
    justify-items: start;
}

.vendor-cta-band h2,
.vendor-page-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #172026;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
}

.vendor-cta-band p,
.vendor-page-hero p {
    max-width: 720px;
    margin: 0;
    color: #526159;
    font-size: 17px;
    line-height: 1.7;
}

.vendor-page-hero {
    padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(255, 241, 232, 0.94), rgba(255, 255, 255, 0.86)),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

.vendor-portal {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 620px);
    gap: clamp(24px, 5vw, 68px);
}

.vendor-copy {
    align-self: center;
}

.vendor-copy h2,
.local-routes h2 {
    margin-top: 16px;
}

.vendor-copy ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.vendor-copy li {
    padding-left: 28px;
    color: #31413a;
    font-weight: 700;
    position: relative;
}

.vendor-copy li::before {
    content: "OK";
    position: absolute;
    left: 0;
    top: 1px;
    color: #2d6a3f;
    font-size: 12px;
    font-weight: 900;
}

.local-routes {
    background: #fff;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.faq-list details {
    padding: 18px 20px;
    background: #f8fcfa;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-top: 12px;
}

.local-routes h2 {
    max-width: 780px;
    margin-bottom: 20px;
}

.final-cta {
    display: grid;
    justify-items: start;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(94, 50, 32, 0.8)),
        url("https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

.final-cta .eyebrow {
    color: #ffd8c2;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

.final-cta h2,
.final-cta p {
    color: #fff;
}

.sticky-booking-bar {
    position: fixed;
    right: clamp(14px, 3vw, 28px);
    bottom: 18px;
    z-index: 100;
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(32, 43, 37, 0.18);
    backdrop-filter: blur(10px);
}

.sticky-booking-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 8px;
    padding: 9px 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #e95b22);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.sticky-booking-bar a + a {
    color: #2d423a;
    background: #f7fbf8;
    border: 1px solid var(--line);
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 18px;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 15, 0.66);
    backdrop-filter: blur(8px);
}

.booking-modal-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    width: min(100%, 560px);
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 22px;
    background: #fff;
    border: 1px solid #dfe6dc;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.booking-modal-card h2 {
    margin: 0;
    color: #172026;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
}

.booking-modal-card p {
    margin: 0;
    color: #526159;
}

.booking-modal-card form {
    display: grid;
    gap: 12px;
}

.modal-close {
    justify-self: end;
    min-height: 36px;
    border: 1px solid #cfd9cb;
    border-radius: 8px;
    padding: 7px 10px;
    color: #31413a;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px clamp(18px, 5vw, 72px);
    color: #fff;
    background: #203a2d;
}

/* ===== ADMIN BOOKINGS ===== */
.admin-page {
    background: #fff8f4;
}

.admin-shell {
    display: grid;
    gap: 22px;
    padding: clamp(24px, 5vw, 54px);
}

.admin-login-card,
.edit-panel {
    width: min(100%, 720px);
    background: #fff;
    border: 1px solid #dfe6dc;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(32, 43, 37, 0.08);
}

.admin-login-card {
    display: grid;
    gap: 16px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 42px);
}

.admin-login-card h1 {
    margin: 0;
    color: #172026;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1;
}

.admin-login-card p {
    margin: 0;
    color: #526159;
    line-height: 1.7;
}

.admin-login-card form {
    display: grid;
    gap: 14px;
}

.edit-panel {
    width: 100%;
    overflow: hidden;
}

.admin-edit-form {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.auth-tabs {
    display: flex;
    gap: 10px;
}

.auth-tabs .active {
    color: #fff;
    background: #bf4b20;
    border-color: #bf4b20;
}

.vendor-admin-hero .ghost-admin-btn {
    text-decoration: none;
}

.vendor-panel-grid {
    display: grid;
    gap: 18px;
    align-items: start;
    padding-inline: 0;
    padding-block: 0;
}

.vendor-quick-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 16px;
    padding-top: 0;
}

.vendor-quick-actions article,
.vendor-tip-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #dfe6dc;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.05);
}

.vendor-quick-actions h2,
.vendor-form-intro p,
.vendor-tip-card p {
    margin: 0;
}

.vendor-quick-actions h2 {
    color: #111;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
}

.vendor-quick-actions p,
.vendor-form-note,
.vendor-tip-card p {
    color: #5e5a56;
    line-height: 1.65;
}

.vendor-action-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vendor-action-chips .ghost-light-btn {
    text-decoration: none;
}

.vendor-tip-card strong {
    color: #111;
    font-size: 18px;
}

.vendor-stack-panel {
    display: grid;
    gap: 0;
}

.vendor-two-column-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 18px;
    align-items: start;
}

.vendor-profile-panel {
    padding-bottom: 20px;
}

.vendor-link-box {
    display: grid;
    gap: 8px;
    padding: 20px;
    border-bottom: 1px solid #dfe6dc;
}

.vendor-link-box span {
    color: #526159;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.vendor-link-box input {
    min-height: 48px;
    border: 1px solid #dfe6dc;
    border-radius: 8px;
    padding: 12px 14px;
    color: #172026;
    background: #f8faf6;
    font: inherit;
}

.vendor-profile-form {
    border: 0;
    box-shadow: none;
}

.vendor-inline-form {
    border-top: 1px solid #ebe3dc;
}

.vendor-form-intro {
    display: grid;
    gap: 8px;
}

.vendor-summary-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vendor-list-panel {
    align-self: start;
}

.vendor-card-list {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.vendor-booking-list {
    padding-bottom: 10px;
}

.vendor-manage-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    background: #fff;
    border: 1px solid #dfe6dc;
    border-radius: 8px;
}

.vendor-manage-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.vendor-manage-card h3 {
    margin: 8px 0 6px;
    color: #172026;
    font-size: 22px;
    font-weight: 800;
}

.vendor-manage-card p {
    margin: 0 0 10px;
    color: #526159;
}

.vendor-booking-card {
    grid-template-columns: 72px minmax(0, 1fr);
}

.vendor-booking-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #ff6b2f, #e95b22);
    font-size: 28px;
    font-weight: 900;
}

.vendor-booking-note {
    margin-top: 10px;
    padding: 10px 12px;
    background: #fff8f3;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.vendor-card-link {
    text-decoration: none;
    text-align: center;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.card-actions .solid-btn,
.card-actions .ghost-light-btn {
    flex: 1 1 180px;
}

.vendor-store-page {
    background: linear-gradient(180deg, #fffaf7 0%, #fff3eb 48%, #fffcfa 100%);
}

.vendor-store-hero {
    display: grid;
    min-height: 54vh;
    padding: clamp(36px, 7vw, 84px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(108, 60, 38, 0.82)),
        url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
    color: #fff;
}

.vendor-store-copy {
    max-width: 760px;
    display: grid;
    gap: 18px;
    align-content: center;
}

.vendor-store-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
}

.vendor-store-copy p {
    margin: 0;
    max-width: 680px;
    color: #ecf7f0;
    font-size: 18px;
    line-height: 1.7;
}

.vendor-store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vendor-store-meta span {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.vendor-store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vendor-store-actions .solid-btn,
.vendor-store-actions .ghost-admin-btn {
    text-decoration: none;
}

.vendor-store-section {
    padding-top: 24px;
}

.vendor-seo-hero {
    min-height: 68vh;
}

.vendor-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #ffe3d5;
    font-size: 13px;
    font-weight: 700;
}

.vendor-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.vendor-rich-meta span {
    background: rgba(255, 255, 255, 0.15);
}

.vendor-seo-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.vendor-seo-stats article,
.vendor-detail-card,
.vendor-value-grid div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
}

.vendor-seo-stats article {
    display: grid;
    gap: 4px;
    padding: 16px;
}

.vendor-seo-stats strong {
    color: #ff6b2f;
    font-size: 24px;
}

.vendor-seo-stats span {
    color: #5e5a56;
    font-size: 13px;
    font-weight: 800;
}

.vendor-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: linear-gradient(180deg, #fff9f6, #ffffff);
}

.vendor-detail-card {
    display: grid;
    gap: 18px;
    padding: 22px;
}

.vendor-detail-card h2 {
    margin: 0;
    color: #111;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
}

.vendor-detail-card p,
.vendor-detail-list li,
.vendor-value-grid p {
    margin: 0;
    color: #5e5a56;
    line-height: 1.7;
}

.vendor-detail-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vendor-detail-list a {
    color: #ff6b2f;
    font-weight: 800;
    text-decoration: none;
}

.vendor-value-grid {
    display: grid;
    gap: 12px;
}

.vendor-value-grid div {
    display: grid;
    gap: 6px;
    padding: 16px;
    background: #fff8f3;
}

.vendor-content-band,
.vendor-seo-copy-band {
    background: #fff;
}

.vendor-route-list {
    margin-top: 20px;
}

.vendor-final-cta .ghost-light-btn {
    text-decoration: none;
}

.admin-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    padding: clamp(22px, 4vw, 42px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(110, 63, 39, 0.8)),
        url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
    border-radius: 8px;
}

.admin-hero h1 {
    margin: 16px 0 8px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1;
}

.admin-hero p {
    margin: 0;
    color: #edf5ea;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.ghost-admin-btn,
.danger-btn {
    min-height: 42px;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}

.ghost-admin-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.danger-btn {
    color: #fff;
    background: #a83232;
    border: 1px solid #a83232;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-summary div,
.booking-panel {
    background: #fff;
    border: 1px solid #dfe6dc;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(32, 43, 37, 0.06);
}

.admin-summary div {
    display: grid;
    gap: 4px;
    padding: 18px;
}

.admin-summary strong {
    color: #ff6b2f;
    font-size: 24px;
}

.admin-summary span {
    color: #526159;
    font-weight: 700;
}

.booking-panel {
    overflow: hidden;
}

.booking-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #dfe6dc;
}

.booking-panel-head h2 {
    margin: 0;
    color: #172026;
    font-size: 26px;
    font-weight: 800;
}

.booking-panel-head p {
    margin: 0;
    color: #526159;
    font-weight: 700;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 1280px;
    border-collapse: collapse;
}

th,
td {
    padding: 14px 16px;
    border-bottom: 1px solid #e8eee5;
    text-align: left;
    vertical-align: top;
}

th {
    color: #31413a;
    background: #f8faf6;
    font-size: 13px;
    text-transform: uppercase;
}

td {
    color: #172026;
}

td a {
    color: #bf4b20;
    font-weight: 800;
    text-decoration: none;
}

.admin-vehicle-thumb {
    width: 78px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #dfe6dc;
}

.status-pill {
    display: inline-flex;
    border-radius: 8px;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 900;
}

.status-pending {
    color: #7a4a00;
    background: #fff3cf;
}

.status-approved {
    color: #8b3d1e;
    background: #ffe8db;
}

.status-rejected {
    color: #8f2525;
    background: #ffe0e0;
}

.row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.row-actions .ghost-admin-btn,
.row-actions .danger-btn {
    min-height: 34px;
    padding: 7px 10px;
    color: #172026;
    background: #fff;
    border-color: #cfd9cb;
}

.row-actions .danger-btn {
    color: #fff;
    background: #a83232;
    border-color: #a83232;
}

.empty-state {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 44px 20px;
    text-align: center;
}

.empty-state[hidden],
.table-wrap[hidden] {
    display: none;
}

.empty-state h3 {
    margin: 0;
    color: #172026;
    font-size: 24px;
    font-weight: 800;
}

.empty-state p {
    margin: 0;
    color: #526159;
}

@media (max-width: 1100px) {
    .vendor-quick-actions,
    .vendor-two-column-grid,
    .vendor-summary-grid,
    .vendor-seo-stats,
    .vendor-overview-grid,
    .service-grid,
    .destination-grid,
    .offer-feature-grid,
    .market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .listing-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        position: static;
    }
}

@media (max-width: 840px) {
    .section-head,
    footer,
    .admin-hero,
    .booking-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nav-group {
        display: none;
        width: 100%;
        margin-left: 0;
        padding: 10px;
        background: linear-gradient(180deg, #ffffff, #fff7f2);
        box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
        transform: translateY(-6px);
        opacity: 0;
    }

    .topbar.nav-open .nav-group {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav-actions a,
    .nav-button {
        justify-content: flex-start;
        min-height: 46px;
        padding-inline: 14px;
        background: #fff;
        border: 1px solid #f1e3d8;
    }

    .platform-hero,
    .vendor-band,
    .vendor-portal,
    .vendor-quick-actions,
    .vendor-two-column-grid,
    .about-rentigo,
    .reviews-section {
        grid-template-columns: 1fr;
    }

    .vendor-manage-card {
        grid-template-columns: 1fr;
    }

    .vendor-booking-card {
        grid-template-columns: 1fr;
    }

    .vendor-booking-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .platform-hero {
        min-height: auto;
    }

    .trust-strip,
    .market-grid,
    .admin-summary,
    .steps-grid,
    .hero-mini-stats,
    .vendor-seo-stats,
    .service-grid,
    .destination-grid,
    .offer-feature-grid,
    .vendor-overview-grid {
        grid-template-columns: 1fr;
    }

    .listing-tools {
        grid-template-columns: 1fr;
    }

    .admin-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .card-actions,
    .vendor-store-actions {
        align-items: stretch;
    }
}

@media (max-width: 560px) {
    .nav-actions,
    .hero-actions,
    .filter-box,
    .hero-bullet-row {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-actions a,
    .nav-button,
    .nav-toggle {
        width: 100%;
    }

    .nav-toggle {
        max-width: 54px;
        margin-left: auto;
        width: 54px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .quick-book,
    .vendor-form {
        padding: 16px;
    }

    .vendor-card-list,
    .booking-panel-head,
    .vendor-link-box,
    .vendor-quick-actions article,
    .vendor-tip-card {
        padding-inline: 16px;
    }

    .vendor-quick-actions {
        padding-top: 0;
    }

    .quick-book {
        max-height: none;
    }

    .sticky-booking-bar {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .sticky-booking-bar a {
        flex: 1;
    }
}
