@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
:root {
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;

    --text-primary: #0f172a;
    --text-muted: #475569;

    --accent: #cca353;
    --accent-hover: #b0883d;
    --accent-light: #fcf9f2;
    --accent-border: #ebdcb9;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-card: 16px;
    --radius-btn: 6px;

    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.06);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Resets & Basics
   ========================================================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

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

.route-title a {
    color: #cca353;
    text-decoration: auto;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-muted);
    line-height: 1.5;
}

.destination-section {
    background-color: #f8fafc;
    padding: 80px 0 60px;
    border-top: 1px solid var(--border-color);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Navbar & Hero Header Section
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 16px 0;
    background-color: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* to support absolute centering of nav-links */
    padding: 0px 10px !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
    color: var(--accent);
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-text .accent-text {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover i {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-action-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    /* WhatsApp Green */
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    background: #25d366;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-action-link i {
    color: #fff;
    font-size: 18px;
}

.nav-action-link:hover {
    color: #fff;
    background: #1bb354;
}

.nav-action-link:hover i {
    color: #fff;
}

.nav-btn {
    background-color: var(--accent);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(204, 163, 83, 0.25);
}

.nav-btn:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(204, 163, 83, 0.35);
}

.review-btn {
    background-color: var(--accent);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(204, 163, 83, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.review-btn:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(204, 163, 83, 0.35);
}


.hero {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(rgb(15 23 42), rgb(15 23 42 / 0%)), url(images/hero1.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    max-width: 820px;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: clamp(15px, 2.2vw, 19px);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 80px;
    letter-spacing: 0.5px;
}

.hero-title .accent-text {
    color: var(--accent);
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(12px, 1.6vw, 14px);
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.hero-badge i {
    color: var(--accent);
    font-size: 13px;
}

.hero-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #e18326;
    color: #ffffff;
    /* border: 2px solid var(--accent); */
    padding: 16px 40px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(204, 163, 83, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(204, 163, 83, 0.6);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    /* border: 2px solid #ffffff; */
    padding: 16px 40px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.35);
}

@media (max-width: 992px) {
    .hero-container {
        justify-content: center;
    }

    .hero-content {
        max-width: 650px;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 85vh;
        padding-top: 100px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 12px 0;
    }
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.divider {
    width: 45px;
    height: 2px;
    background-color: var(--accent);
    margin: 18px auto 0;
    opacity: 0.8;
}

/* ==========================================================================
   Cards Grid Layout & Horizontal Cards Styling
   ========================================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    height: 100%;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(204, 163, 83, 0.3);
}

/* Image styling */
.card-img-wrapper {
    position: relative;
    width: 42%;
    min-height: 100%;
    overflow: hidden;
    background-color: #f1f5f9;
    flex-shrink: 0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

/* Content styling */
.card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Responsive configurations for cards */
@media (max-width: 992px) {
    .card-img-wrapper {
        width: 38%;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        flex-direction: column;
        height: auto;
    }

    .card-img-wrapper {
        width: 100%;
        height: 220px;
        min-height: auto;
    }

    .card-title {
        text-align: center;
    }
}

/* Tour list styling */
.tour-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tour-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
}

.tour-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Button styling */
.card-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 0;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--accent-border);
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.card-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(204, 163, 83, 0.2);
}

/* ==========================================================================
   Popular Routes / Transfers Section
   ========================================================================== */
.routes-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

@media (max-width: 1200px) {
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }
}

.route-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(204, 163, 83, 0.25);
}

.route-img-wrapper {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.route-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.route-card:hover .route-img {
    transform: scale(1.04);
}

.route-body {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.route-title {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-title .arrow {
    color: var(--accent);
    font-weight: 500;
}

.route-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 14px;
}

.route-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-meta .meta-item i {
    color: var(--accent);
}

.route-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.route-features {
    list-style: none;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.route-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.route-features li i {
    color: #475569;
    font-size: 11px;
    width: 12px;
    text-align: center;
}

.whatsapp-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 0;
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(204, 163, 83, 0.2);
}

/* ==========================================================================
   Features / Trust Section
   ========================================================================== */
.features-section {
    background-color: #ffffff;
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 30px;
    position: relative;
}

/* Vertical divider lines between feature items */
.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e2e8f0;
}

.feature-icon-wrapper {
    width: 62px;
    height: 62px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 24px;
    transition: var(--transition);
    background-color: #ffffff;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.08);
    background-color: var(--accent-light);
    box-shadow: 0 4px 12px rgba(204, 163, 83, 0.15);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 245px;
    margin: 0 auto;
}

/* Responsive configurations for features section */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .feature-item:nth-child(2n)::after {
        display: none;
        /* Hide border after second item on 2x2 grid */
    }

    .feature-item:nth-child(1)::after,
    .feature-item:nth-child(3)::after {
        height: 60%;
        top: 20%;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .feature-item::after {
        display: none !important;
        /* Hide all vertical borders on single column layout */
    }

    .feature-item {
        padding: 0 20px;
        border-bottom: 1px dashed #e2e8f0;
        padding-bottom: 30px;
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-banner {
    background-image: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)), url('/images/bukhara.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #ffffff;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-phone-icon {
    width: 72px;
    height: 72px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.cta-sub {
    font-size: 13.5px;
    color: #cbd5e1;
}

.cta-btn {
    background-color: #25d366;
    /* WhatsApp Green */
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.cta-btn:hover {
    background-color: #20ba5a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: #0b0c0f;
    padding: 70px 0 0;
    color: #94a3b8;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 28px;
    color: var(--accent);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.footer-logo .accent-text {
    color: var(--accent);
}

.brand-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13.5px;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.social-icons a:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
    text-align: center;
}

.copyright {
    font-size: 12.5px;
    color: #475569;
}

/* ==========================================================================
   Responsive CTA & Footer
   ========================================================================== */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-left {
        flex-direction: column;
        gap: 16px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .brand-col {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Responsive Navbar
   ========================================================================== */
@media (max-width: 1100px) {

    .nav-links,
    .nav-btn {
        display: none !important;
    }
}

/* ==========================================================================
   Subpage Layout & Styling (options.php)
   ========================================================================= */
.sub-hero {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    min-height: 42vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.sub-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sub-hero-content {
    max-width: 750px;
    position: relative;
    z-index: 2;
}

.sub-hero-price-badge {
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    z-index: 2;
    transition: var(--transition);
}

.sub-hero-price-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.sub-hero-price-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sub-hero-price-val {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

@media (max-width: 768px) {
    .sub-hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 24px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.back-home-link:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

.sub-hero-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.sub-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 54px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
}

.sub-hero-tagline {
    font-size: clamp(15px, 2vw, 18px);
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.5;
}

.options-section {
    padding: 30px 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
}

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

/* ==========================================================================
   Compact Option Cards (6-per-row, click to expand)
   ========================================================================== */
.option-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    position: relative;
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}

.option-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204, 163, 83, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--accent-border);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: rgba(204, 163, 83, 0.1);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    border: 1px solid var(--accent-border);
    display: none;
    /* Hide badge to match Image 2 */
}

.option-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.option-card-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    border: 1px solid var(--accent-border);
    transition: var(--transition);
    flex-shrink: 0;
}

.option-card:hover .option-card-icon-wrapper {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.option-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0;
    text-transform: none;
    /* Sentence case to match Image 2 */
}

.option-card-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 16px 0;
    border: none;
}

.option-card-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
}

.meta-grid-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-grid-icon {
    font-size: 16px;
    color: #94a3b8;
    width: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-grid-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-grid-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.meta-grid-val {
    font-size: 13.5px;
    color: #1e293b;
    font-weight: 600;
}

.option-card-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlights-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.highlights-title i {
    font-size: 13px;
}

.highlights-path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    line-height: 1.4;
}

.highlight-item {
    background-color: #f8fafc;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.highlight-arrow {
    color: #94a3b8;
    font-weight: 700;
}

.option-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.option-card-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-card-price-label {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.option-card-price-val {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.option-card-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--accent-border);
    background-color: var(--accent-light);
    transition: var(--transition);
}

.option-card:hover .option-card-cta-btn {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

/* ==========================================================================
   Option Card Modal Overlay
   ========================================================================== */
.option-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.option-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.option-modal {
    background-color: #ffffff;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.option-modal-overlay.active .option-modal {
    transform: translateY(0) scale(1);
}

.option-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background-color: #f8fafc;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.option-modal-close:hover {
    background-color: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

.option-modal-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.option-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--accent-light);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.option-modal-title-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.option-modal-badge {
    background-color: rgba(204, 163, 83, 0.12);
    color: var(--accent);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    border: 1px solid var(--accent-border);
    display: inline-block;
    width: fit-content;
}

.option-modal-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 0;
}

.option-modal-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 22px;
}

.option-modal-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.option-modal-meta-item i {
    color: var(--accent);
    font-size: 15px;
    width: 18px;
    text-align: center;
}

.option-modal-desc {
    margin-bottom: 28px;
}

.option-modal-desc p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
}

.option-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 22px;
}

.option-modal-price-block {
    display: flex;
    flex-direction: column;
}

.option-modal-price-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.option-modal-price-val {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.option-modal-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.option-modal-wa-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

body.modal-open {
    overflow: hidden;
}

/* Options grid responsive */
@media (max-width: 1100px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .option-modal {
        padding: 28px 24px;
    }

    .option-modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .option-modal-wa-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .option-card {
        padding: 20px 16px 18px;
    }

    .option-card-title {
        font-size: 15px;
    }

    .option-card-price-val {
        font-size: 22px;
    }
}

/* ==========================================================================
   Route Details & Vehicle Comparison Layout (route.php)
   ========================================================================== */
.route-details-section {
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.route-specs-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.route-info-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
}

.route-section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.centered-title {
    text-align: center;
}

.route-long-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.route-spec-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
}

.checklist-item i {
    color: #22c55e;
    font-size: 16px;
}

.route-quick-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-tile {
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.spec-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-border);
}

.spec-tile i {
    font-size: 24px;
    color: var(--accent);
    width: 30px;
    text-align: center;
}

.spec-tile-text {
    display: flex;
    flex-direction: column;
}

.tile-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.tile-val {
    font-family: var(--font-heading);
    font-size: 17.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2px;
}

.vehicles-comparison-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 6px;
}

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

.vehicle-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(204, 163, 83, 0.25);
}

.vehicle-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.vehicle-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 16px;
}

.vehicle-class-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.vehicle-models-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
}

.vehicle-capacities {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

.capacity-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.capacity-item i {
    color: var(--accent);
    font-size: 14px;
}

.vehicle-price-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.vehicle-price-block {
    display: flex;
    flex-direction: column;
}

.vehicle-price-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.vehicle-price-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.vehicle-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.vehicle-book-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    color: #ffffff;
}

/* Route Details Media Queries */
@media (max-width: 992px) {
    .route-specs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .route-info-card {
        padding: 24px;
    }

    .vehicle-price-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .vehicle-book-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Interactive Navbar Dropdowns
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
}

.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu a {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding-left: 24px;
}

/* Chevron arrow rotation */
.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.nav-item-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* ==========================================================================
   Emoji Route Checklist (route.php)
   ========================================================================== */
.route-emoji-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
    text-align: left;
}

.route-emoji-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 14px;
}

.route-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
    border: 1px solid var(--accent-border);
}

.route-info-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    /* WhatsApp Green */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    width: 100%;
}

.route-info-book-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* ==========================================================================
   Reviews / Testimonials Section
   ========================================================================== */
.reviews-section {
    background-color: #f8fafc;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

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

/* Reviews Carousel / Slider Styles */
.reviews-carousel-container {
    position: relative;
    width: 100%;
}

.reviews-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.reviews-carousel-track {
    display: flex;
    gap: 30px;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Base flex-basis for reviews desktop - 3 visible cards */
.reviews-carousel-track .review-card {
    flex: 0 0 calc((100% - (2 * 30px)) / 3);
    min-width: calc((100% - (2 * 30px)) / 3);
    box-sizing: border-box;
    height: auto;
}

/* Carousel Control Buttons layout adjustments for reviews */
.carousel-btn.prev-btn-reviews {
    left: -23px;
}

.carousel-btn.next-btn-reviews {
    right: -23px;
}

/* Review Modal Overlay & Styles */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.review-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-modal {
    background-color: #ffffff;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-modal-overlay.active .review-modal {
    transform: translateY(0) scale(1);
}

.review-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background-color: #f8fafc;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.review-modal-close:hover {
    background-color: #fee2e2;
    border-color: #fca5a5;
    color: var(--error);
}

.review-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.review-modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Modal Form Elements */
.form-group-modal {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modal label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-modal input,
.form-group-modal textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14.5px;
    color: var(--text-primary);
    background-color: #f8fafc;
    transition: var(--transition);
}

.form-group-modal input:focus,
.form-group-modal textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(204, 163, 83, 0.15);
}

.form-row-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Interactive Star Rating Inputs */
.star-rating-input {
    display: flex;
    gap: 8px;
    font-size: 24px;
    color: #cbd5e1;
}

.star-rating-input .star {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.star-rating-input .star:hover {
    transform: scale(1.15);
}

.star-rating-input .star.active {
    color: #ffb703;
}

/* Responsive updates for reviews carousel grid */
@media (max-width: 992px) {
    .reviews-carousel-track .review-card {
        flex: 0 0 calc((100% - (1 * 30px)) / 2);
        min-width: calc((100% - (1 * 30px)) / 2);
    }

    .carousel-btn.prev-btn-reviews {
        left: -15px;
    }

    .carousel-btn.next-btn-reviews {
        right: -15px;
    }
}

@media (max-width: 680px) {
    .reviews-carousel-track .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .prev-btn-reviews,
    .next-btn-reviews {
        display: none !important;
    }
}

.review-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(204, 163, 83, 0.3);
}

.review-stars {
    color: #ffb703;
    /* Gold star color */
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border: 1px solid var(--accent-border);
}

.review-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.review-country {
    font-size: 12.5px;
    color: var(--text-muted);
    display: block;
}

/* Responsive configurations for reviews section */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   More Route Information Section (Detailed info & What's Included)
   ========================================================================== */
.route-more-info-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
}

.more-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.more-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.more-info-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.more-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Detailed Tour Description Styling */
.detailed-desc-block {
    background-color: var(--accent-light);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-card);
    padding: 30px 40px;
}

.detailed-desc-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* What's Included Grid Styling */
.whats-included-block {
    width: 100%;
}

.included-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.included-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 10px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.included-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-border);
}

.included-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #f7f5ed;
    color: #cca353;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.included-card-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    /* margin-bottom: 6px; */
}

.included-card-text p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Responsive configurations for more info section */
@media (max-width: 992px) {
    .included-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .included-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detailed-desc-block {
        padding: 24px;
    }
}

/* ==========================================================================
   Vehicle Options & Prices Row List Styles (route.php mockup update)
   ========================================================================== */
.vehicle-list-row {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
    gap: 24px;
}

.vehicle-list-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-border);
}

.vehicle-list-row.recommended {
    border: 1.5px solid #cca353;
    /* Green border for recommended option */
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.06);
}

.vehicle-list-row.recommended:hover {
    border-color: #16a34a;
}

.vehicle-row-image-box {
    /* width: 130px; */
    /* height: 90px; */
    background-color: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vehicle-row-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: var(--transition);
    width: 130px;
    height: 80px;
}

.vehicle-list-row:hover .vehicle-row-img {
    transform: scale(1.04);
}

.vehicle-row-icon-fallback {
    font-size: 32px;
    color: var(--accent);
    opacity: 0.8;
}

.vehicle-row-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vehicle-row-class-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.vehicle-row-spec-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.vehicle-row-price-action {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.vehicle-row-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vehicle-row-price-label {
    font-size: 9.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.vehicle-row-price-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #cca353;
    /* Dark Green matching mockup */
}

.vehicle-row-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #cca353;
    /* Dark Green matching mockup */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.vehicle-row-btn:hover {
    background-color: #25d366;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(12, 61, 38, 0.25);
    color: #ffffff;
}

/* Responsive configurations for vehicle list */
@media (max-width: 900px) {
    .vehicle-row-price-action {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .vehicle-list-row {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 18px;
    }

    .vehicle-row-image-box {
        width: 100%;
        height: 140px;
    }

    .vehicle-row-details {
        text-align: center;
    }

    .vehicle-row-price-action {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f1f5f9;
        padding-top: 16px;
        margin-top: 4px;
    }

    .vehicle-row-price-block {
        align-items: flex-start;
    }

    .vehicle-row-btn {
        flex-grow: 1;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .vehicle-row-price-action {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .vehicle-row-price-block {
        align-items: center;
    }

    .vehicle-row-btn {
        max-width: 100%;
        width: 100%;
    }
}

.sub-hero-badges-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    max-width: 480px;
    z-index: 2;
}

@media (max-width: 768px) {
    .sub-hero-badges-col {
        justify-content: flex-start;
        max-width: 100%;
        width: 100%;
    }
}

/* ==========================================================================
   Option Detail Page (option-detail.php)
   ========================================================================== */

/* --- Hero --- */
.od-hero {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding: 3rem 0 3.5rem;
    position: relative;
}

.od-hero-container {
    width: 100%;
}

.od-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.od-hero-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    width: fit-content;
}

.od-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    max-width: 750px;
}

.od-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
    flex-direction: column;
}

.od-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 50px;
}

.od-hero-meta-item i {
    color: var(--accent);
    font-size: 0.85rem;
}

.od-hero-price-badge {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

.od-hero-price-label {
    font-size: 0.75rem;
    opacity: 0.85;
}

.od-hero-price-val {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
}

/* --- Main Layout --- */
.od-main {
    background: var(--bg-main);
    padding: 3.5rem 0 5rem;
}

.od-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

/* --- Sections --- */
.od-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.od-section-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.od-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
    border-radius: 10px;
    color: var(--accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* --- Description --- */
.od-desc-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.od-desc-text p:last-child {
    margin-bottom: 0;
}

/* --- Included Grid --- */
.od-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.od-included-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
    border-radius: 12px;
    transition: var(--transition);
}

.od-included-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.od-included-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.od-included-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.od-included-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.od-included-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- Other Options --- */
.od-other-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.od-other-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    background: var(--bg-card);
}

.od-other-card:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}

.od-other-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.od-other-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.od-other-type {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
}

.od-other-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.od-other-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.od-other-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.od-other-card:hover .od-other-arrow {
    color: var(--accent);
}

/* --- Sidebar --- */
.od-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.od-sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.od-sidebar-price-block {
    text-align: center;
    margin-bottom: 1.5rem;
}

.od-sidebar-price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.od-sidebar-price-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.od-sidebar-per-car {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.od-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: #25d366;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.od-book-btn:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.od-book-btn i {
    font-size: 1.2rem;
}

.od-sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.25rem 0;
}

.od-sidebar-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.od-sidebar-meta li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.od-sidebar-meta-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.od-sidebar-meta-label i {
    color: var(--accent);
    width: 14px;
    text-align: center;
}

.od-sidebar-meta-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.od-back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.od-back-link:hover {
    color: var(--accent);
}

/* --- Trust Badges --- */
.od-trust-badges {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.od-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.od-trust-item i {
    color: var(--accent);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* option-card as anchor fix */
a.option-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid #cca353;
}

/* --- Responsive --- */
@media (max-width: 960px) {
    .od-layout {
        grid-template-columns: 1fr;
    }

    .od-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 640px) {
    .od-hero {
        min-height: 320px;
        padding: 2rem 0 2.5rem;
    }

    .od-hero-title {
        font-size: 1.75rem;
    }

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

    .od-section {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Optional Stops Section (route.php)
   ========================================================================== */
.route-optional-stops-section {
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.route-optional-sub {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.6;
}

.optional-stops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.optional-stop-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    cursor: pointer;
    user-select: none;
    height: 100%;
}

.optional-stop-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border, #cbd5e1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.optional-stop-card.selected {
    border-color: var(--accent);
    background-color: #fffdf9;
    box-shadow: 0 10px 20px -3px rgba(204, 163, 83, 0.12);
}

.optional-stop-checkbox-wrapper {
    display: none;
}

.optional-stop-check-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    transition: all 0.3s ease;
    z-index: 5;
    line-height: 1;
}

.optional-stop-check-badge .unchecked-icon {
    color: #cbd5e1;
    display: block;
}

.optional-stop-check-badge .checked-icon {
    color: var(--accent);
    display: none;
}

.optional-stop-card.selected .optional-stop-check-badge .unchecked-icon {
    display: none;
}

.optional-stop-card.selected .optional-stop-check-badge .checked-icon {
    display: block;
    transform: scale(1.1);
}

.optional-stop-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 28px;
}

.optional-stop-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--accent-light, #f1f5f9);
    border: 1px solid var(--accent-border, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.optional-stop-card.selected .optional-stop-icon {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.optional-stop-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0;
}

.optional-stop-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.optional-stop-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    justify-content: flex-start;
}

.optional-stop-price {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background-color: var(--accent-light, #f1f5f9);
    border: 1px solid var(--accent-border, #e2e8f0);
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.optional-stop-card.selected .optional-stop-price {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.route-stops-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.route-stops-cta-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

@media (max-width: 900px) {
    .optional-stops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .optional-stops-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Reviews Section on Route Page
   ========================================================================== */
.route-reviews-section {
    background-color: #f8fafc;
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Final CTA Banner Section (route.php)
   ========================================================================== */
.route-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.route-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(204, 163, 83, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(37, 211, 102, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.route-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.route-final-cta-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.route-final-cta-eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.route-final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.15;
}

.route-final-cta-title .accent-text {
    color: var(--accent);
}

.route-final-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.route-final-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
    zoom: 1.2;
}

.route-final-cta-btn i {
    font-size: 20px;
}

.route-final-cta-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

@media (max-width: 768px) {
    .route-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .route-final-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   FAQ Section (route.php)
   ========================================================================== */
.route-faq-section {
    background-color: #ffffff;
    padding: 70px 0 80px;
    border-top: 1px solid var(--border-color);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--accent-border);
    box-shadow: 0 4px 16px rgba(204, 163, 83, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-item.open .faq-question {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-border);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 12px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 14.5px;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        padding-top: 14px;
    }
}

/* ==========================================================================
   Make Your Trip Form Styling
   ========================================================================== */
.trip-form-container {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
    max-width: 800px;
    margin: 40px auto;
}

@media (max-width: 768px) {
    .trip-form-container {
        padding: 24px;
        margin: 20px auto;
    }
}

.trip-form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.trip-form-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.trip-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.form-label span.optional {
    font-weight: 400;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-left: 4px;
}

.form-label span.required {
    color: #ef4444;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-btn);
    background-color: #ffffff;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text-primary);
    box-sizing: border-box;
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(204, 163, 83, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox Grid (Premium Card-style Checkboxes) */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checkbox-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    user-select: none;
    transition: var(--transition);
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-custom i {
    font-size: 11px;
    color: #ffffff;
    display: none;
}

.checkbox-card:hover {
    border-color: var(--accent-border);
    background-color: var(--accent-light);
}

.checkbox-card input[type="checkbox"]:checked~.checkbox-custom {
    background-color: var(--accent);
    border-color: var(--accent);
}

.checkbox-card input[type="checkbox"]:checked~.checkbox-custom i {
    display: inline-block;
}

.checkbox-card input[type="checkbox"]:checked~span {
    font-weight: 600;
}

.checkbox-card.selected-active {
    border-color: var(--accent);
    background-color: var(--accent-light);
}

/* Service Grid (Checkbox/Card selection for services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 6px;
}

@media (max-width: 520px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: var(--transition);
}

.service-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.service-card:hover {
    border-color: var(--accent-border);
    background-color: var(--accent-light);
}

.service-card input[type="checkbox"]:checked~.service-card-header .checkbox-custom {
    background-color: var(--accent);
    border-color: var(--accent);
}

.service-card input[type="checkbox"]:checked~.service-card-header .checkbox-custom i {
    display: inline-block;
}

.service-card input[type="checkbox"]:checked {
    border-color: var(--accent);
    background-color: var(--accent-light);
}

/* Success Card details */
.trip-success-card {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 60px auto;
}

@media (max-width: 600px) {
    .trip-success-card {
        padding: 30px 20px;
        margin: 30px auto;
    }
}

.success-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 24px;
    animation: successScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes successScale {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.success-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.success-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #25d366;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--radius-btn);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.success-whatsapp-btn:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

.success-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.success-home-btn:hover {
    color: var(--accent);
}

/* ==========================================================================
   Routes Carousel / Slider Styles
   ========================================================================== */
.routes-carousel-container {
    position: relative;
    width: 100%;
}

.routes-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    /* Headroom for card hover lift and box shadows */
}

.routes-carousel-track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Base flex-basis for desktop - 5 visible cards */
.routes-carousel-track .route-card {
    flex: 0 0 calc((100% - (4 * 18px)) / 5);
    min-width: calc((100% - (4 * 18px)) / 5);
    box-sizing: border-box;
    height: auto;
}

/* Carousel Control Buttons (Circular Arrows) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 6px 18px rgba(204, 163, 83, 0.35);
}

.carousel-btn.prev-btn {
    left: -23px;
}

.carousel-btn.next-btn {
    right: -23px;
}

/* Category Badge Overlay on Images */
.route-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    color: #ffffff;
    background-color: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: var(--transition);
}

.route-type-badge.transfer {
    border-color: rgba(204, 163, 83, 0.4);
}

.route-type-badge.tour {
    border-color: rgba(255, 255, 255, 0.25);
}

/* Responsive adjust for Carousel flex-basis sizes */
@media (max-width: 1200px) {
    .routes-carousel-track .route-card {
        flex: 0 0 calc((100% - (2 * 18px)) / 3);
        min-width: calc((100% - (2 * 18px)) / 3);
    }

    .carousel-btn.prev-btn {
        left: -15px;
    }

    .carousel-btn.next-btn {
        right: -15px;
    }
}

@media (max-width: 800px) {
    .routes-carousel-track .route-card {
        flex: 0 0 calc((100% - (1 * 18px)) / 2);
        min-width: calc((100% - (1 * 18px)) / 2);
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .carousel-btn.prev-btn {
        left: -10px;
    }

    .carousel-btn.next-btn {
        right: -10px;
    }
}

@media (max-width: 520px) {
    .routes-carousel-track .route-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-btn {
        display: none;
        /* Mobile touch swipe fallback is used instead of buttons */
    }
}

/* ==========================================================================
   Language Dropdown Flag Icons
   ========================================================================== */
.lang-dropdown .dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.lang-dropdown .dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.lang-flag-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}