:root {
    --primary-blue: #1e90ff;
    --primary-dark: #0f3f75;
    --accent-yellow: #f8c24e;
    --neutral-light: #f5f7fb;
    --text-dark: #1f2533;
    --text-muted: #5b6475;
    --max-width: 1100px;
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    color: var(--text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: linear-gradient(135deg, var(--primary-blue), #54b0ff);
    color: white;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.logo-icon {
    width: clamp(48px, 5vw, 68px);
    height: clamp(48px, 5vw, 68px);
    padding: 0.4rem;
    border-radius: 50%;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(84, 176, 255, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 26px rgba(15, 63, 117, 0.28);
    display: block;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    font-weight: 500;
}

nav a {
    position: relative;
    transition: opacity 0.2s ease;
}

nav a:hover,
nav a:focus {
    opacity: 0.75;
}

nav a.nav-active {
    font-weight: 700;
}

nav a.nav-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 999px;
}

.cta-button {
    background: var(--accent-yellow);
    color: #1a1a1a;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.hero-card {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 16px 40px rgba(15, 63, 117, 0.18);
}

.hero-card strong {
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.hero-card p {
    color: var(--text-muted);
}

.hero-card .feature-list li::before {
    color: var(--accent-yellow);
}

.section {
    padding: 4rem 1.5rem;
}

.section-alt {
    background: var(--neutral-light);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section p.section-intro {
    text-align: center;
    color: var(--text-muted);
    margin: 0 auto 2.5rem;
    max-width: 680px;
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Compact add-ons layout: small square tiles */
.addons-grid {
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.addon-card {
    padding: 0.85rem;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    justify-items: center;
    text-align: center;
    gap: 0.4rem;
}

.addon-card h3 {
    font-size: 0.95rem;
    line-height: 1.2;
}

.addon-card p {
    margin-top: 0.1rem;
    background: var(--neutral-light);
    color: var(--primary-dark);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 720px) {
    /* Prevent add-on tiles from crowding/overlapping on small screens */
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
    .addon-card {
        aspect-ratio: auto;
        min-height: 120px;
        padding: 0.75rem;
    }
    .addon-card h3 {
        font-size: 0.9rem;
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: anywhere;
        text-align: center;
    }
    .addon-card p {
        font-size: 0.8rem;
    }
}

.card {
    background: white;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 12px 30px rgba(15, 63, 117, 0.1);
    display: grid;
    gap: 0.75rem;
}

.card h3 {
    font-size: 1.3rem;
}

.feature-list {
    list-style: none;
    color: var(--text-muted);
    display: grid;
    gap: 0.5rem;
}

.feature-list li::before {
    content: '\2713';
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.value-banner {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.value-banner img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 14px 40px rgba(15, 63, 117, 0.15);
}

.value-text ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.value-text li {
    padding-left: 1.25rem;
    position: relative;
}

.value-text li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-blue);
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.badge-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(15, 63, 117, 0.2);
    box-shadow: 0 10px 22px rgba(15, 63, 117, 0.16);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.45rem;
}

.booking-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.booking-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 16px 38px rgba(15, 63, 117, 0.12);
}

.booking-card h3 {
    margin-bottom: 1.25rem;
}

.booking-card form {
    display: block;
}

label {
    display: grid;
    gap: 0.4rem;
    font-weight: 600;
}

.checkbox-group {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

.checkbox-group > span {
    color: var(--primary-dark);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

input,
select,
textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #d0d7e5;
    background: #f9fbff;
    font: inherit;
    width: 100%;
}

textarea {
    min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(30, 144, 255, 0.2);
}

fieldset {
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(30, 144, 255, 0.04);
}

legend {
    font-weight: 700;
    color: var(--primary-dark);
    padding: 0 0.5rem;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

label.time-slot {
    position: relative;
    display: block;
    font-weight: 600;
}

.time-slot input[type="radio"] {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.time-slot span {
    display: block;
    background: white;
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 0.75rem;
    padding: 0.6rem 0.85rem;
    text-align: center;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.time-slot input[type="radio"]:focus-visible + span,
.time-slot input[type="radio"]:checked + span {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 14px rgba(15, 63, 117, 0.12);
    transform: translateY(-2px);
}

#booking-summary {
    margin-top: 1.5rem;
    background: rgba(30, 144, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    line-height: 1.5;
}

.testimonials {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 26px rgba(15, 63, 117, 0.08);
}

.testimonial strong {
    display: block;
    margin-top: 1rem;
}

footer {
    background: #0e1d33;
    color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 1.5rem;
}

footer .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer h4 {
    margin-bottom: 0.85rem;
}

footer ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

/* Contact section */
.contact-section {
    background: var(--neutral-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(15, 63, 117, 0.12);
    border-radius: 1.25rem;
    box-shadow: 0 16px 30px rgba(15, 63, 117, 0.08);
    padding: 1.25rem;
}

.contact-card h3 {
    margin-bottom: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-note {
    color: var(--text-muted);
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Simple social icon link */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-dark);
    display: inline-block;
}

.social-link:hover .social-icon,
.social-link:focus .social-icon {
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 720px) {
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .top-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

.gallery-hero {
    align-items: end;
}

.comparison-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.comparison-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 16px 32px rgba(15, 63, 117, 0.12);
    display: grid;
    gap: 1.25rem;
}

.comparison-card header h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
}
.comparison-card header p {
    color: var(--text-muted);
}
.comparison-images {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.comparison-panel {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(15, 63, 117, 0.15);
}

.comparison-panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.comparison-panel:hover img {
    transform: scale(1.03);
}

.comparison-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-dark);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(15, 63, 117, 0.18);
}

.media-showcase {
    display: grid;
    gap: 2.5rem;
}

.media-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.media-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 63, 117, 0.1);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure gallery videos render as proper squares, not portrait */
.media-card .gallery-video {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Featured reel wider aspect */
.media-card .gallery-video.gallery-video--wide {
    aspect-ratio: 16 / 9;
}

.media-card figcaption {
    padding: 1rem 1.25rem 1.4rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.85rem;
}

.media-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(0 6px 14px rgba(15, 63, 117, 0.18));
}

.media-text {
    display: grid;
    gap: 0.35rem;
}

.media-text strong {
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.media-text span {
    color: var(--text-muted);
}

.media-quote {
    background: var(--neutral-light);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: inset 0 0 0 1px rgba(15, 63, 117, 0.1);
    display: grid;
    gap: 0.75rem;
    justify-items: start;
}

.media-quote blockquote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.6;
    position: relative;
    padding-left: 2.5rem;
}

.media-quote blockquote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -0.35rem;
    font-size: 3rem;
    color: rgba(15, 63, 117, 0.25);
    font-family: 'Times New Roman', serif;
}

.media-quote cite {
    font-style: normal;
    font-weight: 600;
}

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(15, 63, 117, 0.95), rgba(30, 144, 255, 0.9));
    color: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(15, 63, 117, 0.2);
}

.cta-banner .section-intro {
    color: rgba(255, 255, 255, 0.92) !important;
    text-align: left;
    margin: 0;
}

.cta-banner .cta-button {
    background: white;
    color: var(--primary-dark);
    box-shadow: none;
}

.cta-banner .cta-button:hover,
.cta-banner .cta-button:focus {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.vehicle-experience {
    background: var(--neutral-light);
}

.vehicle-experience__layout {
    display: flex;
    gap: 1.75rem;
    align-items: stretch;
    flex-wrap: wrap;
    /* Ensure children can shrink to avoid horizontal overflow */
    overflow-x: hidden;
}

/* Quick body-type beans above the preview slider */
.vehicle-beans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    padding: 0.4rem 0.5rem;
    border-radius: 999px;
    background: rgba(15, 63, 117, 0.04);
    border: 1px solid rgba(15, 63, 117, 0.08);
}

.vehicle-bean {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    border: 1px solid rgba(15, 63, 117, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-bean:hover,
.vehicle-bean:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 63, 117, 0.12);
}

.vehicle-bean.is-active {
    background: linear-gradient(135deg, rgba(248, 194, 78, 0.35), rgba(248, 194, 78, 0.2));
    color: #1a1a1a;
    border-color: rgba(248, 194, 78, 0.7);
    box-shadow: 0 8px 18px rgba(248, 194, 78, 0.25);
}

.vehicle-bean:focus-visible {
    outline: 3px solid rgba(248, 194, 78, 0.35);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .vehicle-bean {
        font-size: 0.9rem;
        padding: 0.3rem 0.75rem;
    }
}

.vehicle-preview,
.vehicle-selector {
    flex: 1 1 340px;
    min-width: 0;
}

.vehicle-preview {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 16px 30px rgba(15, 63, 117, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    position: sticky;
    top: 1.5rem;
    align-self: flex-start;
}

.vehicle-preview__details {
    display: grid;
    gap: 0.5rem;
}

.vehicle-preview__image {
    position: relative;
    border-radius: 1.1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: radial-gradient(circle at 20% 20%, rgba(84, 176, 255, 0.35), transparent 68%);
}

.vehicle-preview__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 63, 117, 0.05), rgba(30, 144, 255, 0.15));
    pointer-events: none;
}

.vehicle-preview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay slider controls inside preview */
.preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(15, 63, 117, 0.2);
    background: rgba(255,255,255,0.95);
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15,63,117,0.15);
    z-index: 2;
}
.preview-nav.prev { left: 8px; }
.preview-nav.next { right: 8px; }

.preview-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}
.preview-dots .preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 63, 117, 0.25);
    border: 0;
}
.preview-dots .preview-dot.is-active {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.vehicle-preview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.vehicle-preview__image img.is-fading {
    opacity: 0;
    transform: scale(1.04);
}

.vehicle-preview__details h3 {
    font-size: 1.6rem;
}

.vehicle-preview__details p {
    color: var(--text-muted);
    max-width: 28ch;
}

#vehicle-preview-price {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 63, 117, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 0.25rem;
}

.vehicle-selector {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.vehicle-selector h2 {
    font-size: clamp(1.75rem, 3vw, 2.3rem);
}

.vehicle-grid {
    margin-top: 1.75rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.vehicle-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 63, 117, 0.12);
    display: grid;
    gap: 0.85rem;
    position: relative;
    isolation: isolate;
    cursor: pointer;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.28), rgba(84, 176, 255, 0.18));
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.vehicle-card--suv::before {
    background: linear-gradient(135deg, rgba(248, 194, 78, 0.32), rgba(30, 144, 255, 0.2));
}

.vehicle-card--truck::before {
    background: linear-gradient(135deg, rgba(15, 63, 117, 0.42), rgba(30, 144, 255, 0.18));
}

.vehicle-card--van::before {
    background: linear-gradient(135deg, rgba(84, 176, 255, 0.32), rgba(248, 194, 78, 0.22));
}


.vehicle-card .vehicle-price,
.vehicle-preview__details #vehicle-preview-price {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 63, 117, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 0.25rem;
}

.vehicle-price {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(15, 63, 117, 0.08);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
}

.vehicle-description {
    color: var(--text-muted);
}

.vehicle-features {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
}

.vehicle-features ul {
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
}

.vehicle-features li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--text-muted);
}

.vehicle-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-yellow));
    box-shadow: 0 4px 10px rgba(15, 63, 117, 0.2);
}

.vehicle-card .cta-button-ghost {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid rgba(15, 63, 117, 0.18);
    box-shadow: none;
    justify-self: start;
    padding-inline: 1.25rem;
}

.vehicle-card .cta-button-ghost:hover,
.vehicle-card .cta-button-ghost:focus {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
    box-shadow: 0 16px 32px rgba(15, 63, 117, 0.25);
}

.vehicle-card:is(:hover, :focus-visible) {
    box-shadow: 0 16px 32px rgba(15, 63, 117, 0.18);
    border-color: rgba(15, 63, 117, 0.18);
}

.vehicle-card.is-active {
    border-color: var(--accent-yellow);
    box-shadow: 0 20px 36px rgba(15, 63, 117, 0.2);
}

.vehicle-card.is-active::before {
    opacity: 1;
}

.vehicle-card:focus-visible {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 4px;
}

.packages-section .card {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(32px);
    border: 1px solid transparent;
}

/* (Removed special info-card styling to match other cards) */

.packages-section .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.packages-section .card {
    border-color: rgba(15, 63, 117, 0.08);
}

/* Center package text and tighten spacing before bullet lists */
.packages-section .card h3,
.packages-section .card p.section-intro {
    text-align: center;
}

.packages-section .card p.section-intro {
    margin: 0.25rem auto 0.75rem;
}

/* Prominent price chip inside each package card */
.packages-section .card .package-price {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(248, 194, 78, 0.22);
    border: 1px solid rgba(248, 194, 78, 0.6);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0.15rem auto 0.85rem;
}

/* Center bullet lists within interior package cards */
.packages-section .card .feature-list {
    justify-items: center;
}

.packages-section .card .feature-list li {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* (Removed exterior-price grid; using single .package-price chip) */

.price-matrix {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-matrix li {
    display: none;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--neutral-light);
    border-radius: 0.6rem;
}

.price-matrix .price {
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

/* Highlight selected body style price */
.price-matrix li.is-selected {
    display: grid;
    background: rgba(248, 194, 78, 0.22);
    outline: 2px solid var(--accent-yellow);
}

/* Hide the raw price tables in cards; prices are shown via .package-price */
.price-matrix { display: none !important; }

/* Show interior packages side-by-side on mobile, but auto-wrap if space is tight */
@media (max-width: 720px) {
    .packages-section .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 0.85rem;
    }
    .packages-section .card {
        padding: 1.25rem;
    }
}

/* On very small screens, stack packages for readability */
@media (max-width: 460px) {
    .packages-section .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Improve text wrapping inside package cards to avoid clipping */
.packages-section .card .feature-list li,
.packages-section .card p,
.packages-section .card h3 {
    overflow-wrap: anywhere;
}

.packages-section .card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.packages-section .card.is-highlighted {
    border-color: var(--accent-yellow);
    box-shadow: 0 20px 40px rgba(15, 63, 117, 0.2);
}

.packages-section .card:focus-visible {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 4px;
}

@media (max-width: 1080px) {
    .vehicle-experience__layout {
    display: flex;
    gap: 1.75rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.vehicle-preview,
.vehicle-selector {
    flex: 1 1 340px;
}

    .vehicle-preview {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 16px 30px rgba(15, 63, 117, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

}

@media (max-width: 720px) {
    .vehicle-slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .slider-btn {
        background: white;
        color: var(--primary-dark);
        border: 1px solid rgba(15, 63, 117, 0.2);
        border-radius: 999px;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        cursor: pointer;
        box-shadow: 0 8px 18px rgba(15, 63, 117, 0.12);
    }

    .slider-dots {
        display: flex;
        gap: 0.4rem;
        align-items: center;
    }

    .slider-dots .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(15, 63, 117, 0.25);
        border: 0;
        padding: 0;
    }

    .slider-dots .slider-dot.is-active {
        background: var(--primary-dark);
        transform: scale(1.1);
    }

    .vehicle-preview {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 16px 30px rgba(15, 63, 117, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    position: static;
    top: auto;
    align-self: auto;
}

    .vehicle-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 63, 117, 0.12);
    display: grid;
    gap: 0.85rem;
    position: relative;
    isolation: isolate;
    cursor: pointer;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
}

@media (max-width: 900px) {
    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    /* Reduce scroll on mobile: hide long feature lists in selector cards */
    .vehicle-card .vehicle-features,
    .vehicle-card .cta-button-ghost {
        display: none !important;
    }

    /* Hide pricing on slider cards; pricing lives in package cards */
    .vehicle-card .vehicle-price {
        display: none !important;
    }

    /* Make the body-style selector a horizontal slider */
    .vehicle-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.25rem;
    }

    .vehicle-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
}

@media (max-width: 720px) {
    .gallery-hero {
        padding-bottom: 3rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .comparison-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-dark);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(15, 63, 117, 0.18);
}

    .media-card figcaption {
        padding: 0.85rem 1rem 1.1rem;
        grid-template-columns: auto 1fr;
    }

    .media-icon {
        font-size: 1.4rem;
    }
}

.cta-banner h2 {
    color: #fff;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.92);
}





















.vehicle-preview__details h3 {
    margin: 0;
}

.vehicle-preview__details p {
    margin: 0;
}



.vehicle-preview__image {
    flex: 1 1 auto;
    min-height: 0;
}

.vehicle-preview__details {
    flex: 0 0 auto;
}


