/* ════════════════════════════════════════════════
   PamTrips — style.css
   Aesthetic: Travel Magazine × Editorial Luxury
   Fonts: Playfair Display + DM Sans + Caveat
════════════════════════════════════════════════ */

/* ── ROOT VARS ─────────────────────────────── */
:root {
    --navbar-height: 80px;
    --gold: #E05A2B;
    --gold-light: #E8B96A;
    --dark: #0F1B2D;
    --dark-2: #1A2B40;
    --accent: #E05A2B;
    --accent-light: #F07040;
    --cream: #FDF8F2;
    --text: #2C3E50;
    --text-muted: #6B7A8D;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(15, 27, 45, 0.12);
    --shadow-hover: 0 20px 60px rgba(15, 27, 45, 0.22);
    --transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── BASE ───────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

em {
    font-style: italic;
}

img {
    max-width: 100%;
    object-fit: cover;
}

.section-pad {
    padding: 70px 0;
}

/* ── SECTION HEADERS ────────────────────────── */
.section-tag {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--gold);
    background: rgba(200, 150, 62, 0.08);
    border: 1px solid rgba(200, 150, 62, 0.25);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    color: var(--accent);
    font-style: italic;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 50px;
}

/* ── SCROLL ANIMATIONS ──────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.pt-navbar {
    background: #08091cf0;
    padding: 18px 0;
    transition: var(--transition);
    z-index: 1000;
}

.pt-navbar.scrolled {
    background: rgba(15, 27, 45, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 8px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text em {
    color: var(--gold);
    font-style: italic;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    padding: 8px 14px !important;
    transition: var(--transition);
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--gold) !important;
    background: rgba(200, 150, 62, 0.08);
}

.btn-nav-cta {
    background: var(--gold);
    color: white !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px !important;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 62, 0.4);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    background: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Navbar Dropdown */
.pt-navbar .dropdown-menu {
    background: rgba(15, 27, 45, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 220px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.pt-navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.pt-navbar .dropdown-item:hover,
.pt-navbar .dropdown-item:focus {
    background: rgba(224, 90, 43, 0.15);
    color: var(--gold);
}

.pt-navbar .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.pt-navbar .nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 0.15em;
}

.pt-navbar .nav-link.active {
    color: var(--gold) !important;
}

/* ════════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    margin-top: var(--navbar-height);
    height: calc(100vh - var(--navbar-height));
    height: calc(100dvh - var(--navbar-height));
    min-height: 520px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Hero overlay + content (index.php structure) */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(100deg,
            rgba(15, 27, 45, 0.88) 0%,
            rgba(15, 27, 45, 0.75) 50%,
            rgba(15, 27, 45, 0.65) 100%);
}

.hero-body {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 24px 0 70px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-eyebrow i {
    color: var(--gold);
    font-size: 0.82rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

/* Hero trust box */
.hero-trust-box {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 8px 24px;
    min-width: 180px;
}

.htb-item {
    padding: 14px 0;
    text-align: center;
}

.htb-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
}

.htb-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.htb-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero dots (index.php) */
.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hdot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hdot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 27, 45, 0.78) 0%,
            rgba(15, 27, 45, 0.45) 60%,
            rgba(15, 27, 45, 0.2) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 720px;
    animation: slideIn 0.8s ease 0.3s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-tag {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--gold-light);
    border: 1px solid rgba(200, 150, 62, 0.4);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
}

.slide-title em {
    color: var(--gold-light);
    font-style: italic;
}

.slide-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.slide-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(200, 150, 62, 0.45);
    color: var(--dark);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Hero stats */
.hero-stats {
    position: absolute;
    right: 5%;
    bottom: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ════════════════════════════════════════════════
   BOOKING BAR
════════════════════════════════════════════════ */
.booking-bar {
    /* background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); */
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.booking-bar .container {
    max-width: 1100px;
}

.booking-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(15, 27, 45, 0.12);
    padding: 28px 32px;
    border: 2px solid rgba(200, 150, 62, 0.15);
    max-width: 100%;
    overflow: hidden;
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.booking-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.booking-tabs {
    display: flex;
    gap: 8px;
}

.btab {
    background: var(--cream);
    border: 1px solid #e8e8e8;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 18px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
}

.btab:hover {
    border-color: rgba(200, 150, 62, 0.4);
    color: var(--dark);
}

.btab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btab::after {
    display: none;
}

.btab.active::after {
    display: none;
}

.counter-wrap {
    display: flex;
    align-items: center;
}

.btn-counter {
    background: #f0f0f0;
    border: 1px solid #E8EDF2;
    width: 40px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-counter:hover {
    background: #e0e0e0;
}

.btn-counter.minus {
    border-radius: 8px 0 0 8px;
}

.btn-counter.plus {
    border-radius: 0 8px 8px 0;
}

#local-hours {
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: 60px;
    padding: 0;
}

.invalid-feedback {
    display: none;
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: 4px;
    position: absolute;
    bottom: -18px;
    left: 0;
}

.booking-form.was-validated .form-control:invalid ~ .invalid-feedback,
.booking-form.was-validated .form-select:invalid ~ .invalid-feedback {
    display: block;
}

.booking-panel {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* Single-row form layout */
.booking-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    align-items: end;
    margin-bottom: 20px;
}

.booking-form-footer {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.booking-form-footer .captcha-group {
    flex: 0 0 auto;
}

.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-wrap .captcha-text {
    min-width: 90px;
    padding: 10px 14px;
    background: rgba(200, 150, 62, 0.12);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    text-align: center;
}

.captcha-wrap .form-control {
    width: 155px;
}

.btn-captcha-refresh {
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.btn-captcha-refresh:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.booking-form .form-group {
    margin-bottom: 0;
}

.booking-form .form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.booking-form .form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.booking-form .form-control,
.booking-form .form-select {
    padding: 12px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.btn-search {
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

@media (max-width: 991px) {
    .booking-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .booking-form-row {
        grid-template-columns: 1fr;
    }
    .booking-form-footer {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 991px) {
    .booking-bar {
        margin-top: 0;
        padding: 32px 0;
    }
    .booking-card {
        padding: 22px 20px;
    }
    .booking-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .booking-tabs {
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        width: 100%;
    }
    .booking-tabs::-webkit-scrollbar {
        display: none;
    }
    .btab {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

@media (max-width: 575px) {
    .pkg-img {
        height: 200px;
    }
    .pkg-body {
        padding: 20px;
    }
    .pkg-title {
        font-size: 1.2rem;
    }
    .pkg-amenities {
        grid-template-columns: repeat(2, 1fr);
    }
}

.booking-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    display: block;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.9rem;
    z-index: 1;
    pointer-events: none;
}

.input-wrap textarea~i {
    top: 16px;
    transform: none;
}

.input-wrap .form-control,
.input-wrap .form-select {
    padding-left: 38px;
    border: 1.5px solid #E8EDF2;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    color: var(--text);
    height: 46px;
    transition: var(--transition);
    background: #FAFBFC;
}

.input-wrap .form-control:focus,
.input-wrap .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
    background: var(--white);
}

.btn-search {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    height: 46px;
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 90, 43, 0.35);
    color: var(--white);
}

/* ════════════════════════════════════════════════
   TOUR BY INTEREST — Refined Grid
════════════════════════════════════════════════ */
.interest-section {
    background: var(--white);
    padding: 70px 0;
    overflow: hidden;
}

.interest-tag {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #e63946;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.interest-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.interest-title .highlight {
    color: #e63946;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.interest-card {
    position: relative;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
}

.interest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 27, 45, 0.9) 0%, rgba(15, 27, 45, 0.3) 40%, transparent 70%);
    transition: opacity 0.4s ease;
}

.interest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 27, 45, 0.15);
}

.interest-card:hover .interest-overlay {
    opacity: 0.95;
}

.interest-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.interest-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.interest-sub {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    display: block;
    margin-top: -5px;
    opacity: 0.9;
}

/* ── RESPONSIVENESS ── */
@media (max-width: 1200px) {
    .interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .interest-card {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .interest-title {
        font-size: 2.2rem;
    }
    .interest-grid {
        gap: 16px;
    }
    .interest-card {
        height: 280px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .interest-grid {
        grid-template-columns: 1fr;
    }
    .interest-section {
        padding: 60px 0;
    }
}


/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about-section {
    background: var(--white);
}

.about-imagery {
    position: relative;
    padding-right: 40px;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    height: 480px;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 200px;
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 30px;
    right: -10px;
    background: var(--gold);
    color: var(--dark);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-txt {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pillar i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.pillar strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.pillar p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-about {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-about:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 90, 43, 0.3);
}

/* ════════════════════════════════════════════════
   FLEET
════════════════════════════════════════════════ */
.fleet-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.fleet-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(200, 150, 62, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(224, 90, 43, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.fleet-section .section-tag {
    background: rgba(200, 150, 62, 0.15);
}

.fleet-section .section-title {
    color: var(--white);
}

.fleet-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

/* Fleet carousel (index page) */
.fleet-carousel-wrapper {
    position: relative;
    margin: 0 -12px;
    padding: 0 8px;
}

.fleet-section .container {
    overflow: visible;
}

.fleet-carousel {
    overflow: hidden;
}

.fleet-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 12px 16px;
    scroll-behavior: smooth;
}

.fleet-carousel-track::-webkit-scrollbar {
    display: none;
}

.fleet-carousel-card {
    flex: 0 0 auto;
    min-width: 320px;
    max-width: 320px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .fleet-carousel-card {
        min-width: calc((100% - 48px) / 2);
        max-width: calc((100% - 48px) / 2);
    }
}

@media (min-width: 992px) {
    .fleet-carousel-card {
        min-width: calc((100% - 72px) / 3);
        max-width: calc((100% - 72px) / 3);
    }
}

.fleet-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.fleet-carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.fleet-carousel-prev {
    left: -16px;
}

.fleet-carousel-next {
    right: -16px;
}

@media (max-width: 575px) {
    .fleet-carousel-prev {
        left: 8px;
    }
    .fleet-carousel-next {
        right: 8px;
    }
}

.fleet-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.fleet-carousel-dots .fleet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.fleet-carousel-dots .fleet-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 150, 62, 0.5);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 150, 62, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.fleet-featured {
    border-color: rgba(200, 150, 62, 0.4);
    background: rgba(200, 150, 62, 0.08);
}

.fleet-featured:hover {
    border-color: var(--gold);
}

.fleet-badge-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a84b 100%);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fleet-img {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.fleet-img img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.08);
}

.fleet-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.fleet-type {
    font-size: 0.78rem;
    color: rgba(200, 150, 62, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.fleet-specs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fleet-specs span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-specs i {
    color: var(--gold);
    font-size: 0.85rem;
}

.btn-fleet {
    background: #e05a2b;
    /* border: 2px solid var(--dark); */
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: auto;
}

.btn-fleet:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.btn-outline-fleet {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-fleet:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 150, 62, 0.08);
}

/* ════════════════════════════════════════════════
   WHY CHOOSE US  — Premium Redesign
════════════════════════════════════════════════ */
:root {
    --why-section-bg: #FDFBF9;
    --why-card-bg: #ffffff;
    --why-border: rgba(15, 27, 45, 0.06);
    --why-accent: var(--gold);
    --why-accent-light: rgba(200, 150, 62, 0.1);
    --why-text-head: var(--dark);
    --why-text-body: var(--text-muted);
    --why-shadow-sm: 0 4px 20px rgba(15, 27, 45, 0.04);
    --why-shadow-lg: 0 20px 50px rgba(15, 27, 45, 0.12);
    --why-radius: 24px;
    --why-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-section {
    background: var(--why-section-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.why-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--why-accent-light) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

/* ── Top row: 3 image feature cards ── */
.why-img-card {
    background: var(--why-card-bg);
    border: 1px solid var(--why-border);
    border-radius: var(--why-radius);
    overflow: hidden;
    transition: var(--why-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--why-shadow-sm);
}

.why-img-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--why-shadow-lg);
    border-color: var(--why-accent);
}

.why-img-card--accent {
    border-color: var(--why-accent);
    position: relative;
}

.why-img-card--accent::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--why-accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 1px;
}

.why-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.why-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-img-card:hover .why-img-wrap img {
    transform: scale(1.1);
}

.why-img-chip {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--dark);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-img-chip i {
    color: var(--why-accent);
}

.why-img-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-img-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--why-text-head);
    margin-bottom: 12px;
}

.why-img-body p {
    font-size: 0.95rem;
    color: var(--why-text-body);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.why-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark-2);
    font-weight: 500;
}

.why-checklist li i {
    width: 22px;
    height: 22px;
    background: var(--why-accent-light);
    color: var(--why-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ── Bottom row: 3 stat cards ── */
.why-stat-card {
    background: var(--why-card-bg);
    border: 1px solid var(--why-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--why-transition);
    height: 100%;
}

.why-stat-card:hover {
    background: var(--white);
    border-color: var(--why-accent);
    box-shadow: var(--why-shadow-sm);
    transform: translateY(-5px);
}

.why-stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--why-accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--why-transition);
}

.why-stat-icon i {
    font-size: 1.4rem;
    color: var(--why-accent);
    transition: var(--why-transition);
}

.why-stat-card:hover .why-stat-icon {
    background: var(--why-accent);
    transform: rotate(-10deg);
}

.why-stat-card:hover .why-stat-icon i {
    color: var(--white);
}

.why-stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--why-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.why-stat-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--why-text-head);
    margin-bottom: 6px;
}

.why-stat-content p {
    font-size: 0.88rem;
    color: var(--why-text-body);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .why-stat-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .why-img-wrap {
        height: 200px;
    }
}


/* ════════════════════════════════════════════════
   TOUR PACKAGES
════════════════════════════════════════════════ */
.packages-section {
    background: var(--white);
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
}

.pkg-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pkg-featured {
    border-color: var(--gold);
}

.pkg-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pkg-discount {
    position: absolute;
    top: 0;
    right: 0;
    background: #FFD700;
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-bottom-left-radius: 25px;
}

.pkg-hot {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--dark);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.pkg-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #006677;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pkg-duration {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pkg-duration span {
    color: #FF6600;
}

.pkg-amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.amenity-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-item i {
    font-size: 1.35rem;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.amenity-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF6600;
    display: block;
}

/* Clickable package card */
.pkg-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.pkg-card-link:hover {
    color: inherit;
}

.pkg-card-link:hover .pkg-card {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pkg-inclusions-header {
    font-size: 1.1rem;
    font-weight: 800;
    color: #006677;
    margin-bottom: 12px;
}

.pkg-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    flex: 1;
}

.pkg-includes li {
    font-size: 0.9rem;
    color: #666;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pkg-includes li::before {
    content: '»';
    color: #FF6600;
    font-weight: 900;
    font-size: 1.1rem;
    margin-top: -2px;
}

.btn-read-more {
    color: #FF6600;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    align-self: flex-end;
    margin-bottom: 15px;
    transition: var(--transition);
}

.btn-read-more:hover {
    text-decoration: underline;
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.pkg-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-price::before {
    content: '₹';
    font-weight: 400;
}

.btn-enquire {
    background: #FF6600;
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-enquire:hover {
    background: #e65c00;
    transform: scale(1.05);
    color: var(--white);
}

/* ════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 27, 45, 0.88), rgba(200, 150, 62, 0.3));
}

.cta-tag {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--gold-light);
    border: 1px solid rgba(200, 150, 62, 0.4);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-title em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(200, 150, 62, 0.4);
    color: var(--dark);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ════════════════════════════════════════════════
   POPULAR PACKAGES
════════════════════════════════════════════════ */
/* Tempo section (index) */
.tempo-section {
    background: var(--cream);
}

.tempo-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 24px rgba(15, 27, 45, 0.06);
    height: 100%;
    position: relative;
    border: 2px solid rgba(200, 150, 62, 0.25);
}

.tempo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(15, 27, 45, 0.12);
    border-color: rgba(200, 150, 62, 0.5);
}

.tempo-card-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f7f4 0%, #eee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.tempo-card-img img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tempo-card:hover .tempo-card-img img {
    transform: scale(1.08);
}

.tempo-card-body {
    padding: 28px;
}

.tempo-card-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.tempo-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tempo-card-body p i {
    color: var(--gold);
}

.btn-tempo {
    display: block;
    text-align: center;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--dark);
}

.btn-tempo:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.tempo-card-featured {
    border-color: rgba(200, 150, 62, 0.5);
}

.tempo-card-featured:hover {
    border-color: var(--gold);
}

.tempo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a84b 100%);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.popular-section {
    background: var(--cream);
}

.popular-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(15, 27, 45, 0.07);
    height: 100%;
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.popular-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.popular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.popular-card:hover .popular-img img {
    transform: scale(1.08);
}

.popular-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 45, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.popular-card:hover .popular-overlay {
    opacity: 1;
}

.btn-pop-enquire {
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.popular-card:hover .btn-pop-enquire {
    transform: translateY(0);
}

.popular-body {
    padding: 22px;
}

.popular-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.popular-tags span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(200, 150, 62, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
}

.popular-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pop-duration,
.pop-route {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pop-duration i,
.pop-route i {
    color: var(--gold);
}

.pop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #F0F0F0;
}

.pop-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.pop-rating {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-view-all {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-view-all:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 90, 43, 0.3);
}

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--dark);
}

.testimonials-section .section-tag {
    background: rgba(200, 150, 62, 0.15);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testi-carousel {
    overflow: hidden;
    padding: 8px 0;
    width: 100%;
    max-width: 100%;
}

.testi-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.testi-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px;
    scroll-snap-align: start;
    transition: var(--transition);
    flex-shrink: 0;
}

.testi-card:hover {
    border-color: var(--gold);
    background: rgba(200, 150, 62, 0.05);
}

.testi-stars {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testi-author span {
    font-size: 0.8rem;
    color: var(--gold-light);
}

.testi-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.testi-controls button {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testi-controls button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq-section {
    background: var(--cream);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    border: 1.5px solid #EAEAEA !important;
    overflow: hidden;
}

.faq-btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    padding: 18px 22px;
    box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
    color: var(--accent);
    background: rgba(224, 90, 43, 0.03);
}

.faq-btn::after {
    color: var(--gold);
}

.faq-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 22px 18px;
}

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section {
    background: var(--white);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 20px 80px rgba(15, 27, 45, 0.1);
    border: 1.5px solid #F0EDE8;
    max-width: 100%;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 28px;
}

.contact-form-title span {
    color: var(--accent);
}

.cform-group {
    position: relative;
}

.cform-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.9rem;
    pointer-events: none;
}

.cform-group textarea~i {
    top: 16px;
    transform: none;
}

.cform-group .form-control,
.cform-group .form-select,
.cform-group select {
    padding-left: 38px;
    border: 1.5px solid #E8EDF2;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    transition: var(--transition);
}

.cform-group textarea.form-control {
    padding-top: 12px;
}

.cform-group .form-control:focus,
.cform-group .form-select:focus,
.cform-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
}

.btn-submit {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 27, 45, 0.25);
    color: var(--white);
}

.contact-info-wrap {
    /* padding-left: 20px; */
}

.contact-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 150, 62, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--dark);
}

.contact-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(15, 27, 45, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
    background: #08121E;
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-newsletter-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 12px 18px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-contact-quick p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.footer-contact-quick i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ════════════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 156px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--dark);
}

.call-float {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--dark);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(15, 27, 45, 0.35);
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1);
    color: var(--gold);
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .section-pad {
        padding: 60px 0;
    }

    .interest-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .interest-card:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 220px;
    }

    .interest-card:nth-child(4),
    .interest-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .interest-card:nth-child(6) {
        display: block;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: none;
    }

    .about-img-float {
        display: none;
    }

    .about-badge {
        right: 10px;
    }

    .about-imagery {
        padding-right: 0;
    }

    .contact-info-wrap {
        padding-left: 0;
    }

    /* Home hero: fixed 100dvh + overflow:hidden + vertical center clips copy on short phones */
    .hero-section {
        height: auto;
        min-height: calc(100vh - var(--navbar-height));
        min-height: calc(100dvh - var(--navbar-height));
    }

    .hero-slider {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .hero-body {
        min-height: calc(100vh - var(--navbar-height));
        min-height: calc(100dvh - var(--navbar-height));
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 88px;
    }

    .hero-eyebrow {
        max-width: 100%;
        flex-wrap: wrap;
        row-gap: 4px;
    }
}

@media (max-width: 767px) {
    .hero-body {
        display: none;
    }

    .hero-section {
        height: 52vh;
        height: 52dvh;
        min-height: 280px;
        max-height: 420px;
    }

    .hero-slider,
    .hero-slide {
        height: 100%;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .booking-card {
        padding: 24px 20px;
    }

    .interest-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .interest-card:nth-child(3) {
        grid-column: 1;
        height: 200px;
    }

    .interest-card {
        height: 200px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        bottom: 20px;
    }

    .cta-section {
        background-attachment: scroll;
    }

    .fleet-section .section-tag,
    .testimonials-section .section-tag {
        display: inline-block;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .section-header {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .slide-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        text-align: center;
    }

    .booking-tabs {
        flex-wrap: wrap;
    }

    .testi-card {
        min-width: 280px;
        max-width: calc(100vw - 40px); /* Prevent overflow on narrow screens */
    }

    .hero-title {
        font-size: clamp(1.45rem, 6.5vw, 1.75rem);
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ════════════════════════════════════════════════
   INNER PAGE HERO (for sub-pages)
════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    margin-top: var(--navbar-height);
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 32px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(224,90,43,0.08)" stroke-width="1"/></svg>');
    background-size: 60px 60px;
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero-breadcrumb a:hover {
    color: var(--gold);
}

.page-hero-breadcrumb span {
    color: var(--gold);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.page-hero h1 em {
    color: var(--gold);
    font-style: italic;
}

/* ════════════════════════════════════════════════
   TOUR DETAIL PAGE
════════════════════════════════════════════════ */
.tour-detail-hero {
    position: relative;
    margin-top: var(--navbar-height);
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding: 32px 0 50px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tour-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(15, 27, 45, 0.92) 0%, rgba(15, 27, 45, 0.78) 40%, rgba(15, 27, 45, 0.65) 100%);
}

.tour-detail-hero .container {
    position: relative;
    z-index: 2;
}

.tour-detail-hero .page-hero-breadcrumb {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.tour-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin: 0 0 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.tour-detail-hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.tour-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-meta-item i {
    font-size: 1.2rem;
    color: var(--gold);
}

.tour-meta-item strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.tour-meta-item span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.tour-detail-content {
    padding: 60px 0;
}

.tour-detail-sidebar {
    position: sticky;
    top: 100px;
}

.tour-enquiry-card {
    background: var(--cream);
    border: 1px solid rgba(224, 90, 43, 0.15);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.tour-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.tour-enquiry-card .pkg-price {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.tour-enquiry-form .form-control,
.tour-enquiry-form .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid #E8EDF2;
    padding: 10px 14px;
    font-size: 0.9rem;
}

.tour-enquiry-form .form-control:focus,
.tour-enquiry-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(224, 90, 43, 0.1);
}

.tour-enquiry-card .btn-enquire {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
}

.tour-sidebar-contact {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
}

.tour-quick-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--cream);
    border: 1px solid rgba(224, 90, 43, 0.15);
    border-radius: var(--radius-sm);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.tour-quick-btn:last-child {
    margin-bottom: 0;
}

.tour-quick-btn i {
    font-size: 1.1rem;
    color: var(--gold);
}

.tour-quick-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.tour-quick-btn:hover i {
    color: var(--white);
}

.tour-quick-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.tour-sidebar-why {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
}

.tour-sidebar-why .tour-sidebar-title {
    color: var(--white);
}

.tour-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.tour-why-list li i {
    color: var(--gold);
    font-size: 0.85rem;
}

.tour-itinerary {
    margin: 40px 0;
}

.tour-itinerary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.itinerary-day {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.itinerary-day:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.itinerary-day-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.itinerary-day-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.itinerary-day-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Blog article sections (blog-detail) */
.blog-article-section {
    margin-bottom: 32px;
}

.blog-article-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.blog-article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.blog-article-content h2,
.blog-article-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
}

.blog-article-content h2 { font-size: 1.4rem; }
.blog-article-content h3 { font-size: 1.2rem; }

.blog-article-content p { margin-bottom: 16px; }
.blog-article-content ul, .blog-article-content ol { margin: 16px 0; padding-left: 24px; }
.blog-article-content li { margin-bottom: 8px; }
.blog-article-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 16px 0; }
.blog-article-content a { color: var(--accent); text-decoration: none; }
.blog-article-content a:hover { text-decoration: underline; }

.blog-detail-actions {
    padding-top: 24px;
    border-top: 1px solid rgba(15, 27, 45, 0.08);
}

.tour-inclusions {
    margin: 40px 0;
}

.tour-inclusions h3,
.tour-exclusions h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.tour-inclusions ul,
.tour-exclusions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-inclusions li,
.tour-exclusions li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.tour-inclusions li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #22c55e;
}

.tour-exclusions li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ef4444;
}

@media (max-width: 991px) {
    .tour-detail-sidebar {
        position: static;
    }
    .tour-meta-bar {
        margin-top: -20px;
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .tour-detail-hero {
        min-height: 280px;
        padding: 24px 0 40px;
    }
}

/* Popular Taxi Routes section */
.popular-routes-section {
    background: var(--cream);
}

.popular-routes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(15, 27, 45, 0.06);
    transition: var(--transition);
}

.route-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(15, 27, 45, 0.1);
}

.route-btn-disabled {
    cursor: default;
    color: var(--text-muted);
}

.route-btn-disabled:hover {
    border-color: #e8e8e8;
    box-shadow: 0 2px 12px rgba(15, 27, 45, 0.06);
}

/* Location route cards */
.location-route-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--cream);
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

.location-route-card:hover {
    border-color: var(--gold);
    background: white;
    box-shadow: var(--shadow);
}

.location-route-card i {
    font-size: 1.3rem;
    color: var(--gold);
}

.location-route-card strong {
    display: block;
    font-size: 0.95rem;
}

.location-route-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Service type cards (taxi / tempo pages) */
.service-type-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--cream);
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.service-type-card:hover {
    border-color: var(--gold);
    background: white;
    box-shadow: var(--shadow);
}

.service-type-card i {
    font-size: 1.5rem;
    color: var(--gold);
}

.service-type-card strong {
    display: block;
    font-size: 0.95rem;
}

.service-type-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-map-wrap {
    /* border-radius: var(--radius); */
    overflow: hidden;
    min-height: 280px;
    background: var(--cream);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}


/* Booking modal */
#bookingModal .modal-header {
    background: var(--dark);
    color: var(--white);
    border-bottom: none;
}

#bookingModal .btn-close {
    filter: invert(1);
}

#bookingModal .btab {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

#bookingModal .btab.active {
    background: var(--dark);
    color: var(--white);
}

.contact-map-placeholder {
    background: var(--cream);
    border: 1px dashed rgba(224, 90, 43, 0.3);
    border-radius: var(--radius);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-inner {
    text-align: center;
    padding: 30px;
}

.map-placeholder-inner i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.map-placeholder-inner p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cform-select {
    padding: 12px 16px 12px 38px;
    border: 1.5px solid #E8EDF2;
    border-radius: var(--radius-sm);
}

/* Blog cards */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 27, 45, 0.08);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 12px 40px rgba(15, 27, 45, 0.15);
    transform: translateY(-4px);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card-meta i {
    margin-right: 4px;
    color: var(--gold);
}

.blog-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-read {
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-card:hover .blog-card-read {
    gap: 10px;
}
