/* ==========================================================================
   Global Style Start
   ========================================================================== */

:root {
    /* Color Palette (Monochrome Grayscale) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #0d0d0d;

    --text-main: #111111;
    --text-muted: #555555;
    --text-light: #f5f5f5;

    --border-light: rgba(255, 255, 255, 0.2);
    --border-dark: #2a2a2a;

    /* Grayscale shades for widgets/tabs */
    --bg-pill-container: rgba(255, 255, 255, 0.15);
    --bg-active-gray: rgba(0, 0, 0, 0.06);
    --bg-active-dark-gray: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;

    /* Border Radius Consistency */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Reusable Container capped at 1400px maximum */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.section-padding {
    padding: 80px 0;
}

/* Reusable Section Headers */
.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    letter-spacing: -0.5px;
}

/* Reusable Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #222222;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Global Style End */

/* ==========================================================================
   1. Navigation Section Start (Floating Elastic Glassmorphic UI)
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: transparent;
    border-bottom: none;
    pointer-events: none;
    transition: all 0.35s ease;
}

.navbar {
    width: 100%;
    max-width: 1400px;
    padding: 24px 40px;
    margin-top: 0;
    background: transparent;
    border: 1px solid transparent;
    pointer-events: auto;
    transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Teeno hisso ko side-by-side barabar bant dega */
}

/* Scrolled State: Floating Pill Navbar */
.site-header.scrolled .navbar {
    max-width: 1300px;
    margin-top: 16px;
    padding: 10px 24px;

    /* Crystal Glassmorphism Background */
    background: rgba(13, 13, 13, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);

    /* Subtle Glowing Glass Border */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);

    /* Deep Floating Shadow */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Dual Font Text Logo Styles */
.nav-logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    user-select: none;
}

.logo-yatra {
    font-family: var(--font-body);
    /* DM Sans */
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.logo-way {
    font-family: var(--font-heading);
    /* Playfair Display */
    font-size: 1.55rem;
    font-weight: 600;
    font-style: italic;
    /* Elegant Italic Serif */
    color: var(--text-light);
    margin-left: 3px;
}

/* Pill Navigation Links Menu */
.nav-menu-wrapper {
    /* background-color: rgba(255, 255, 255, 0.95); */
    padding: 5px;
    border-radius: var(--radius-full);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* .site-header.scrolled .nav-menu-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
} */

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    position: relative;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: color var(--transition-fast);
}

.nav-active-pill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--bg-active-gray);
    border-radius: var(--radius-full);
    z-index: 1;
    transition: all var(--transition-smooth);
    pointer-events: none;
}

.nav-link.active {
    color: var(--text-main);
}

/* Shimmer CTA Button styling inside Navbar */
.nav-action {
    display: flex;
    align-items: center;
}

.nav-shimmer-btn {
    width: 145px !important;
    padding: 10px 0 !important;
    margin-top: 0 !important;
}

.nav-shimmer-btn .btn-content {
    font-size: 0.9rem !important;
}

/* Navigation Section End */

/* ==========================================================================
   1. Hero Section Start (Fixed Stacking Context)
   ========================================================================== */

.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background-image 0.5s ease;
    z-index: 10;
    /* CRITICAL FIX: Higher than next section so dropdown floats freely */
    overflow: visible !important;
}

.hero-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 20;
    /* High Z-index */
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: visible !important;
}

.hero-section {
    width: 100%;
    padding: 100px 0 60px 0;
    /* Top padding adjusted since navbar is fixed */
    overflow: visible !important;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 60px;
    align-items: flex-end;
}

/* Left Content Styles */
.hero-content {
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-primary);
    color: var(--text-main);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Live green dot pulsing animation */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: var(--radius-full);
    position: relative;
}

.live-dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #10b981;
    border-radius: var(--radius-full);
    top: 0;
    left: 0;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.75rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    font-weight: 400;
}

/* Right Glassmorphism Booking Card Styles */
.hero-form-container {
    position: relative;
    z-index: 100;
    /* Keeps booking card above everything */
}

.booking-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
    overflow: visible !important;
    /* CRITICAL to prevent clipping */
}

.form-heading {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 18px;
    font-weight: 500;
}

/* Tab controls layout code */
.form-tabs-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: var(--radius-md);
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color var(--transition-fast);
}

.tab-btn.active {
    color: var(--text-main);
}

.tab-active-pill {
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-sm);
    z-index: 1;
    transition: all var(--transition-smooth);
    -webkit-border-radius: var(--radius-sm);
    -moz-border-radius: var(--radius-sm);
    -ms-border-radius: var(--radius-sm);
    -o-border-radius: var(--radius-sm);
}

/* Input structures and design wrapper */
.booking-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 110;
}

.booking-form-fields .form-explore-btn {
    --radius: var(--radius-md);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.input-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: text;
    transition: box-shadow var(--transition-fast);
}

.input-wrapper:focus-within {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.input-icon {
    color: var(--text-muted);
    font-size: 1.25rem;
    user-select: none;
}

.input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
}

.input-wrapper input::placeholder {
    color: #999999;
    transition: opacity 0.3s ease;
}

/* Side-by-Side Date Row Configuration */
.date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.date-picker-trigger,
#guests-trigger {
    cursor: pointer;
    user-select: none;
}

.date-display-text,
.guests-display-text {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Custom Popup Datepicker UI */
.custom-datepicker {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    z-index: 99999;
    /* Super High Z-Index to prevent clipping */
    display: none;
}

.custom-datepicker.show {
    display: block;
}

.datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.datepicker-header h4 {
    font-size: 1rem;
}

.calendar-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-main);
}

.datepicker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.datepicker-day {
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.datepicker-day:hover:not(.disabled) {
    background-color: var(--bg-active-gray);
}

.datepicker-day.disabled {
    color: #dddddd;
    cursor: not-allowed;
}

.datepicker-day.selected {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.datepicker-day.in-range {
    background-color: #f0f0f0;
}

/* Guests Popup Configurations */
.guests-popup {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    z-index: 99999;
    /* Super High Z-Index to prevent clipping */
    display: none;
    flex-direction: column;
    gap: 16px;
}

.guests-popup.show {
    display: flex;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter-info {
    display: flex;
    flex-direction: column;
}

.counter-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.counter-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    border: 1px solid #e0e0e0;
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.counter-btn:hover {
    background-color: var(--bg-secondary);
}

.counter-value {
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

.apply-guests-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.85rem;
}

/* =========================================
   Shimmer Button Component & Animation
========================================= */
.shimmer-btn {
    --spread: 90deg;
    --shimmer-color: #ffffff;
    --radius: var(--radius-full);
    --speed: 3s;
    --cut: 0.06em;
    --bg: #0d0d0d;

    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    margin-top: 8px;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--bg);
    color: #ffffff;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.2),
        0 10px 10px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    outline: none;
}

.shimmer-btn:active {
    transform: translateY(1px);
}

.spark-container {
    position: absolute;
    inset: 0;
    z-index: -3;
    filter: blur(2px);
    overflow: visible;
    container-type: size;
}

.spark-slide {
    position: absolute;
    inset: 0;
    aspect-ratio: 1;
    height: 100cqh;
    animation: shimmer-slide var(--speed) ease-in-out infinite alternate;
}

.spark-spin {
    position: absolute;
    inset: -100%;
    width: auto;
    background: conic-gradient(from calc(270deg - (var(--spread) * 0.5)),
            transparent 0,
            var(--shimmer-color) var(--spread),
            transparent var(--spread));
    animation: spin-around calc(var(--speed) * 2) infinite linear;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: #ffffff;
}

.btn-content .material-symbols-rounded {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.shimmer-btn:hover .btn-content .material-symbols-rounded {
    transform: translateX(4px);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    box-shadow: inset 0 -8px 10px rgba(255, 255, 255, 0.12);
    transition: box-shadow 0.3s ease-in-out;
    pointer-events: none;
}

.shimmer-btn:hover .highlight-overlay {
    box-shadow: inset 0 -6px 10px rgba(255, 255, 255, 0.25);
}

.shimmer-btn:active .highlight-overlay {
    box-shadow: inset 0 -10px 10px rgba(255, 255, 255, 0.25);
}

.backdrop {
    position: absolute;
    inset: var(--cut);
    z-index: -2;
    border-radius: var(--radius);
    background-color: var(--bg);
}

.hover-gradient {
    position: absolute;
    inset: var(--cut);
    z-index: -1;
    border-radius: var(--radius);
    background: linear-gradient(to bottom, #0d0d0d, #2a2a2a);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.shimmer-btn:hover .hover-gradient {
    opacity: 1;
}

@keyframes shimmer-slide {
    to {
        transform: translate(calc(100cqw - 100%), 0);
    }
}

@keyframes spin-around {
    0% {
        transform: translateZ(0) rotate(0);
    }

    15%,
    35% {
        transform: translateZ(0) rotate(90deg);
    }

    65%,
    85% {
        transform: translateZ(0) rotate(270deg);
    }

    100% {
        transform: translateZ(0) rotate(360deg);
    }
}

/* Hero Section End */

/* ==========================================================================
   2. Who we are Section Start
   ========================================================================== */

.who-we-are-section {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 1;
    /* CRITICAL FIX: Kept lower than hero section so hero dropdown overlaps this cleanly */
}

.who-header {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-secondary);
    border: 1px solid #eaeaea;
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
}

.who-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.who-statement {
    font-family: var(--font-heading);
    font-size: 2.45rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #777777;
    letter-spacing: -0.3px;
}

.who-statement .text-dark {
    color: var(--text-main);
    font-weight: 400;
}

/* Who we are Section End */

/* ==========================================================================
   3. Our Achievements Section Start
   ========================================================================== */

.achievements-section {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 5;
}

.achievements-header {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

/* Desktop Grid: 5 Equal Columns in 1 Row */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

/* Almost-Square Card Design */
.achievement-card {
    background: var(--bg-secondary);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    aspect-ratio: 1 / 0.92;
    /* Keeps them almost square */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all var(--transition-fast);
}

.achievement-card:hover {
    background: var(--bg-primary);
    border-color: var(--border-dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

/* Large Digit Typography */
.achievement-number {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
}

/* Suffix (M+, K+, %) */
.achievement-suffix {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Subtext underneath the digits */
.achievement-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Our Achievements Section End */

/* ==========================================================================
   4. Deals Section Start
   ========================================================================== */

.deals-section {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 5;
}

.deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.deals-title {
    font-size: 2.75rem;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 300;
    /* font-family: var(--font-body); */
}

/* Grayish Border & White Background CTA Button */
.deals-cta-btn {
    background-color: var(--bg-primary);
    border: 1px solid #cccccc;
    color: var(--text-main);
    padding: 12px 28px;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-fast);
}

.deals-cta-btn:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

.deals-cta-btn .material-symbols-rounded {
    font-size: 1.2rem;
    transition: transform 0.25s ease;
}

.deals-cta-btn:hover .material-symbols-rounded {
    transform: translateX(4px);
}

.deals-mobile-action {
    display: none;
    /* Hidden on Desktop */
}

/* Desktop Grid: 2 Columns Side by Side */
.deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
}

/* Wide Rectangular Card Design */
.deal-card {
    position: relative;
    border-radius: var(--radius-lg);
    min-height: 320px;
    /* Wide rectangle proportions */
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deal-card:hover {
    transform: translateY(-5px);
}

/* Natural Dark Tint over image for perfect text legibility (No Gradients) */
.deal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.176);
    z-index: 1;
}

/* Card Top Section Layout */
.deal-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* Round Yellow Icon Container (#F5CB44) */
.deal-icon-circle {
    width: 48px;
    height: 48px;
    background-color: #f5cb44;
    color: var(--bg-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(245, 203, 68, 0.35);
}

.deal-icon-circle .material-symbols-rounded {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Top Right Glassmorphic Pill Validity Badge */
.deal-validity-pill {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Card Bottom Content Area */
.deal-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deal-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Big Yellow Discount Typography */
.deal-discount {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: #f5cb44;
    line-height: 1;
    margin: 4px 0;
}

.deal-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Deals Section End */

/* ==========================================================================
   5. Destination Section Start
   ========================================================================== */

.destination-section {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 5;
}

.dest-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 36px;
}

.dest-title {
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.15;
    max-width: auto;
}

.dest-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.5;
}

/* Horizontal Sliding Badges Filter */
.dest-filters-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
    padding-bottom: 8px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dest-filters-wrapper::-webkit-scrollbar {
    display: none;
}

.dest-filters {
    display: flex;
    gap: 12px;
}

.filter-badge {
    background-color: var(--bg-secondary);
    border: 1px solid #e5e5e5;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.filter-badge:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

.filter-badge.active {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

/* Destination Grid Structure */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

/* Individual Destination Card */
.dest-card {
    display: flex;
    flex-direction: column;
    animation: fadeInScale 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(12px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Image Carousel Box */
.dest-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.82;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 18px;
    background-color: #f0f0f0;
}

.dest-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Hide Scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dest-carousel::-webkit-scrollbar {
    display: none;
}

.dest-carousel img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    user-select: none;
}

/* Save / Wishlist Button Top Right */
.save-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.save-btn:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.45);
}

.save-btn.saved {
    color: #ff4b4b;
    /* Red fill when saved */
}

.save-btn .material-symbols-rounded {
    font-size: 1.3rem;
}

/* Live Dotted Pagination inside image */
.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.45);
    transition: all var(--transition-fast);
}

.dot.active {
    width: 18px;
    /* Expanded pill dot matching screenshot */
    background-color: var(--bg-primary);
}

/* Card Content Styling */
.dest-card-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Exactly max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Metadata Row: Location | Date | Rating */
.dest-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.dest-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dest-meta-item .material-symbols-rounded {
    font-size: 1.1rem;
    color: #777777;
}

.meta-divider {
    color: #cccccc;
}

/* Bottom Price & Button Row */
.dest-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dest-price-box {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-main span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-note {
    font-size: 0.72rem;
    color: #888888;
    margin-top: 2px;
}

/* Grayish Pill Button */
.view-details-btn {
    background-color: #f3f4f6;
    /* Grayish background */
    color: var(--text-main);
    /* Black text */
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.view-details-btn:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
}

/* Destination Section End */

/* ==========================================================================
   6. About Us Section Start
   ========================================================================== */

.about-section {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 5;
}

/* Equal Height Grid Structure */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    /* Left column slightly wider */
    gap: 60px;
    align-items: stretch;
    /* CRITICAL: Keeps left and right heights equal */
}

/* Left Side Layout */
.about-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-badge-wrapper {
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Wide Rectangular Feature Cards Stack */
.about-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background-color: var(--bg-primary);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.about-card:hover {
    border-color: var(--border-dark);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Icon Container */
.about-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background-color: #f3f4f6;
    /* Grayish background */
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    margin-bottom: 16px;
}

.about-icon-box .material-symbols-rounded {
    font-size: 1.35rem;
}

.about-card-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.about-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Right Side Image Box matching exact height */
.about-right {
    display: flex;
    height: 100%;
}

.about-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #f0f0f0;
}

.about-img-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center Floating Statistics Widgets Wrapper */
.about-stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 5;
}

/* White Floating Statistics Widgets */
.stats-widget {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.widget-header-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.widget-body-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-val-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-circle-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.stat-main {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

/* Mock Sparkline Graph Box */
.widget-graph-mock {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    background-color: var(--bg-primary);
}

.graph-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.rate-badge {
    font-size: 0.65rem;
    background: #f3f4f6;
    padding: 1px 4px;
    border-radius: 4px;
    color: var(--text-muted);
}

.sparkline-svg {
    width: 80px;
    height: 20px;
}

/* Sales Statistics Property Row */
.widget-property-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prop-thumb {
    width: 56px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.prop-details {
    flex: 1;
}

.prop-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.prop-meta .material-symbols-rounded {
    font-size: 0.9rem;
}

.prop-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prop-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.prop-price span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.prop-rev {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.prop-rev .material-symbols-rounded {
    font-size: 0.85rem;
}

/* About Us Section End */

/* ==========================================================================
   7. Testimonial Section Start
   ========================================================================== */

.testimonial-section {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 5;
}

.testi-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
}

.testi-title {
    font-size: 2.85rem;
    margin: 16px 0 8px 0;
}

.testi-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Asymmetric Grid: Left Video Card (42%) & Right Reviews (58%) */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 32px;
    align-items: stretch;
    /* Keeps height equal */
}

/* Left Featured Video Card */
.testi-video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    background-color: #111111;
}

.testi-video-card>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Gradient bottom for text contrast */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

/* Glowing Play Button Pulse Animation */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 68px;
    height: 68px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn .material-symbols-rounded {
    font-size: 2.2rem;
}

.play-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: wavePulse 2s infinite ease-out;
}

@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Bottom Video Text */
.video-info-bottom {
    position: relative;
    z-index: 5;
    color: var(--text-light);
}

.video-quote {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 16px;
    color: var(--bg-primary);
}

.video-author-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
}

.video-author-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Right Side Review Cards Stack */
.testi-reviews-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.review-card {
    background-color: var(--bg-primary);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    transition: all var(--transition-fast);
}

.review-card:hover {
    border-color: var(--border-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Watermark Quote Icon top right */
.review-card::after {
    content: "“";
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 28px;
    color: #f0f0f0;
    z-index: 1;
    pointer-events: none;
}

.review-content {
    position: relative;
    z-index: 2;
}

.review-heading {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.review-comment {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Footer of Card: Author Info + Yellow Stars */
.review-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.review-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.author-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #f5cb44;
    /* Yellow Stars */
}

.review-stars .material-symbols-rounded {
    font-size: 1.25rem;
    font-variation-settings: "FILL"1;
    /* Filled Stars */
}

/* Testimonial Section End */

/* ==========================================================================
   8. Offer Section Start
   ========================================================================== */

.offer-scroll-timeline {
    position: relative;
    width: 100%;
    height: 350vh;
    margin: 80px 0 0 0; /* Only top margin, no bottom margin so footer touches exactly */
}

.offer-section {
    position: sticky;
    top: calc(50vh - 360px); /* Perfectly centers 720px banner */
    z-index: 5;
    width: 100%;
}

/* Full Screen Edge-to-Edge Banner Box */
.offer-banner-container {
    position: relative;
    width: 100%;
    height: 720px; /* Initially 720px, animates to 100vh */
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: #111111;
    will-change: height;
}

/* Background Video scaling Full Width */
.offer-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    user-select: none;
}

/* Inner Content centered to website max-width (1400px) */
.offer-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content Wrapper */
.offer-content-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Punchy White Typography */
.offer-title {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 32px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.offer-details-group {
    margin-bottom: 32px;
}

.offer-sublabel {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    margin-bottom: 4px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* 45% Off Yellow Text (#F5CB44) */
.offer-discount-val {
    font-family: var(--font-body);
    font-size: 2.25rem;
    font-weight: 700;
    color: #f5cb44;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Bottom Dots Indicator */
.offer-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.4);
    transition: all var(--transition-fast);
}

.offer-dot.active {
    background-color: var(--bg-primary);
}

/* Right Bottom Big Blue Circle Button (#3B82F6) */
.offer-action-right {
    display: flex;
    align-items: center;
}

.offer-circle-btn {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-full);
    background-color: #3b82f6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.45);
    transition: all var(--transition-smooth);
}

.offer-circle-btn:hover {
    background-color: #2563eb;
    transform: scale(1.08) rotate(15deg);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.65);
}

.offer-circle-btn .material-symbols-rounded {
    font-size: 3rem;
    font-weight: 600;
}

/* Offer Section End */

/* ==========================================================================
   9. Footer Start
   ========================================================================== */

.site-footer {
    background-color: var(--bg-secondary);
    /* Soft soft gray background matching screenshot */
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    /* Giant watermark text ko bottom se perfectly crop karne ke liye */
    border-top: 1px solid #eaeaea;
    z-index: 5;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

/* Left Column Styling */
.footer-left {
    max-width: 520px;
}

.footer-brand {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-body);
    /* Matching the clean modern sans font of screenshot */
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Right Column Styling */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
}

/* Horizontal Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-muted);
}

/* Round Soft Gray Social Icons */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: #e8e8e8;
    /* Soft round button */
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-circle:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

.social-circle .material-symbols-rounded {
    font-size: 1.25rem;
}

/* Copyright Text */
.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Giant Bottom Cropped Watermark (YATRAWAY) */
.footer-giant-watermark {
    font-family: var(--font-body);
    font-size: 19vw;
    /* Screen width ke hisab se super massive text */
    font-weight: 700;
    line-height: 0.75;
    text-align: center;
    width: 100%;
    user-select: none;
    pointer-events: none;
    letter-spacing: -2px;
    margin-bottom: -2vw;
    /* Bottom se thoda sa katne (crop) ke liye */

    /* Silver to Faded White Vertical Gradient */
    background: linear-gradient(180deg, #999999 0%, #cccccc 45%, rgba(248, 249, 250, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer End */

/* ==========================================================================
   Responsive Start
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-menu-wrapper {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .booking-card {
        max-width: 550px;
        margin: 0 auto;
        text-align: left;
    }

    .nav-menu-wrapper {
        display: none;
    }

    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet pe 3 cards */
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet pe 2 columns */
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-box {
        min-height: 460px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .testi-video-card {
        min-height: 440px;
    }

    .offer-banner-container {
        min-height: 420px;
    }

    .offer-title {
        font-size: 2.6rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-giant-watermark {
        font-size: 21vw;
    }
}

@media (max-width: 768px) {
    .site-header.scrolled .navbar {
        max-width: calc(100% - 24px);
        margin-top: 10px;
        padding: 10px 18px;
    }

    .container,
    .nav-container,
    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .who-statement {
        font-size: 1.65rem;
        line-height: 1.45;
        text-align: left;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .achievement-card {
        padding: 28px 16px;
        aspect-ratio: 1 / 0.9;
    }

    /* Odd 5th card spans full width centered on mobile */
    .achievement-card:last-child:nth-child(odd) {
        grid-column: span 2;
        max-width: 60%;
        margin: 0 auto;
    }

    .achievement-number {
        font-size: 2.25rem;
    }

    .achievement-suffix {
        font-size: 2rem;
    }

    .deals-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .deals-title {
        font-size: 2.1rem;
    }

    /* Hide desktop button on mobile header */
    .deals-header .deals-cta-btn {
        display: none;
    }

    /* Horizontal Swipe Carousel Configuration */
    .deals-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 12px;
        /* Hiding Scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .deals-grid::-webkit-scrollbar {
        display: none;
    }

    /* Setting card width to 82% so next card shows 18% peek */
    .deal-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        min-height: 280px;
        padding: 24px;
    }

    .deal-discount {
        font-size: 2.85rem;
    }

    .deal-validity-pill {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    /* Show button under the swipe cards on mobile */
    .deals-mobile-action {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }

    .deals-mobile-action .deals-cta-btn {
        width: 100%;
        max-width: 280px;
    }

    .dest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dest-title {
        font-size: 2.1rem;
    }

    .dest-grid {
        grid-template-columns: 1fr;
        /* Mobile pe single stack */
        gap: 28px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-stats-overlay {
        width: 92%;
    }

    .testi-title {
        font-size: 2.2rem;
    }

    .review-card {
        padding: 24px;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .offer-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 20px;
        gap: 32px;
    }

    .offer-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .offer-circle-btn {
        width: 76px;
        height: 76px;
        align-self: flex-end;
    }

    .offer-circle-btn .material-symbols-rounded {
        font-size: 2.4rem;
    }

    .site-footer {
        padding-top: 60px;
    }

    .footer-tagline {
        font-size: 2.1rem;
    }

    .footer-links {
        gap: 20px;
    }
}

/* Responsive End */