/* ======== GOOGLE FONTS & VARIABLES ======== */
:root {
    /* Fonts */
    --font-primary: "Poppins", sans-serif;
    --font-heading: "Poppins", sans-serif;

    /* Colors */
    --color-accent: #c0150f;
    --color-accent-hover: #a01008;
    --color-white: #ffffff;
    --color-background: #ffffff;
    --color-background-secondary: #f4f7fa;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555;
    --color-border: #e0e0e0;

    /* Spacing & Sizing */
    --navbar-height: 80px;
    --container-width: 1140px;
}

/* ======== GLOBAL RESET & BASE STYLES ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    /* line-height: 1.6; */
}

ul {
    list-style: none;
}

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

h1 {
    font-family: var(--font-heading);
}

img {
    max-width: 100%;
    height: auto;
}

/* ======== HERO & NAVIGATION SECTION [START] ======== */
/* --- Hero Section Background --- */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* --- Hero Slider --- */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.06);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Ken-Burns zoom on outgoing slide */
.hero-slide.leaving {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.1s ease, transform 1.1s ease;
}

/* --- Hero Overlay — light vignette only, no text blocking --- */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.35) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* --- Hero Content (unused in pure banner mode — kept for other pages) --- */

/* --- Hero Dots --- */
.hero-dots {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.hero-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* --- Hero Progress bar --- */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--color-accent);
    z-index: 4;
    transition: none;
}

/* --- Hero Arrows (hidden — no arrows in pure banner mode) --- */
.hero-arrow { display: none; }

/* Mobile */
@media (max-width: 768px) {
    .hero-dots  { bottom: 1.2rem; }
    .hero-dot   { width: 6px; height: 6px; }
    .hero-dot.active { width: 18px; }
    .hero-bottom-info { display: none; } /* hide scroll-down on mobile — dots are enough */
}

/* --- Navbar Styling --- */
.navbar {
    height: var(--navbar-height);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

/* --- Scrolled Navbar --- */
.navbar-scrolled {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    max-width: var(--container-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-white);
    transition: color 0.3s ease;
}

/* Scrolled navbar par logo dark ho jayega */
.navbar-scrolled .nav-logo {
    color: var(--color-text-primary);
}

.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.close-menu-icon {
    display: none;
}

.nav-menu-mobile {
    display: none;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    transition: color 0.3s ease;
}

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

/* Scrolled navbar par links dark ho jayenge */
.navbar-scrolled .nav-link {
    color: var(--color-text-primary);
}

.cta-button {
    background-color: var(--color-white);
    color: var(--color-text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Hamburger (hidden on desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

/* Scrolled navbar par hamburger dark ho jayega */
.navbar-scrolled .hamburger span {
    background-color: var(--color-text-primary);
}

/* Booking Form */
.booking-form-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.booking-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    padding-right: 1rem;
}

.form-group:not(:last-of-type) {
    border-right: 1px solid #ddd;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-left: 0.5rem;
}

.form-group input {
    border: none;
    background-color: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    padding: 0.5rem;
    width: 100%;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    display: none;
    -webkit-appearance: none;
}

.form-submit-btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #a01008;
}

.form-submit-btn i {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: bold;
}

/* Hero Bottom Info */
.hero-bottom-info {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    color: var(--color-white);
    margin-top: auto;
    padding-bottom: 3rem;
}

.bottom-info-left {
    max-width: 50%;
}

.bottom-info-left h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    /* line-height: 1.2; */
}

.bottom-info-left p {
    font-size: 0.9rem;
    /* line-height: 1.5; */
    color: var(--color-text);
}

.bottom-info-right {
    text-align: left;
}

.scroll-down {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 0.8;
}

.scroll-down i {
    font-size: 2rem;
    margin-right: 0.5rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ======== HERO & NAVIGATION SECTION [END] ======== */


/* ======== POPULAR SECTION [START] ======== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid;
}

.btn:hover {
    background-color: #a01008;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 21, 15, 0.35);
}

/* ======== POPULAR SECTION — PREMIUM 3D SPLIT ======== */

.popular-section {
    position: relative;
    overflow: hidden;
    /* Deep layered background for 3D depth */
    background:
        linear-gradient(180deg, #e8edf3 0%, #f2f5f9 30%, #ffffff 60%, #f5f7fa 100%);
    padding: 5rem 0;
    /* Inset top/bottom shadow for "sunken" 3D feel */
    box-shadow:
        inset 0 2px 12px rgba(0,0,0,0.06),
        inset 0 -2px 12px rgba(0,0,0,0.04);
}

/* Layer 1 — top-left cool light source */
.popular-section::before {
    content: '';
    position: absolute;
    top: -60px; left: -80px;
    width: 55%;
    height: 70%;
    background: radial-gradient(ellipse at top left, rgba(220,230,255,0.55) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Layer 2 — bottom-right warm glow */
.popular-section::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -60px;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at bottom right, rgba(255,200,180,0.2) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Layer 3 — centre highlight (via a pseudo on container) */
.popular-section .pop-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 55% 50%, rgba(255,255,255,0.7) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Horizontal groove lines for depth texture */
.popular-section .pop-bg-lines {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(0,0,0,0.018) 40px
        );
    pointer-events: none;
    z-index: 0;
}

.popular-section .container {
    position: relative;
    z-index: 1;
}

/* ── Two-column grid inside container ── */
.popular-split {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 520px;
    /* perspective for child 3D hover effects */
    perspective: 1200px;
}

/* ══════════════ LEFT PANEL ══════════════ */
.pop-left {
    background: linear-gradient(160deg, #ffffff 0%, #fafbfc 100%);
    display: flex;
    align-items: stretch;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 40px 90px rgba(0,0,0,0.11),
        0 8px 24px rgba(0,0,0,0.07),
        0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.065);
    /* subtle static tilt for 3D feel */
    /* transform: perspective(900px) rotateY(1.5deg) rotateX(-0.5deg); */
    transform-origin: left center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pop-left:hover {
    transform: perspective(900px) rotateY(0.5deg) rotateX(0deg) translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 50px 100px rgba(0,0,0,0.13),
        0 12px 30px rgba(0,0,0,0.08);
}

/* "platform" ground shadow — gives the card a floating feel */
.pop-left::after {
    content: '';
    position: absolute;
    bottom: -18px; left: 8%; right: 8%;
    height: 18px;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(0,0,0,0.14) 0%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(4px);
}

/* top accent line */
.pop-left-accent {
    position: absolute;
    top: 0; left: 1.75rem; right: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, #e53935, #ff7043, transparent);
    border-radius: 0 0 2px 2px;
}

/* Subtle corner highlight */
.pop-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse at top left, rgba(255,255,255,0.9) 0%, transparent 70%);
    border-radius: inherit;
    pointer-events: none;
}

.pop-left-inner {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Live badge */
.pop-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(229,57,53,0.12), rgba(255,112,67,0.08));
    border: 1px solid rgba(229, 57, 53, 0.28);
    color: #e53935;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(229,57,53,0.12);
}

.pop-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e53935;
    animation: pop-pulse 1.4s ease infinite;
    flex-shrink: 0;
}

@keyframes pop-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(229,57,53,0.6); }
    50%       { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 0 5px rgba(229,57,53,0); }
}

/* Heading */
.pop-left-heading {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    line-height: 1.16;
    color: #0d0d0d;
    margin: 0;
    letter-spacing: -0.02em;
}

.pop-left-sub {
    font-size: 0.76rem;
    color: rgba(0,0,0,0.38);
    line-height: 1.65;
    margin: -0.3rem 0 0;
}

/* ── divider ── */
.pop-sheet-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.07), transparent);
    margin: 0 0 0.1rem;
}

/* ── Trip sheet (running list) ── */
.pop-trip-sheet {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.pop-trip-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #f8f9fb;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0.85rem;
    padding: 0.6rem 0.85rem;
    transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.18s;
    animation: pop-row-in 0.35s ease both;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.pop-trip-row:hover {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transform: translateX(2px);
}

/* Active row — matches the currently displayed slide */
.pop-trip-row--active {
    background: rgba(229,57,53,0.04) !important;
    border-color: rgba(229,57,53,0.26) !important;
    box-shadow: 0 4px 14px rgba(229,57,53,0.08) !important;
}

.pop-trip-row--active .pop-trip-name {
    color: #c62828;
    font-weight: 700;
}

/* Active indicator bar */
.pop-trip-row--active::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 3px;
    background: #e53935;
    border-radius: 0 2px 2px 0;
}

@keyframes pop-row-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* thumbnail inside sheet row */
.pop-trip-thumb {
    width: 42px;
    height: 42px;
    border-radius: 0.6rem;
    object-fit: cover;
    flex-shrink: 0;
    background: #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pop-trip-info {
    flex: 1;
    min-width: 0;
}

.pop-trip-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.pop-trip-meta {
    font-size: 0.68rem;
    color: rgba(0,0,0,0.38);
    margin-top: 0.15rem;
    font-weight: 500;
}

/* visitor / seat count badge */
.pop-trip-count {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #e53935;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(229,57,53,0.1), rgba(255,112,67,0.07));
    padding: 0.28rem 0.65rem;
    border-radius: 100px;
    border: 1px solid rgba(229,57,53,0.22);
    transition: all 0.5s ease;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.pop-trip-count i { font-size: 0.72rem; }
.seat-num { font-variant-numeric: tabular-nums; font-size: 0.78rem; }

/* ── bookings count strip ── */
.pop-booking-strip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(0,0,0,0.4);
    font-weight: 500;
    padding: 0 0.15rem;
}

.pop-booking-strip strong {
    color: #222;
    font-weight: 700;
    font-size: 0.8rem;
}

.pop-booking-strip-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
}

/* ── Sheet nav header (label + arrows) ── */
.pop-sheet-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -0.15rem;
}

.pop-sheet-nav-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.32);
}

.pop-sheet-nav-arrows {
    display: flex;
    gap: 0.35rem;
}

.pop-sheet-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    padding: 0;
    line-height: 1;
}

.pop-sheet-arrow:hover {
    background: #e53935;
    border-color: #e53935;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(229,57,53,0.28);
}

.pop-sheet-arrow:active {
    transform: scale(0.95);
}

/* Explore button */
.pop-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e53935, #f4511e);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    width: 100%;
    margin-top: 0.2rem;
    box-shadow: 0 4px 14px rgba(229,57,53,0.3);
    letter-spacing: 0.01em;
}

.pop-explore-btn:hover {
    background: linear-gradient(135deg, #c62828, #e53935);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(229,57,53,0.38);
}
.pop-explore-btn i { transition: transform 0.25s; }
.pop-explore-btn:hover i { transform: translateX(4px); }

/* ══════════════ RIGHT PANEL ══════════════ */
.pop-right {
    position: relative;
}

/* clip = the card itself, fills the column */
.pop-slider-clip {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.75rem;
    box-shadow:
        0 40px 90px rgba(0,0,0,0.15),
        0 8px 24px rgba(0,0,0,0.08);
    /* mirror the left panel tilt from the other side */
    transform: perspective(900px) rotateY(-1deg) rotateX(-0.5deg);
    transform-origin: right center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pop-slider-clip:hover {
    transform: perspective(900px) rotateY(-0.3deg) rotateX(0deg) translateY(-3px);
    box-shadow:
        0 50px 100px rgba(0,0,0,0.18),
        0 12px 30px rgba(0,0,0,0.09);
}

/* Slider track */
.pop-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* Individual slide — fills column width, fixed height */
.pop-slide {
    flex: 0 0 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    height: 480px;
}

/* Gradient overlay */
.pop-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.78) 100%);
}

.pop-slide-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.8rem 2rem;
    z-index: 2;
}

.pop-slide-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.pop-slide-name {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.pop-slide-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 520px;
}

.pop-slide-meta {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.52);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.26rem 0.68rem;
    border-radius: 100px;
}

.pop-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.46rem 1rem;
    border-radius: 100px;
    transition: background 0.2s, gap 0.2s;
}

.pop-slide-link:hover { background: rgba(255,255,255,0.25); gap: 0.6rem; }

/* Counter chip — top right */
.pop-slide-counter {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 3;
    font-size: 0.67rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.26rem 0.62rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

/* Arrows — bottom right inside card */
.pop-slider-arrows {
    position: absolute;
    bottom: 1rem; right: 1rem;
    display: flex;
    gap: 0.38rem;
    z-index: 10;
}

.pop-slider-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.pop-slider-arrow:hover { background: #e53935; border-color: #e53935; transform: scale(1.1); }

/* Dots — bottom left inside card */
.pop-slider-dots {
    position: absolute;
    bottom: 1.25rem; left: 1.4rem;
    display: flex;
    gap: 0.35rem;
    z-index: 10;
}

.pop-slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.pop-slider-dot.active { background: #fff; width: 20px; border-radius: 3px; }

/* ── Responsive ── */
@media (max-width: 960px) {
    .popular-section { padding: 3rem 0; }

    .popular-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: unset;
    }

    .pop-left { border-radius: 1.25rem; }
    .pop-slide { height: 360px; }
}

@media (max-width: 600px) {
    .pop-left-heading { font-size: 1.5rem; }
    .pop-slide-name   { font-size: 1.9rem; }
    .pop-slide        { height: 300px; }
}




/* ======== POPULAR SECTION [END] ======== */

/* ======== PLACES SECTION [START] ======== */
.places-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.places-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.places-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-primary);
    /* line-height: 1.3; */
    margin-bottom: 1rem;
}

.places-header p {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    /* line-height: 1.6; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-buttons-wrapper {
    overflow-x: auto;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.filter-buttons-wrapper::-webkit-scrollbar {
    display: none;
}

.filter-buttons-wrapper.active-drag {
    cursor: grabbing;
    /* Show grabbing hand when dragging */
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    margin: 0 auto;
    padding: 0 1rem;
}

.filter-btn {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    background-color: #f0f0f0;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: #e0e0e0;
}

.filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.search-bar-container {
    margin: 2.5rem 0;
}

.places-search {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.places-search input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.5rem;
    border-radius: 2.5rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.places-search input::placeholder {
    color: #999;
}

.places-search input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.places-search i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #999;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.place-card {
    position: relative;
    min-height: 350px;
    border-radius: 1.25rem;
    overflow: hidden;
    display: block;
    background-size: cover;
    background-position: center;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.place-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
}

.place-card-content span {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.place-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-white);
    /* line-height: 1.2; */
}

.place-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background-color: var(--color-background-secondary);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 5;
}

.place-card:hover .place-card-arrow {
    opacity: 1;
    transform: scale(1);
}

.places-view-more {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.place-card-hidden {
    display: none;
}

/* --- "View More" Logic --- */
.places-grid.collapsed .place-card:nth-child(n + 7) {
    display: none;
    /* 'collapsed' state mein 6 ke baad waale cards hide karein */
}

.places-view-more {
    display: none;
    /* Button ko by default hide rakhein */
    justify-content: center;
    margin-top: 2.5rem;
}

/* Agar 7 ya usse zyada card hain, tabhi "View More" button dikhayein */
.places-grid:has(.place-card:nth-child(7))~.places-view-more {
    display: flex;
}

/* Jab button click ho, toh JS is class ko add karega */
.places-view-more.hidden {
    display: none;
}

.place-card-hidden {
    display: none;
}

/* --- No Results Message --- */
.no-results-message {
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 500px;
    margin: 2rem auto 0 auto;
    background-color: var(--color-background-secondary);
    border-radius: 1.25rem;
    border: 1px dashed var(--color-border);
}

.no-results-message i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.no-results-message h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.no-results-message p {
    color: var(--color-text-secondary);
    /* line-height: 1.6; */
}

/* ======== PLACES SECTION [END] ======== */

/* ======== TESTIMONIAL SECTION [START] ======== */
.testimonial-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --- Section Header --- */
.testimonial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.testimonial-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-primary);
    /* line-height: 1.3; */
    margin-bottom: 1rem;
}

.testimonial-header p {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    /* line-height: 1.6; */

    /* 2 line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Testimonial Content Grid */
.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 split */
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    /* Limit width for better balance */
    margin: 0 auto;
}

/* Left Side: Images */
.testimonial-image-container {
    position: relative;
    width: 100%;
}

.testimonial-place-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 1.25rem;
    display: block;
}

.testimonial-profile-img {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--color-background);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Right Side: Review --- */
.testimonial-review {
    position: relative;
    padding-left: 1rem;
}

.review-text {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 1.5rem;
    /* line-height: 1.5; */
    color: var(--color-text-primary);
    margin-bottom: 2rem;

    /* 3 line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.client-location {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #ffa500;
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

/* "Write Yours" Button */
.testimonial-button-container {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

/* ======== TESTIMONIAL SECTION [END] ======== */

/* ======== FAQ SECTION [START] ======== */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-background-secondary);
}

/* Section Header */
.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-primary);
    /* line-height: 1.3; */
    margin-bottom: 1rem;
}

.faq-header p {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    /* line-height: 1.6; */

    /* 2 line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;

    cursor: pointer;
    text-align: left;

    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

/* Icon Styling */
.faq-icon-wrapper {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--color-accent);
    /* line-height: 1; */
    transition: transform 0.3s ease;
}

/* Active State Style */
.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-item.active .faq-icon-wrapper {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.faq-item.active .faq-icon-wrapper i {
    color: var(--color-white);
    transform: rotate(180deg);
}

/* Answer Styling (Collapsible) */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-answer-content {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    /* line-height: 1.7; */
    margin: 0;
}

/* --- Active State (Open) --- */
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

/* ======== FAQ SECTION [END] ======== */


/* ======== FAQ SECTION [END] ======== */

/* ======== FOOTER SECTION [START] ======== */
.footer-section {
    padding-top: 5rem;
    background-color: var(--color-background-secondary);
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-border);
}

/* Footer Top (Links & Newsletter) */
.footer-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.footer-col {
    font-size: 0.9rem;
}

/* Column 1: Logo (Takes 3 of 12 columns) */
.footer-col-logo {
    grid-column: span 3;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-text-primary);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col p {
    /* line-height: 1.6; */
}

/* Columns 2, 3, 4: Links (Takes 2 of 12 columns each) */
.footer-col:not(.footer-col-logo):not(.footer-col-newsletter) {
    grid-column: span 2;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

/* Column 5: Newsletter (Takes 3 of 12 columns) */
.footer-col-newsletter {
    grid-column: span 3;
}

.footer-col-newsletter p {
    margin-bottom: 1.25rem;
}

.newsletter-form {
    position: relative;
    display: flex;
}

.newsletter-form input {
    width: 100%;
    height: 50px;
    padding: 0 4rem 0 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    background-color: var(--color-background);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    display: none;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    display: none;
}

.newsletter-form button:hover {
    background-color: #a01008;
}

/* Footer Bottom (Divider, Copyright, Socials)
.footer-bottom {
    padding-top: 3rem;
    padding-bottom: 3rem;
} */

.footer-divider {
    border: none;
    height: 1px;
    background-color: var(--color-border);
    width: 90%;
    margin: 0 auto;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 2rem; */
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons a {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-accent);
}

/* ======== FOOTER SECTION [END] ======== */

/* ======== DESTINATION PAGE STYLES [START] ======== */
.destination-section {
    padding-top: calc(var(--navbar-height) + 4rem);
    /* Navbar ki height + padding */
    padding-bottom: 5rem;
    min-height: 80vh;
}

.destination-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.destination-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text-primary);
    /* line-height: 1.3; */
    margin-bottom: 1rem;
    text-transform: capitalize;
    /* "kashmir" ko "Kashmir" dikhayega */
}

.destination-header p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    /* line-height: 1.6; */
}

/* --- Masonry Grid (Pinterest Style) --- */
.masonry-grid {
    /* CSS Columns se masonry layout banayenge */
    column-count: 3;
    column-gap: 1rem;
    object-fit: cover;
}

.masonry-grid img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ======== DESTINATION PAGE STYLES [END] ======== */

/* ======== RESPONSIVE [START] ======== */
/* Tablet (992px se chota) */
@media (max-width: 992px) {
    :root {
        --container-width: 920px;
    }

    /* Nav + Hero Section */
    .nav-menu-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .booking-form {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .form-group {
        flex-basis: 48%;
    }

    .form-group:nth-child(2) {
        border-right: none;
    }

    /* Places Grid */
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonial Section */
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 600px;
    }

    .testimonial-profile-img {
        right: 50%;
        bottom: -40px;
        transform: translateX(50%);
    }

    .testimonial-review {
        padding-left: 0;
        text-align: center;
    }

    .testimonial-stars {
        justify-content: center;
    }

    /* Footer Section */
    .footer-top {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }

    .footer-col-logo {
        grid-column: span 4;
    }

    .footer-col:not(.footer-col-logo):not(.footer-col-newsletter) {
        grid-column: span 2;
    }

    .footer-col-newsletter {
        grid-column: span 4;
    }

    /* Destination Page */
    .masonry-grid {
        column-count: 2;
    }
}

/* Mobile (768px se chota) */
@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }

    /* Nav + Hero Section */
    .hero-section {
        height: auto;
        padding-top: calc(var(--navbar-height) + 3rem);
        padding-bottom: 3rem;
    }

    .navbar {
        padding: 0 1rem;
    }

    .nav-menu-mobile {
        display: none;
        position: fixed;
        bottom: -100%;
        left: 1rem;
        right: 1rem;
        width: auto;
        background-color: var(--color-background);
        border-radius: 1.5rem;
        padding: 3rem 1.5rem 2rem 1.5rem;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        z-index: 9999;
        transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .nav-menu-mobile.active {
        display: flex;
        bottom: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-menu-mobile .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--color-text-primary);
    }

    .close-menu-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        color: var(--color-text-primary);
        background-color: #f0f0f0;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10000;
        transition: background-color 0.3s ease;
    }

    .close-menu-icon:hover {
        background-color: #e0e0e0;
    }

    .navbar .nav-button {
        display: none;
    }

    .nav-menu-mobile .nav-button {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        background-color: var(--color-accent);
        color: var(--color-white);
    }

    .nav-menu-mobile .nav-button:hover {
        background-color: #a01008;
        color: var(--color-white);
    }

    .hero-content {
        flex-grow: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .booking-form {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .form-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .form-group:last-of-type {
        border-bottom: none;
    }

    .form-submit-btn {
        width: 100%;
        border-radius: 1rem;
        height: 50px;
        margin-top: 0.5rem;
    }

    .hero-bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .bottom-info-left {
        max-width: 100%;
    }

    .bottom-info-left h2 {
        font-size: 1.75rem;
    }

    .bottom-info-left p {
        font-size: 0.85rem;
    }

    .bottom-info-right {
        align-self: flex-end;
    }

    /* Popular Section */
    .popular-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .popular-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .popular-grid::-webkit-scrollbar {
        display: none;
    }

    .popular-card {
        grid-column: auto;
        width: 80vw;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .popular-card:nth-child(n + 5) {
        display: block;
    }

    .popular-show-more {
        /* display: none; */
    }

    /* Places Section */
    .places-grid {
        grid-template-columns: 1fr;
    }

    .places-header h2 {
        font-size: 2rem;
    }

    .places-search input {
        padding: 0.9rem 1.2rem 0.9rem 3rem;
        font-size: 0.9rem;
    }

    .places-search i {
        left: 1.2rem;
        font-size: 1rem;
    }

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

    /* Testimonial Section */
    .testimonial-header h2 {
        font-size: 2rem;
    }

    .review-text {
        font-size: 1.25rem;
    }

    .client-name {
        font-size: 1.5rem;
    }

    .testimonial-place-img {
        height: 400px;
    }

    /* FAQ Section */
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-question span {
        padding-right: 0.5rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    /* App Download Section */
    .app-download-header h2 {
        font-size: 2rem;
    }

    .app-buttons-container {
        gap: 1rem;
    }

    .app-store-btn,
    .google-play-btn {
        width: 100%;
        min-width: auto;
        justify-content: center;
    }

    /* Footer Section */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col-logo,
    .footer-col:not(.footer-col-logo):not(.footer-col-newsletter),
    .footer-col-newsletter {
        grid-column: span 1;
    }

    .footer-col-logo {
        text-align: center;
    }

    .footer-col-logo p {
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-bottom {
        padding-bottom: 2rem;
    }

    .footer-divider {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .copyright-text {
        order: 2;
    }

    .social-icons {
        order: 1;
    }

    /* Destination Page */
    .destination-header h1 {
        font-size: 2.25rem;
    }

    .masonry-grid {
        column-count: 1;
    }
}

/* ======== RESPONSIVE [END] ======== */


/* ======== 8. ANIMATION KEYFRAMES ======== */

/* Yeh animation hum dono pages par reuse karenge */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. "Places" card (index.html) ke liye animation */
.place-card.animate-in {
    /* forwards state ka matlab hai ki animation rukne ke baad 'to' state par hi rahega */
    animation: fadeInSlideUp 0.4s ease-out forwards;
}


/* 2. "Destination" page (destination.html) ke liye animation */

/* Pehle images ko hide karein */
.masonry-grid img {
    opacity: 0;
}

/* Animation trigger class */
.masonry-grid img.animate-in {
    animation: fadeInSlideUp 0.5s ease-out forwards;
    animation-delay: calc(var(--i) * 50ms);
    opacity: 1;
    /* Animation ko visible karega */
}


/* ======== 8. SKELETON LOADER (DESTINATION PAGE) ======== */
.image-wrapper {
    display: block;
    /* Zaroori hai column layout ke liye */
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    /* Radius ko maintain karega */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
    0% {
        background-color: #eee;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #eee;
    }
}

.image-wrapper.skeleton-loading {
    min-height: 250px;
    /* Placeholder height */
    animation: pulse 1.5s infinite ease-in-out;
}


/* ======== PLACE CARD — PRICE & TRIP DETAILS [START] ======== */

/* Details row (duration + price) inside place card */
.place-card-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.place-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

.place-detail i {
    font-size: 0.85rem;
}

/* Price pill — accent color tint */
.place-detail.place-price {
    background: rgba(192, 21, 15, 0.75);
    color: #fff;
}

/* Desktop: hide details by default, show on hover */
@media (min-width: 601px) {
    .place-card-details {
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .place-card:hover .place-card-details {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile: always show details */
@media (max-width: 600px) {
    .place-card-details {
        opacity: 1;
        transform: none;
        margin-top: 0.4rem;
    }

    /* Make card content taller so details are visible */
    .place-card-content {
        padding: 1rem;
    }

    .place-card-content h3 {
        font-size: 1.4rem;
    }

    .place-card-content span {
        font-size: 0.8rem;
    }
}

/* ======== PLACE CARD — PRICE & TRIP DETAILS [END] ======== */

/* ======== PACKAGES PAGE — HIGHLIGHT TAGS [START] ======== */

.pkg-highlights-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.4rem 0;
}

.pkg-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-accent);
    background: rgba(192, 21, 15, 0.08);
    border: 1px solid rgba(192, 21, 15, 0.2);
    padding: 0.18rem 0.55rem;
    border-radius: 1rem;
    white-space: nowrap;
}

.pkg-highlight-tag i {
    font-size: 0.75rem;
    color: var(--color-accent);
}
.pkg-inc-more {
    color: var(--color-text-secondary);
    background: var(--color-background-secondary);
    border: 1px dashed var(--color-border);
    font-style: italic;
}

/* Duration badge on thumbnail */
.pkg-duration-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pkg-duration-badge i {
    font-size: 0.8rem;
}

/* ======== PACKAGES PAGE — HIGHLIGHT TAGS [END] ======== */


/* ======== NAVBAR LOGO IMAGE ======== */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 155px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.06);
}

/* No filter needed — transparent logo works on both hero and scrolled navbar */
.navbar-scrolled .nav-logo-img {
    filter: none;
}

/* Phone CTA button — fit number on smaller screens */
.nav-button.cta-button i {
    vertical-align: middle;
    margin-right: 0.25rem;
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 155px;
        width: auto;
        max-width: 130px;
    }
}


/* ======================================================
   HOME PAGE — PACKAGES SECTION
   ====================================================== */

.home-packages-section {
    padding: 1rem 0;
    background: var(--color-background-secondary);
}

/* Header */
.home-pkg-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}
.home-pkg-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-primary);
    /* line-height: 1.3; */
    margin-bottom: 0.75rem;
}
.home-pkg-header p {
    color: var(--color-text-secondary);
    /* line-height: 1.6; */
}

/* Filter row */
.home-pkg-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Dropdown wrapper */
.home-pkg-dropdown-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}
.home-pkg-dropdown {
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    background: var(--color-background);
    border: 1.5px solid var(--color-border);
    border-radius: 2rem;
    padding: 0.65rem 2.8rem 0.65rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.25s;
    min-width: 180px;
}
.home-pkg-dropdown:focus {
    outline: none;
    border-color: var(--color-accent);
}
.home-pkg-dropdown-icon {
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
    color: var(--color-accent);
    pointer-events: none;
}

/* Count */
.home-pkg-count {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}
.home-pkg-count span {
    font-weight: 700;
    color: var(--color-accent);
}

/* Grid — 3 cols desktop, 2 tablet, 1 mobile */
.home-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* ── Card ── */
.hpkg-card {
    background: var(--color-background);
    border-radius: 1.25rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hpkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

/* Grid — equal height per row */
.home-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* Body — no overflow:hidden, just natural flex */
.hpkg-body {
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

/* Pills — max 2 rows then hide overflow */
.hpkg-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

/* Includes */
.hpkg-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
}

/* Dates — fixed scrollable height */
.hpkg-dates {
    background: var(--color-background-secondary);
    border-radius: 0.65rem;
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    /* line-height: 1.85; */
    height: 88px;
    overflow-y: auto;
    scrollbar-width: thin;
    flex-shrink: 0;
}
.hpkg-dates .dr { display: flex; align-items: center; gap: 0.35rem; }
.hpkg-dates .dr i { font-size: 0.78rem; color: var(--color-accent); }

/* Itinerary */
.hpkg-itinerary {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}

/* Footer always at bottom */
.hpkg-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: stretch;
}

/* Thumb */
.hpkg-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.hpkg-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hpkg-card:hover .hpkg-thumb img { transform: scale(1.05); }

/* Tag badge */
.hpkg-tag {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 1rem;
}
/* Duration badge */
.hpkg-dur {
    position: absolute;
    bottom: 0.75rem; left: 0.75rem;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.22rem 0.65rem;
    border-radius: 1rem;
    display: flex; align-items: center; gap: 0.3rem;
}

/* Body */
.hpkg-body {
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.hpkg-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--color-text-primary);
    /* line-height: 1.35; */
}
.hpkg-loc {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    display: flex; align-items: center; gap: 0.3rem;
}
.hpkg-loc i { color: var(--color-accent); font-size: 0.9rem; }

/* Transport + stay pills */
.hpkg-pills {
    display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.hpkg-pill {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.72rem; font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-background-secondary);
    border: 1px solid var(--color-border);
    padding: 0.18rem 0.55rem;
    border-radius: 1rem;
}
.hpkg-pill i { font-size: 0.78rem; color: var(--color-accent); }

/* Includes list */
.hpkg-includes {
    display: flex; flex-wrap: wrap; gap: 0.3rem;
}
.hpkg-inc-item {
    display: inline-flex; align-items: center; gap: 0.22rem;
    font-size: 0.71rem; font-weight: 500;
    color: #2a7a4b;
    background: #e8f7ee;
    border-radius: 1rem;
    padding: 0.15rem 0.5rem;
}
.hpkg-inc-item i { font-size: 0.75rem; }
.hpkg-inc-more {
    color: var(--color-text-secondary);
    background: var(--color-background-secondary);
    border: 1px dashed var(--color-border);
    font-style: italic;
}

/* Itinerary accordion (collapsible) */
.hpkg-itinerary {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
}
.hpkg-itin-toggle {
    width: 100%;
    background: var(--color-background-secondary);
    border: none;
    padding: 0.6rem 0.85rem;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
}
.hpkg-itin-toggle:hover { background: #eaeef8; }
.hpkg-itin-toggle i { font-size: 1rem; color: var(--color-accent); transition: transform 0.3s; }
.hpkg-itin-toggle.open i { transform: rotate(180deg); }

.hpkg-itin-body {
    display: none;
    padding: 0.6rem 0.85rem 0.75rem;
}
.hpkg-itin-body.open { display: block; }

.hpkg-itin-day {
    display: flex; gap: 0.6rem;
    padding: 0.45rem 0;
    border-bottom: 1px dashed var(--color-border);
}
.hpkg-itin-day:last-child { border-bottom: none; }
.hpkg-day-label {
    font-size: 0.7rem; font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap; min-width: 42px;
    padding-top: 2px;
}
.hpkg-day-text { font-size: 0.75rem; color: var(--color-text-secondary); 
    /* line-height: 1.5;  */
}
.hpkg-day-text strong { color: var(--color-text-primary); display: block; margin-bottom: 2px; }

/* Dates list */
.hpkg-dates {
    background: var(--color-background-secondary);
    border-radius: 0.65rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    /* line-height: 1.9; */
    max-height: 80px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.hpkg-dates .dr { display: flex; align-items: center; gap: 0.35rem; }
.hpkg-dates .dr i { font-size: 0.78rem; color: var(--color-accent); }

/* Price options — always horizontal, compact */
.hpkg-price-opts {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
}

.hpkg-price-opt {
    flex: 1;
    background: var(--color-background-secondary);
    border: 1.5px solid var(--color-border);
    border-radius: 0.65rem;
    padding: 0.35rem 0.4rem;
    text-align: center;
    min-width: 0;
}

.hpkg-price-opt .opt-type {
    font-size: 0.6rem;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hpkg-price-opt .opt-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    white-space: nowrap;
}

.hpkg-price-opt .opt-original {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    margin-right: 0.25rem;
}

/* Single price */
.hpkg-price-single {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    padding: 0.35rem 0;
}

.hpkg-price-single strong {
    font-size: 1rem;
    color: var(--color-accent);
}

/* Footer CTA — always at bottom, full width button */
.hpkg-footer {
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: stretch;
}

.hpkg-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #25D366;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    width: 100%;
}

.hpkg-book-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.hpkg-book-btn i { font-size: 1rem; }

/* Empty state */
.home-pkg-empty {
    text-align: center; padding: 3rem 1rem;
    color: var(--color-text-secondary);
}
.home-pkg-empty i { font-size: 2.5rem; color: var(--color-accent); display: block; margin-bottom: 0.75rem; }

/* View all button row */
.home-pkg-viewall {
    text-align: center; margin-top: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .home-pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .home-pkg-header h2 { font-size: 2rem; }
}
@media (max-width: 600px) {
    .home-pkg-grid { grid-template-columns: 1fr; }
    .home-pkg-header h2 { font-size: 1.25rem; }
    .home-pkg-filters { flex-direction: column; align-items: flex-start; }
    .home-pkg-dropdown { width: 100%; min-width: unset; }
    .home-pkg-dropdown-wrap { width: 100%; }
    .hpkg-price-opts { flex-direction: column; }
    .hpkg-price-opt { min-width: unset; }
}


/* ============================================================
   MOBILE PREMIUM OVERRIDES  (max-width: 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* ── Hero text smaller & tighter ── */
  .hero-content h1 {
    font-size: 2rem;
    /* line-height: 1.2; */
    margin-bottom: 0.4rem;
  }
  .hero-content p {
    font-size: 0.82rem;
  }

  /* ── Booking form: single-column stack ── */
  .booking-form-container {
    padding: 0 0.75rem;
    margin-bottom: 3rem;
  }
  .booking-form {
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
  .form-group {
    flex-basis: 100%;
    padding: 0.65rem 1rem;
    border-right: none !important;
    border-bottom: 1px solid #eee;
  }
  .form-group:last-of-type {
    border-bottom: none;
  }
  .form-group label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #aaa;
    margin-left: 0;
  }
  .form-group input {
    font-size: 0.85rem;
    padding: 0.15rem 0;
  }
  .form-submit-btn {
    width: 100%;
    height: 48px;
    border-radius: 0 0 1.25rem 1.25rem;
    border-top: none;
  }
  .form-submit-btn::after {
    content: " Search";
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.88rem;
  }

  /* ── Places search bar ── */
  .places-search input {
    font-size: 0.85rem;
    padding: 0.85rem 1.1rem 0.85rem 3rem;
  }

  /* ── Filter buttons ── */
  .filter-btn {
    font-size: 0.75rem;
    padding: 0.45rem 0.9rem;
  }

  /* ── Section headings ── */
  .popular-header-text h2,
  .places-header h2,
  .testimonial-header h2,
  .faq-header h2,
  .app-download-header h2,
  .home-pkg-header h2 {
    font-size: 1.4rem;
  }

  /* ── Section paragraphs ── */
  .popular-header-text p,
  .places-header p,
  .testimonial-header p,
  .faq-header p,
  .app-download-header p,
  .home-pkg-header p {
    font-size: 0.82rem;
  }

  /* ── Place cards ── */
  .place-card { min-height: 240px; }
  .place-card-content h3 { font-size: 1.2rem; }
  .place-card-content span { font-size: 0.72rem; }
  .place-detail { font-size: 0.7rem; }

  /* ── Popular cards ── */
  .popular-card-content h3 { font-size: 1.4rem; }
  .popular-card-content p  { font-size: 0.78rem; }

  /* ── Packages cards ── */
  .hpkg-body { padding: 0.9rem; }
  .hpkg-title { font-size: 0.88rem; }
  .hpkg-loc   { font-size: 0.75rem; }
  .hpkg-pill  { font-size: 0.68rem; }
  .hpkg-inc-item { font-size: 0.68rem; }
  .hpkg-price-opt .opt-type { font-size: 0.64rem; }
  .hpkg-price-opt .opt-val  { font-size: 0.82rem; }
  .hpkg-price-single { font-size: 0.78rem; }
  .hpkg-book-btn { font-size: 0.78rem; padding: 0.5rem 1rem; }
  .hpkg-dates { font-size: 0.73rem; }
  .hpkg-itin-toggle { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .hpkg-day-label { font-size: 0.65rem; }
  .hpkg-day-text  { font-size: 0.7rem; }

  /* ── pkg-card (packages page) ── */
  .pkg-title { font-size: 0.88rem; }
  .pkg-meta  { font-size: 0.75rem; }
  .pkg-highlight-tag { font-size: 0.66rem; }
  .pkg-dates { font-size: 0.73rem; }
  .pkg-price-value { font-size: 0.95rem; }
  .pkg-price-label { font-size: 0.68rem; }
  .pkg-book-btn { font-size: 0.78rem; padding: 0.5rem 1rem; }

  /* ── FAQ ── */
  .faq-question { font-size: 0.88rem; padding: 1.1rem; }
  .faq-answer p { font-size: 0.82rem; }

  /* ── Testimonial ── */
  .review-text  { font-size: 1.1rem; }
  .client-name  { font-size: 1.2rem; }

  /* ── Footer compact ── */
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
  .footer-col-logo,
  .footer-col:not(.footer-col-logo):not(.footer-col-newsletter),
  .footer-col-newsletter {
    grid-column: span 1 !important;
  }
  .footer-logo { font-size: 1.4rem; }
  .footer-col h4 { font-size: 0.9rem; }
  .footer-col ul a,
  .footer-col p,
  .copyright-text { font-size: 0.78rem; }

  /* ── Navbar ── */
  .cta-button { padding: 0.55rem 0.9rem; font-size: 0.78rem; }
  .nav-logo-img { height: 40px; width: auto; max-width: 120px; }
}


/* ============================================================
   MOBILE STICKY BOTTOM NAVIGATION
   ============================================================ */

/* Drawer & overlay — hidden by default globally */
.mbn-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-radius: 20px 20px 0 0;
    z-index: 9999;
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0.35s;
    max-height: 80vh;
    overflow-y: auto;
}
.mbn-drawer.open {
    transform: translateY(0);
    visibility: visible;
}
.mbn-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
    backdrop-filter: blur(2px);
}
.mbn-overlay.open { display: block; }
.mobile-bottom-nav { display: none; }

@media (max-width: 768px) {

    body { padding-bottom: 72px; }

    /* ── Bar ── */
    .mobile-bottom-nav {
        display: flex;
        align-items: center;
        justify-content: space-around;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: 62px;
        background: #111;
        border-top: 1px solid #1f1f1f;
        z-index: 9999;
        padding: 0 6px;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
    }

    /* ── Each item ── */
    .mbn-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex: 1;
        color: #888;
        font-size: 0.58rem;
        font-family: var(--font-primary);
        font-weight: 600;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px 2px 6px;
        transition: color 0.2s;
    }
    .mbn-item i { font-size: 1.25rem;
         /* line-height: 1;  */
        }
    .mbn-item.mbn-active,
    .mbn-item:hover { color: #fff; }

    /* ── WhatsApp bubble ── */
    .mbn-item.mbn-wa { flex: 1.4; color: #888; }
    .mbn-wa-bubble {
        width: 52px; height: 52px;
        background: #25D366;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin-top: -28px;
        border: 3px solid #111;
        box-shadow: 0 4px 18px rgba(37,211,102,0.55);
        transition: transform 0.2s;
    }
    .mbn-wa-bubble i { font-size: 1.65rem; color: #fff; }
    .mbn-item.mbn-wa span { color: #25D366; margin-top: 4px; }
    .mbn-item.mbn-wa:active .mbn-wa-bubble { transform: scale(1.08); }

    /* ── Drawer: position above bottom nav ── */
    .mbn-drawer { bottom: 62px; }

    /* ── Drawer inner ── */
    .mbn-drawer-inner { padding: 1.1rem 1.25rem 1.5rem; }
    .mbn-drawer-header {
        display: flex; align-items: center; justify-content: space-between;
        margin-bottom: 1.1rem; padding-bottom: 0.9rem;
        border-bottom: 1px solid #222;
    }
    .mbn-drawer-logo { height: 125px; width: auto; max-width: 140px; border-radius: 0; display: none; }
    .mbn-drawer-close {
        background: #222; border: none; color: #fff;
        width: 38px; height: 38px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; font-size: 1.3rem;
    }
    .mbn-drawer-links { display: flex; flex-direction: column; gap: 0.15rem; }
    .mbn-drawer-links a {
        display: flex; align-items: center; gap: 0.85rem;
        color: #ccc; font-size: 0.92rem; font-weight: 500;
        padding: 0.7rem 0.5rem; border-radius: 0.75rem;
        transition: background 0.2s, color 0.2s; text-decoration: none;
    }
    .mbn-drawer-links a:active,
    .mbn-drawer-links a:hover { background: #1f1f1f; color: #fff; }
    .mbn-drawer-links a i { font-size: 1.15rem; color: var(--color-accent); width: 22px; text-align: center; }
    .mbn-drawer-links a:last-child i { color: #25D366; }

    /* ── Hide top navbar hamburger — bottom nav Menu handles it ── */
    .navbar .hamburger { display: none !important; }
    .nav-menu-mobile   { display: none !important; }

    /* ── Show navbar but slim it down — logo only on mobile ── */
    .navbar {
        display: flex !important;
        height: 56px;
        /* background: rgba(0,0,0,0.6) !important; */
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-scrolled {
        background: #fff !important;
        border-bottom: 1px solid var(--color-border) !important;
    }
    /* Hide desktop nav links & CTA button on mobile */
    .nav-menu-desktop { display: none !important; }
    .nav-button.cta-button { display: none !important; }

    /* ── Hero ── */
    .hero-content h1 { font-size: 1rem; 
        /* line-height: 2rem;  */
        padding: 0 0.5rem; }
    .hero-content p  { font-size: 0.8rem; padding: 0 1rem; }
    .bottom-info-left h2 { font-size: 1.25rem; }
    .bottom-info-left p  { font-size: 0.73rem; }

    /* ── Popular ── */
    .popular-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .popular-header-text h2 { font-size: 1.25rem; 
        /* line-height: 2;  */
    }
    .popular-header-text p  { font-size: 0.76rem; }
    .popular-grid { grid-template-columns: 1fr !important; }
    .popular-card { grid-column: span 1 !important; min-height: 210px; }
    .popular-card-content h3 { font-size: 1.15rem; }
    .popular-card-content p  { font-size: 0.72rem; }
       .popular-section{
         padding-top: 2rem;
         padding-bottom: 2rem;
       }
       .places-section{
        padding-top: 2rem;
         padding-bottom: 2rem;
       }
       .testimonial-section{
         padding-top: 2rem;
         padding-bottom: 2rem;
       }
       .testimonial-button-container{
        margin-top: 2rem;
       }
       .faq-section{
          padding-top: 2rem;
         padding-bottom: 2rem;
       }
       .footer-section{
        padding-top: 2rem;
       }
    /* ── Places ── */
    .places-header h2 { font-size: 1.25rem; 
        /* line-height: 2;  */
    }
    .places-header p  { font-size: 0.76rem; }
    .places-grid { grid-template-columns: 1fr 1fr !important; }
    .place-card { min-height: 175px; }
    .place-card-content h3 { font-size: 0.65rem; font-weight: 400; }
    .place-card-content span { font-size: 0.66rem; }
    .place-detail { font-size: 0.62rem; padding: 0.12rem 0.4rem; }
    .filter-btn { font-size: 0.7rem; padding: 0.38rem 0.75rem; }

    /* ── Packages ── */
    .home-pkg-header h2 { font-size: 1.25rem; }
    .home-pkg-header p  { font-size: 0.76rem; }
    .hpkg-body { padding: 0.85rem; }
    .hpkg-title { font-size: 0.86rem; }
    .hpkg-loc, .hpkg-pill, .hpkg-inc-item { font-size: 0.66rem; }
    .hpkg-price-opt .opt-type { font-size: 0.62rem; }
    .hpkg-price-opt .opt-val  { font-size: 0.8rem; }
    .hpkg-book-btn { font-size: 0.76rem; padding: 0.48rem 0.9rem; }

    /* ── FAQ ── */
    .faq-header h2 { font-size: 1.25rem;
         /* line-height: 2; */
         }
    .faq-header p  { font-size: 0.76rem; }
    .faq-question  { font-size: 0.83rem; padding: 0.95rem; }
    .faq-answer p  { font-size: 0.78rem; }
    .faq-header {margin: 0 auto 1.5rem auto;}

    /* ── Testimonial ── */
    .testimonial-header h2 { font-size: 1.25rem;
         /* line-height: 2;  */
        }
    .review-text { font-size: 0.95rem; }
    .client-name { font-size: 1.05rem; }

    /* ── App download ── */
    .app-download-header h2 { font-size: 1.35rem; }
    .app-buttons-container { flex-direction: column; align-items: stretch; }

    /* ── Footer ── */
    .footer-top { grid-template-columns: 1fr !important; gap: 1.1rem; }
    .footer-col-logo, .footer-col, .footer-col-newsletter { grid-column: span 1 !important; }
    .footer-logo { font-size: 1.25rem; }
    .footer-col h4, .footer-col ul a, .footer-col p, .copyright-text { font-size: 0.73rem; }

    /* ── Packages page ── */
    .packages-header h1 { font-size: 1.5rem; }
    .packages-header p  { font-size: 0.76rem; }
    .packages-grid { grid-template-columns: 1fr !important; }
    .pkg-title { font-size: 0.83rem; }
    .month-btn { font-size: 0.7rem; padding: 0.38rem 0.8rem; }
}

/* ── Mobile navbar height adjustment ── */
@media (max-width: 768px) {
    :root { --navbar-height: 56px; }

    /* Logo centered on mobile top bar */
    .nav-container {
        justify-content: center;
    }
    .nav-logo-img {
        height: 155px;
        width: auto;
        max-width: 130px;
    }
}


/* ============================================================
   ABOUT US SECTION
   ============================================================ */

.about-section {
    padding: 5rem 0;
    background: var(--color-background);
}

/* ── Header ── */
.about-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.about-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(192,21,15,0.08);
    border: 1px solid rgba(192,21,15,0.2);
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.about-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-primary);
    /* line-height: 1.25; */
    margin-bottom: 1rem;
}

.about-header p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    /* line-height: 1.7; */
}

/* ── Main 2-col ── */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* ── Image block ── */
.about-images {
    position: relative;
    min-height: 420px;
}

.about-img-big {
    width: 85%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
    display: block;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.about-img-small {
    width: 55%;
    height: 220px;
    object-fit: cover;
    border-radius: 1.25rem;
    position: absolute;
    bottom: -2rem;
    right: 0;
    border: 5px solid var(--color-background);
    box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}

/* ── Content ── */
.about-desc {
    color: var(--color-text-secondary);
    font-size: 0.97rem;
    /* line-height: 1.75; */
    margin-bottom: 2rem;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-background-secondary);
    border-radius: 1.25rem;
}

.about-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    /* line-height: 1; */
    margin-bottom: 0.3rem;
}

.stat-plus {
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Why us */
.about-why {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.about-why li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.about-why li i {
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-cta i { font-size: 1.1rem; }

/* ── Value cards row ── */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    background: var(--color-background-secondary);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.avc-icon {
    width: 60px;
    height: 60px;
    background: rgba(192,21,15,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.avc-icon i {
    font-size: 1.6rem;
    color: var(--color-accent);
}

.about-value-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.6rem;
}

.about-value-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    /* line-height: 1.65; */
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-main { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { min-height: 320px; }
    .about-img-big { width: 100%; height: 320px; }
    .about-img-small { width: 45%; height: 180px; bottom: -1.5rem; }
    .about-stats { grid-template-columns: repeat(4, 1fr); }
    .about-values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .about-header h2 { font-size: 1.6rem; }
    .about-header p  { font-size: 0.85rem; }
    .about-images { min-height: 240px; }
    .about-img-big  { height: 240px; }
    .about-img-small { width: 48%; height: 140px; bottom: -1rem; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1rem; }
    .stat-num { font-size: 1.4rem; }
    .stat-label { font-size: 0.65rem; }
    .about-why li { font-size: 0.82rem; }
    .about-values { grid-template-columns: 1fr; }
    .about-desc { font-size: 0.88rem; }
}


/* ============================================================
   PACKAGES SEARCH BAR — PREMIUM + AUTOCOMPLETE
   ============================================================ */

/* Filter row — stack search full width on top */
.home-pkg-filters {
    flex-direction: column;
    gap: 0.85rem;
    align-items: stretch;
}

/* ── Search wrapper ── */
.home-pkg-search-wrap {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.pkg-search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--color-accent);
    pointer-events: none;
    z-index: 2;
}

#home-pkg-search {
    width: 100%;
    height: 54px;
    padding: 0 3rem 0 3rem;
    border: 2px solid var(--color-border);
    border-radius: 2rem;
    background: var(--color-background);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

#home-pkg-search:focus {
    border-color: var(--color-accent);
    box-shadow: 0 4px 24px rgba(192,21,15,0.12);
}

#home-pkg-search::placeholder {
    color: #bbb;
}

/* Clear button */
.pkg-search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #eee;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: background 0.2s;
    z-index: 2;
}
.pkg-search-clear:hover { background: #ddd; }

/* ── Autocomplete dropdown ── */
.pkg-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--color-background);
    border: 1.5px solid var(--color-border);
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 999;
    overflow: hidden;
    display: none;
}

.pkg-suggestions.show { display: block; }

.pkg-suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f5f5f5;
}

.pkg-suggestion-item:last-child { border-bottom: none; }

.pkg-suggestion-item:hover,
.pkg-suggestion-item.active {
    background: rgba(192,21,15,0.05);
}

.sug-thumb {
    width: 44px;
    height: 44px;
    border-radius: 0.6rem;
    object-fit: cover;
    flex-shrink: 0;
}

.sug-info { flex: 1; min-width: 0; }

.sug-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sug-title mark {
    background: transparent;
    color: var(--color-accent);
    font-weight: 800;
}

.sug-meta {
    font-size: 0.73rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1px;
}

.sug-price {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.pkg-sug-empty {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    #home-pkg-search { height: 48px; font-size: 0.85rem; }
    .sug-thumb { width: 36px; height: 36px; }
    .sug-title { font-size: 0.82rem; }
    .sug-meta  { font-size: 0.68rem; }
}


/* ── Dropdown + count row fix ── */
.home-pkg-filter-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
}



.home-pkg-dropdown {
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    background: var(--color-background);
    border: 1.5px solid var(--color-border);
    border-radius: 2rem;
    padding: 0.65rem 2.8rem 0.65rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.25s;
    min-width: 180px;
    width: auto;
}

.home-pkg-dropdown:focus {
    outline: none;
    border-color: var(--color-accent);
}

.home-pkg-dropdown-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--color-accent);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 600px) {
    .home-pkg-filter-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-pkg-dropdown-wrap,
    .home-pkg-dropdown { width: 100%; }
}


/* ── View Details button (on package cards) ── */
.hpkg-footer,
.pkg-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hpkg-details-btn,
.pkg-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.55rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--color-background-secondary);
    color: var(--color-text-primary);
    border: 1.5px solid var(--color-border);
    transition: background 0.2s, border-color 0.2s;
}

.hpkg-details-btn:hover,
.pkg-details-btn:hover {
    background: var(--color-border);
    border-color: var(--color-text-secondary);
}

.hpkg-details-btn i,
.pkg-details-btn i {
    font-size: 0.95rem;
}

/* Card hover lift */
.hpkg-card:hover,
.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}


/* ============================================================
   TESTIMONIAL — INDIAN STYLE WITH MINI CARDS
   ============================================================ */

/* Trip badge above review text */
.testimonial-trip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(192,21,15,0.08);
    border: 1px solid rgba(192,21,15,0.2);
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

/* Mini review cards row */
.testimonial-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.tcard {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.tcard-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-accent);
}

.tcard-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: 0.03em;
}

.tcard-loc {
    font-size: 0.72rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2px;
}

.tcard-stars {
    margin-left: auto;
    display: flex;
    gap: 2px;
    color: #f5a623;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.tcard-text {
    font-size: 0.83rem;
    color: var(--color-text-secondary);
    /* line-height: 1.65; */
    flex: 1;
    font-style: italic;
}

.tcard-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(192,21,15,0.07);
    border-radius: 1rem;
    padding: 0.2rem 0.6rem;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-cards-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .testimonial-cards-row { grid-template-columns: 1fr; }
    .tcard-text { font-size: 0.8rem; }
}
