/* =========================
   Vanture Campers Stylesheet
   Updated professional refresh
   File location: resources/CSS/stylesheet.css
   ========================= */

   :root {
    --bg: #f6f3ed;
    --surface: #ffffff;
    --surface-2: #f0ebe2;
    --text: #1c2420;
    --muted: #5f6b64;
    --line: #d9ddd8;
    --brand: #233a31;
    --brand-2: #304b40;
    --accent: #b46f45;
    --accent-2: #8d5636;
    --overlay: rgba(20, 28, 24, 0.38);
    --shadow-sm: 0 8px 24px rgba(18, 24, 21, 0.08);
    --shadow-md: 0 18px 42px rgba(18, 24, 21, 0.12);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --max-width: 1280px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
}

h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

p {
    margin: 0 0 1rem 0;
    color: var(--muted);
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* ===== Shared Buttons ===== */

.banner-check,
.booknow-main,
.plan-button,
.leftcontainer-vanture button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.banner-check:hover,
.booknow-main:hover,
.plan-button:hover,
.leftcontainer-vanture button:hover,
.primary-button:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.secondary-button:hover {
    background: #faf8f4;
    border-color: #c7cdc7;
    transform: translateY(-1px);
}

/* ===== Banner / Header ===== */

.banner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    background: rgba(246, 243, 237, 0.98);
    border-bottom: 1px solid rgba(217, 221, 216, 0.8);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.banner.scrolled {
    position: fixed;
    background: rgba(246, 243, 237, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(18, 24, 21, 0.08);
    padding: 12px 32px;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.banner-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 14px;
}

.banner-home {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.banner-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.banner-home:hover .banner-title {
    color: var(--brand);
}

.banner-button-l1 {
    display: none;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a:focus-visible {
    color: var(--brand);
}

/* ===== Dropdown ===== */

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background-color: var(--surface);
    padding: 10px 0;
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: 16px;
    min-width: 210px;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    text-decoration: none;
    display: block;
    padding: 11px 18px;
    color: var(--text);
    white-space: nowrap;
    font-size: 0.95rem;
}

.dropdown-banner {
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.dropdown-content li a:hover {
    background-color: #f7f4ef;
    color: var(--brand);
}

.dropdown-banner:hover .dropdown-content {
    display: block;
}

.banner-check {
    white-space: nowrap;
}

/* ─── Modals ─────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #233a31;
    margin-bottom: 8px;
}

.modal-sub {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.modal-close:hover { color: #233a31; }

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-form select {
    padding: 12px;
    border: 1px solid #d0c9bc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #233a31;
    background: white;
    width: 100%;
}

.modal-form textarea {
    padding: 12px;
    border: 1px solid #d0c9bc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #233a31;
    resize: vertical;
    width: 100%;
}

.modal-form input {
    width: 100%;
}

.modal-results {
    margin-top: 20px;
}

.modal-van-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-van-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #d0c9bc;
    text-decoration: none;
}

.modal-van-card.available {
    border-color: #2d7a4f;
    background: #f0faf4;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-van-card.available:hover { background: #e0f5e9; }

.modal-van-card.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

.van-available-tag {
    color: #2d7a4f;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 90px;
}

.van-unavailable-tag {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 90px;
}

.van-name {
    flex: 1;
    font-weight: 500;
    color: #233a31;
}

.van-book-link {
    color: #233a31;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Date inputs */
.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.date-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.date-field input {
    padding: 12px;
    border: 1px solid #d0c9bc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #233a31;
    background: white;
}

.check-dates-btn {
    background: #233a31;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.check-dates-btn:hover {
    background: #2f4f43;
}

.check-dates-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

/* Availability result */
.booking-available {
    color: #2d7a4f;
    font-weight: 500;
    margin-top: 12px;
}

.booking-error {
    color: #c0392b;
    font-weight: 500;
    margin-top: 12px;
}

/* ===== Hero Section ===== */

.mainpage-vanture {
    min-height: calc(100vh - 102px);
    width: 100%;
    text-align: center;
    background-image: linear-gradient(var(--overlay), var(--overlay)), url("../images/johnny camping.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 26px;
    padding: 80px 20px;
}

.mainpage-vanture h1,
.van-hero h1 {
    max-width: 920px;
    font-size: clamp(3rem, 7vw, 5.4rem);
    color: #ffffff;
    line-height: 1.02;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.booknow-main {
    min-width: 220px;
}

/* ===== 3 Column Section ===== */

.secondary-vanture {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 28px;
    align-items: stretch;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 32px;
    background: transparent;
}

.leftcontainer-vanture,
.centercontainer-vanture,
.rightcontainer-vanture {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.leftcontainer-vanture,
.rightcontainer-vanture {
    padding: 28px;
}

.leftcontainer-vanture {
    justify-content: space-between;
    gap: 18px;
}

.centercontainer-vanture {
    justify-content: center;
    min-height: 760px;
}

.rightcontainer-vanture {
    justify-content: flex-start;
    gap: 18px;
}

.leftcontainer,
.centercontainer,
.rightcontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leftcontainer-vanture h2,
.rightcontainer-vanture h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--text);
    text-align: center;
    line-height: 1.15;
}

.rightcontainer-vanture h2 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.leftcontainer-vanture button {
    width: 100%;
    max-width: 260px;
}

.leftcontainer-image,
.rightcontainer-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.centercontainer-vanture img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
}

/* ===== Get to Know Us ===== */

.get-to-know {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 32px 0;
    text-align: center;
    background: transparent;
    border: 0;
}

.get-to-know h2 {
    margin-top: 18px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
}

.plan-button {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.plan-button:hover {
    background: #faf8f4;
    box-shadow: none;
}

/* ===== Plan Your Trip Section ===== */

.plan-vanture {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 56px 32px 100px;
    min-height: 700px;
    background: transparent;
}

.plan-left {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
    padding: 0;
}

.plan-right {
    position: relative;
    min-height: 760px;
    padding: 40px 40px 60px 20px;
}

.plan-right img.plan-image-lrg {
    position: absolute;
    inset: 0 40px 0 20px;
    width: auto;
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.plan-right img.plan-image-sm1 {
    position: absolute;
    bottom: 300px;
    left: -10px;
    width: 300px;
    height: 260px;
    z-index: 2;
    border: 8px solid var(--bg);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.plan-right img.plan-image-sm2 {
    position: absolute;
    top: -15px;
    right: -20px;
    width: 300px;
    height: 260px;
    z-index: 2;
    border: 8px solid var(--bg);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.plan-your-trip {
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(217, 221, 216, 0.9);
    text-align: left;
}

.plan-your-trip:last-child {
    border-bottom: 0;
}

.plan-your-trip p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
}

.plan-your-trip h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

/* ===== Instagram ===== */

.instagram-bar {
    background: #18201c;
    color: white;
    padding: 42px 28px;
}

.instagram-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto 24px;
    flex-wrap: wrap;
}

.instagram-bar-header h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-family: 'Playfair Display', serif;
}

.instagram-bar-header a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
}

.instagram-feed {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.instagram-card {
    display: block;
    background: #222b27;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.instagram-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.instagram-card p {
    margin: 0;
    padding: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.86);
}

/* ===== Camper Van Page ===== */

.van-hero {
    min-height: 72vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.van-hero-overlay {
    background: rgba(20, 28, 24, 0.42);
    color: white;
    text-align: center;
    padding: 42px;
    border-radius: 20px;
    max-width: 760px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.van-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.van-subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.van-intro,
.van-features,
.van-details,
.van-gallery,
.van-cta,
.site-footer {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.van-intro {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 36px;
    padding: 80px 32px 36px;
    align-items: start;
}

.van-intro-text,
.van-spec-card,
.detail-box {
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.van-intro-text {
    padding: 32px;
}

.van-intro-text h2,
.van-features h2,
.van-gallery h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.van-spec-card {
    padding: 28px;
}

.van-spec-card h3 {
    margin-bottom: 12px;
}

.van-spec-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.van-features {
    padding: 0 32px 42px;
}

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

.feature-card {
    background: var(--surface);
    color: var(--text);
    padding: 22px 18px;
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.van-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 0 32px 42px;
}

.detail-box {
    padding: 24px;
    text-align: center;
}

.detail-box h3 {
    margin-bottom: 10px;
}

.detail-box p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}

.van-gallery {
    padding: 0 32px 42px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.van-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 32px 72px;
    flex-wrap: wrap;
}

.site-footer {
    background: #18201c;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 42px 32px;
    border-radius: 26px 26px 0 0;
}

.site-footer p,
.site-footer h3 {
    color: white;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: white;
}

/* ===== Section Wrappers ===== */

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 96px 32px;
}

.section-tight {
    padding: 64px 32px;
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand);
    margin: 0 0 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ===== Hero Promo Banner ===== */

.promo-banner {
    background: var(--brand);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.promo-banner strong {
    color: #f6e3c8;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ===== Hero Refresh ===== */

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.hero-subtitle {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 8px;
}

.hero-trust span::before {
    content: "✓";
    margin-right: 8px;
    color: #f6e3c8;
    font-weight: 700;
}

/* ===== Trust Strip ===== */

.trust-strip {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px 32px;
}

.trust-card {
    text-align: center;
    padding: 12px;
}

.trust-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin: 0 0 8px;
    font-weight: 600;
}

.trust-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--brand);
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 700;
}

/* ===== Fleet Showcase ===== */

.fleet-section {
    background: transparent;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.fleet-card {
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fleet-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center bottom;
}

.fleet-card-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.fleet-card-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--brand);
    font-weight: 600;
    margin: 0;
}

.fleet-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--text);
    margin: 0;
    font-weight: 600;
}

.fleet-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.fleet-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.fleet-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fleet-card-link {
    color: var(--brand);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-card-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.fleet-card:hover .fleet-card-link::after {
    transform: translateX(4px);
}

/* ===== Testimonials ===== */

.testimonials {
    background: var(--surface-2);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ===== Sustainability ===== */

.sustainability {
    background: var(--brand);
    color: #ffffff;
}

.sustainability-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 32px;
}

.sustainability h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin: 0 0 16px;
}

.sustainability p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.sustainability .pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* ===== Site Footer (homepage version) ===== */

.site-footer {
    background: #18201c;
    color: #ffffff;
    padding: 56px 32px 28px;
    margin-top: 0;
    border-radius: 0;
    display: block;
}

.site-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.site-footer h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    margin: 0 0 8px;
    line-height: 1.7;
    font-size: 0.95rem;
    display: block;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
    transition: background 0.2s ease;
}

.site-footer .footer-social a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.site-footer-bottom {
    max-width: var(--max-width);
    margin: 36px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== About Page ===== */

.about-hero {
    min-height: 60vh;
    background-image: linear-gradient(var(--overlay), var(--overlay)), url("../images/panarama-ridge.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    color: #ffffff;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    max-width: 880px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
    margin: 0 0 14px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 96px 32px;
}

.about-story img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 18px;
    color: var(--text);
}

.about-story p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-values {
    background: var(--surface-2);
    padding: 80px 32px;
}

.about-values-grid {
    max-width: var(--max-width);
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-card {
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 600;
}

.value-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ===== Road Trips Page ===== */

.trips-hero {
    min-height: 56vh;
    background-image: linear-gradient(var(--overlay), var(--overlay)), url("../images/get-inspired.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.trips-hero.fleet {
    background-image: linear-gradient(var(--overlay), var(--overlay)), url("../images/lao-road.jpg");
    background-position: center bottom;
}

.trips-hero h1 {
    color: #ffffff;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    max-width: 880px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
    margin: 0 0 14px;
}

.trips-hero p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.7;
}

.trip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 32px;
}

.trip-card {
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trip-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.trip-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.trip-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.trip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text);
    margin: 0;
    font-weight: 600;
}

.trip-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ===== Fees Page ===== */

.fees-hero {
    background: var(--surface-2);
    padding: 80px 32px 48px;
    text-align: center;
}

.fees-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin: 0 0 14px;
    color: var(--text);
}

.fees-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.fees-table {
    max-width: 980px;
    margin: 56px auto;
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.fees-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
}

.fees-row:last-child {
    border-bottom: 0;
}

.fees-row.fees-header {
    background: var(--surface-2);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.fees-row .fees-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 600;
}

.fees-row .fees-price {
    color: var(--text);
    font-weight: 600;
    font-size: 1.05rem;
}

.fees-included {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.fees-card {
    background: var(--surface);
    border: 1px solid rgba(217, 221, 216, 0.9);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.fees-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text);
    margin: 0 0 16px;
    font-weight: 600;
}

.fees-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.85;
}

.fees-card ul li {
    margin-bottom: 6px;
}

.fees-note {
    max-width: 880px;
    margin: 0 auto 80px;
    padding: 22px 28px;
    background: var(--surface-2);
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Final CTA Banner ===== */

.final-cta {
    background-image: linear-gradient(rgba(20, 28, 24, 0.55), rgba(20, 28, 24, 0.55)), url("../images/johnny sav camping.jpg");
    background-size: cover;
    background-position: center;
    padding: 110px 32px;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin: 0 0 16px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 580px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== Responsive ===== */

@media (max-width: 1100px) {
    .secondary-vanture,
    .plan-vanture,
    .van-intro,
    .about-story {
        grid-template-columns: 1fr;
    }

    .fleet-grid,
    .testimonial-grid,
    .about-values-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trip-grid {
        grid-template-columns: 1fr;
    }

    .fees-row,
    .fees-row.fees-header {
        grid-template-columns: 1fr 1fr;
        row-gap: 6px;
    }

    .fees-included {
        grid-template-columns: 1fr;
    }

    .site-footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .centercontainer-vanture {
        min-height: 520px;
    }

    .centercontainer-vanture img {
        min-height: 520px;
    }

    .plan-right {
        min-height: 620px;
        padding: 24px 18px 40px;
    }

    .plan-right img.plan-image-lrg {
        inset: 0 18px 0 18px;
    }

    .plan-right img.plan-image-sm1 {
        width: 240px;
        height: 200px;
        left: 0;
        bottom: 34px;
    }

    .plan-right img.plan-image-sm2 {
        width: 220px;
        height: 180px;
        right: 0;
    }

    .feature-grid,
    .van-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .banner {
        flex-direction: column;
        padding: 14px 20px;
    }

    .banner.scrolled {
        padding: 12px 20px;
    }

    .banner-left,
    .banner-right {
        flex-direction: column;
        justify-content: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

    .mainpage-vanture {
        min-height: 72vh;
    }

    .secondary-vanture,
    .get-to-know,
    .plan-vanture,
    .van-intro,
    .van-features,
    .van-details,
    .van-gallery,
    .van-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .plan-right {
        min-height: 500px;
    }

    .gallery-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
        border-radius: 20px 20px 0 0;
    }
}

@media (max-width: 600px) {
    .banner-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .banner-image {
        width: 58px;
        height: 58px;
    }

    .banner-check,
    .leftcontainer-vanture button,
    .plan-button,
    .booknow-main,
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 280px;
    }

    .secondary-vanture {
        gap: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .leftcontainer-vanture,
    .rightcontainer-vanture {
        padding: 20px;
    }

    .plan-vanture {
        padding-top: 28px;
        padding-bottom: 56px;
    }

    .plan-right {
        min-height: 360px;
        padding: 18px 0 0;
    }

    .plan-right img.plan-image-lrg {
        inset: 0;
    }

    .plan-right img.plan-image-sm1,
    .plan-right img.plan-image-sm2 {
        display: none;
    }

    .feature-grid,
    .van-details,
    .gallery-grid,
    .instagram-feed,
    .fleet-grid,
    .testimonial-grid,
    .about-values-grid,
    .trust-grid,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 260px;
    }

    .van-hero-overlay {
        padding: 28px 20px;
    }

    .section,
    .about-story,
    .trip-grid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fees-table {
        margin: 40px 20px;
    }

    .fees-row,
    .fees-row.fees-header {
        grid-template-columns: 1fr;
    }

    .fees-row.fees-header {
        display: none;
    }

    .fees-row .fees-price::before {
        content: attr(data-label) ": ";
        font-weight: 500;
        color: var(--muted);
        margin-right: 6px;
    }

    .final-cta {
        padding: 80px 20px;
    }
}