/* ==========================================================================
   NAGOO TOUR AND TRAVELS - LUMINOUS LUXURY LIGHT DESIGN SYSTEM
   Award-Winning, Apple-Grade Kashmir Paradise Aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Luminous Theme Tokens --- */
:root {
    /* Bright Palette Base */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0f7f4;
    --bg-light-accent: #e0f2fe;
    /* Typography Colors */
    --text-primary: #072219;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    /* Brand Emerald Hues */
    --emerald-deep: #062419;
    --emerald-main: #0d5c46;
    --emerald-light: #e6f4f0;
    --emerald-glow: rgba(13, 92, 70, 0.15);
    /* Gold & Saffron Accents */
    --gold-primary: #c48b28;
    --gold-light: #fef8eb;
    --gold-dark: #8e6212;
    --gold-gradient: linear-gradient(135deg, #d8a038 0%, #c48b28 50%, #9e6d15 100%);
    --gold-glow: rgba(196, 139, 40, 0.25);
    --saffron: #e67e22;
    --chinar-red: #c0392b;
    --chinar-amber: #d35400;
    --snow-white: #ffffff;
    --ice-blue: #e0f2fe;
    /* Typography Families */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-display: 'Outfit', sans-serif;
    /* Luminous Glassmorphism & Depth */
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-bg-hover: rgba(255, 255, 255, 0.98);
    --glass-border: rgba(196, 139, 40, 0.28);
    --glass-border-light: rgba(13, 92, 70, 0.15);
    --glass-shadow: 0 16px 45px rgba(6, 36, 25, 0.07);
    --glass-shadow-hover: 0 24px 60px rgba(6, 36, 25, 0.14);
    --glass-blur: blur(16px);
    /* Layout */
    --container-width: 1320px;
    --header-height: 90px;
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.65;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--emerald-main);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold-primary);
    }

/* --- Particle Canvas Layer --- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

/* --- Custom Cursor --- */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--emerald-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 12px var(--emerald-glow);
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s cubic-bezier(0.1, 0.8, 0.3, 1), border-color 0.3s ease;
    opacity: 0.7;
}

.cursor-hover .custom-cursor {
    width: 24px;
    height: 24px;
    background: var(--gold-primary);
}

.cursor-hover .custom-cursor-follower {
    transform: translate(-50%, -50%) scale(1.6);
    border-color: var(--emerald-main);
    opacity: 0.9;
}

@media (pointer: coarse) {
    .custom-cursor, .custom-cursor-follower {
        display: none;
    }
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 110px 0;
}

.text-gold {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-emerald {
    color: var(--emerald-main);
}

.text-accent {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold-dark);
}

/* --- Badges & Titles --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--emerald-light);
    border: 1px solid var(--glass-border);
    color: var(--emerald-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(13, 92, 70, 0.08);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 50px auto;
    font-weight: 400;
}

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

/* --- Buttons & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    z-index: 1;
}

.btn-primary {
    background: var(--emerald-main);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(13, 92, 70, 0.3);
}

    .btn-primary:hover {
        background: var(--emerald-deep);
        color: #ffffff;
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 35px rgba(13, 92, 70, 0.45);
    }

.btn-gold {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 10px 25px var(--gold-glow);
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(196, 139, 40, 0.4);
        color: #ffffff;
    }

.btn-secondary {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

    .btn-secondary:hover {
        background: var(--emerald-light);
        border-color: var(--emerald-main);
        color: var(--emerald-main);
        transform: translateY(-3px);
    }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--emerald-main);
    color: var(--emerald-main);
}

    .btn-outline:hover {
        background: var(--emerald-main);
        color: #ffffff;
    }

/* --- Luminous Glassmorphism Card Core --- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

    .glass-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        transition: left 0.7s ease;
        pointer-events: none;
    }

    .glass-card:hover::after {
        left: 140%;
    }

    .glass-card:hover {
        background: var(--glass-bg-hover);
        border-color: var(--glass-border);
        transform: translateY(-8px);
        box-shadow: var(--glass-shadow-hover);
    }

/* --- Header & Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0 24px;
    background: rgba(4, 18, 14, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

    .navbar.scrolled {
        height: 76px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(6, 36, 25, 0.12);
    }

.navbar-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    z-index: 10;
}

.logo-icon-svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.brand-logo:hover .logo-icon-svg {
    transform: rotate(5deg) scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.navbar.scrolled .logo-title {
    color: #072219;
    text-shadow: none;
}

.logo-subtitle {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: #f7e4b6;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.navbar.scrolled .logo-subtitle {
    color: var(--gold-primary);
    text-shadow: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.navbar.scrolled .nav-link {
    color: #334155;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #f7e4b6;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .nav-link::after {
    background: var(--emerald-main);
}

.nav-link:hover, .nav-link.active {
    color: #f7e4b6;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--emerald-main);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

.weather-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.navbar.scrolled .weather-widget {
    background: var(--emerald-light);
    border-color: var(--glass-border-light);
    color: var(--emerald-main);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 60%, #e6f4f0 100%);
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate ease-in-out;
    filter: none;
    opacity: 1;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(4, 18, 14, 0.45) 0%, rgba(4, 18, 14, 0.2) 40%, rgba(4, 18, 14, 0.75) 100%), radial-gradient(ellipse at center, rgba(4, 18, 14, 0.4) 0%, transparent 75%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 950px;
    padding: 60px 20px 100px 20px;
}

.hero-badge {
    margin-bottom: 24px;
    background: rgba(4, 18, 14, 0.75);
    border: 1px solid rgba(247, 228, 182, 0.4);
    color: #f7e4b6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
    letter-spacing: -1px;
}

    .hero-title .text-emerald,
    .hero-title .text-gold {
        color: #f7e4b6;
        background: linear-gradient(135deg, #ffffff 0%, #f7e4b6 50%, #e5be75 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.9));
    }

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: #f8fafc;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Luminous Search Bar */
.search-bar-glass {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    padding: 12px 16px 12px 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(6, 36, 25, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.search-field {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    padding-right: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

    .search-field:last-of-type {
        border-right: none;
    }

.search-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--emerald-main);
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-select, .search-input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    width: 100%;
}

/* Atmosphere Switcher Badge */
.fx-switcher {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.fx-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .fx-btn.active, .fx-btn:hover {
        background: var(--emerald-main);
        color: #ffffff;
    }

/* --- Stats Counter Grid --- */
.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    background: #ffffff;
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.stat-box {
    padding: 36px 20px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--emerald-main);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Filterable Packages Grid --- */
.filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 26px;
    border-radius: 40px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

    .filter-btn.active, .filter-btn:hover {
        background: var(--emerald-main);
        border-color: var(--emerald-main);
        color: #ffffff;
        box-shadow: 0 6px 20px rgba(13, 92, 70, 0.3);
    }

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

.package-card {
    background: #ffffff;
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.package-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-deep);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.package-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--gold-gradient);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.package-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--emerald-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.package-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.inc-pill {
    font-size: 0.78rem;
    background: var(--emerald-light);
    border: 1px solid var(--glass-border-light);
    padding: 5px 12px;
    border-radius: 14px;
    color: var(--emerald-main);
    font-weight: 600;
}

.package-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Spotlight Card */
.spotlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    border-radius: 30px;
    margin-top: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #e6f4f0 100%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.spotlight-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
}

/* 3D Destinations Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dest-card {
    height: 390px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 34, 25, 0.92) 0%, rgba(6, 34, 25, 0.2) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition-smooth);
    color: #ffffff;
}

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

.dest-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.dest-tagline {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.dest-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.85rem;
    color: #e2e8f0;
}

.dest-card:hover .dest-details {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

/* Services Showcase Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 36px 28px;
    text-align: left;
    border-radius: 24px;
    background: #ffffff;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--emerald-light);
    border: 1px solid var(--glass-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-main);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Interactive Kashmir Route Map Section */
.map-interactive-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

.kashmir-svg-map {
    width: 100%;
    height: auto;
    max-height: 480px;
}

.map-pin {
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .map-pin:hover {
        transform: scale(1.3);
    }

.map-info-panel {
    padding: 28px;
    background: var(--emerald-light);
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
}

/* Masonry Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

    .gallery-item.tall {
        grid-row: span 2;
        height: 540px;
    }

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 36, 25, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 45px;
    border-radius: 28px;
    text-align: center;
    background: #ffffff;
}

.quote-icon {
    font-size: 2.8rem;
    color: var(--emerald-main);
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--emerald-main);
    object-fit: cover;
}

.author-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.82rem;
    color: var(--emerald-main);
    font-weight: 600;
}

/* Booking & Contact Section */
.contact-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-form-glass {
    padding: 40px;
    border-radius: 30px;
    background: #ffffff;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emerald-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: var(--emerald-main);
        background: #ffffff;
        box-shadow: 0 0 10px rgba(13, 92, 70, 0.15);
    }

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background: #ffffff;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--emerald-light);
    border: 1px solid var(--glass-border-light);
    color: var(--emerald-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Floating WhatsApp CTA */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1) rotate(10deg);
    }

/* Modals */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 36, 25, 0.7);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

    .modal-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

.modal-container {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    color: var(--text-primary);
}

.modal-backdrop.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .modal-close:hover {
        background: var(--chinar-red);
        color: #ffffff;
    }

/* Footer */
.footer {
    background: #041a13;
    color: #ffffff;
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 20px 0;
    max-width: 340px;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

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

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.88rem;
        transition: color 0.25s ease;
    }

        .footer-links a:hover {
            color: var(--gold-primary);
        }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--emerald-main);
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 600;
}

    .toast-notification.show {
        transform: translateY(0);
        opacity: 1;
    }

/* Responsive */
@media (max-width: 1024px) {
    .packages-grid, .services-grid, .destinations-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .search-bar-glass {
        grid-template-columns: 1fr 1fr;
        border-radius: 24px;
    }

    .search-field {
        border-right: none;
    }

    .contact-section-wrapper, .map-interactive-wrapper, .spotlight-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

        .nav-links.active {
            right: 0;
        }

    .mobile-toggle {
        display: block;
    }

    .packages-grid, .services-grid, .destinations-grid, .gallery-grid, .stats-counter-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .search-bar-glass {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- Refinement Layer: measured scale, image-led polish, calmer depth --- */
:root {
    --container-width: 1180px;
    --header-height: 78px;
    --radius-card: 8px;
    --radius-control: 10px;
    --shadow-soft: 0 12px 32px rgba(6, 36, 25, 0.08);
    --shadow-lift: 0 18px 44px rgba(6, 36, 25, 0.14);
}

html {
    font-size: 15.5px;
}

body {
    line-height: 1.58;
}

.container {
    padding: 0 clamp(18px, 4vw, 32px);
}

.section-padding {
    padding: clamp(72px, 8vw, 104px) 0;
}

.section-badge {
    padding: 7px 14px;
    border-radius: var(--radius-control);
    font-size: 0.72rem;
    letter-spacing: 0;
    margin-bottom: 16px;
    box-shadow: none;
}

.section-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.section-subtitle {
    max-width: 620px;
    margin-bottom: 38px;
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.btn {
    min-height: 44px;
    padding: 12px 22px;
    border-radius: var(--radius-control);
    font-size: 0.88rem;
    letter-spacing: 0;
    box-shadow: none;
}

.btn-primary {
    box-shadow: 0 8px 18px rgba(13, 92, 70, 0.22);
}

    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-gold:hover,
    .btn-outline:hover {
        transform: translateY(-2px);
    }

.glass-card,
.package-card,
.dest-card,
.service-card,
.testimonial-card,
.booking-form-glass,
.info-card,
.spotlight-card,
.map-interactive-wrapper,
.map-info-panel,
.modal-container {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

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

    .glass-card::after {
        display: none;
    }

.navbar {
    padding: 0 clamp(14px, 3vw, 24px);
}

    .navbar.scrolled {
        height: 68px;
    }

.navbar-container {
    gap: 24px;
}

.logo-icon-svg {
    width: 46px;
    height: 46px;
}

.logo-title {
    font-size: clamp(1.08rem, 1.5vw, 1.25rem);
    letter-spacing: 0;
}

.logo-subtitle,
.nav-link,
.search-label,
.stat-label,
.filter-btn,
.package-tag,
.package-price-tag,
.form-label,
.footer-links a {
    letter-spacing: 0;
}

.nav-links {
    gap: clamp(16px, 2vw, 26px);
}

.nav-link {
    font-size: 0.86rem;
}

.weather-widget {
    border-radius: var(--radius-control);
    padding: 7px 12px;
}

.hero {
    min-height: 92vh;
    align-items: flex-end;
}

.hero-bg-img,
.package-img,
.dest-img,
.gallery-img,
.spotlight-img,
.author-avatar {
    background: var(--emerald-light);
}

.hero-bg-img {
    filter: none;
    opacity: 1;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(4, 18, 14, 0.6) 100%);
}

.hero-content {
    max-width: 1120px;
    width: 100%;
    text-align: left;
    padding: clamp(110px, 16vh, 160px) clamp(18px, 4vw, 32px) 72px;
}

.hero-title {
    max-width: 760px;
    font-size: clamp(3rem, 6.2vw, 5.9rem);
    line-height: 0.98;
    letter-spacing: 0;
    margin-bottom: 22px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    color: #f8fafc;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.hero-ctas {
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 34px;
}

.search-bar-glass {
    max-width: 1080px;
    margin-left: 0;
    border-radius: var(--radius-card);
    padding: 14px;
    grid-template-columns: 1.1fr 1.2fr 1.1fr 1fr auto;
    gap: 12px;
    box-shadow: var(--shadow-lift);
}

.search-field {
    padding: 4px 12px;
}

.search-label {
    font-size: 0.66rem;
    letter-spacing: 0;
}

.search-select,
.search-input {
    font-size: 0.88rem;
}

.fx-switcher {
    right: clamp(16px, 4vw, 30px);
    bottom: 18px;
    border-radius: var(--radius-control);
}

.stats-counter-grid {
    gap: 0;
    overflow: hidden;
}

.stat-box {
    padding: 28px 18px;
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 2.9rem);
}

.filter-tabs {
    gap: 8px;
    margin-bottom: 34px;
}

.filter-btn,
.inc-pill,
.package-tag,
.package-price-tag,
.fx-btn {
    border-radius: var(--radius-control);
}

.filter-btn {
    padding: 9px 16px;
    font-size: 0.84rem;
}

.packages-grid,
.services-grid {
    gap: 22px;
}

.package-img-wrapper {
    height: auto;
    aspect-ratio: 1.38 / 1;
}

.package-body {
    padding: 22px;
}

.package-meta {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.78rem;
}

.package-title {
    font-size: clamp(1.18rem, 1.8vw, 1.36rem);
    line-height: 1.22;
}

.package-desc,
.service-desc {
    font-size: 0.88rem;
}

.package-footer {
    align-items: stretch;
}

    .package-footer .btn {
        flex: 1;
        padding: 10px 12px !important;
    }

.spotlight-card {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    padding: clamp(22px, 3vw, 34px);
}

.spotlight-img {
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-card);
}

.destinations-grid {
    grid-template-columns: 1.15fr 0.95fr 0.95fr 1.15fr;
    gap: 18px;
}

.dest-card {
    height: auto;
    min-height: 360px;
    aspect-ratio: 0.78 / 1;
}

.dest-overlay {
    padding: 22px;
    background: linear-gradient(to top, rgba(4, 26, 19, 0.93) 0%, rgba(4, 26, 19, 0.42) 58%, rgba(4, 26, 19, 0.04) 100%);
}

.dest-title {
    font-size: clamp(1.28rem, 2vw, 1.55rem);
}

.service-card {
    padding: 28px 24px;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-control);
    margin-bottom: 18px;
}

.service-title {
    font-size: clamp(1.12rem, 1.8vw, 1.28rem);
}

.map-interactive-wrapper {
    padding: clamp(22px, 4vw, 34px);
}

.gallery-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
    gap: 14px;
}

.gallery-item {
    height: auto;
    min-height: 220px;
    aspect-ratio: 1 / 0.86;
    border-radius: var(--radius-card);
}

    .gallery-item.tall {
        height: auto;
        aspect-ratio: 0.72 / 1;
    }

.testimonial-card {
    padding: clamp(28px, 4vw, 40px);
}

.testimonial-text {
    font-size: clamp(1.18rem, 2vw, 1.36rem);
}

.contact-section-wrapper {
    gap: clamp(28px, 5vw, 46px);
}

.booking-form-glass {
    padding: clamp(24px, 4vw, 34px);
}

.form-control {
    border-radius: var(--radius-control);
}

[style*="border-radius: 14px"],
[style*="border-radius: 16px"],
[style*="border-radius: 18px"],
[style*="border-radius: 20px"],
[style*="border-radius: 24px"],
[style*="border-radius: 28px"],
[style*="border-radius: 30px"] {
    border-radius: var(--radius-card) !important;
}

.footer {
    padding-top: 64px;
}

@media (max-width: 1180px) {
    .nav-actions .weather-widget {
        display: none;
    }

    .nav-links {
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(4, 18, 14, 0.65) 100%);
    }

    .search-bar-glass {
        grid-template-columns: 1fr 1fr;
    }

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

    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .spotlight-img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--glass-border-light);
    }

    .nav-actions > .btn {
        display: none;
    }

    .hero-content {
        padding-top: 118px;
        padding-bottom: 48px;
        text-align: left;
    }

    .hero-title {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .hero-ctas {
        align-items: stretch;
    }

        .hero-ctas .btn {
            flex: 1 1 100%;
        }

    .search-bar-glass {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 8px 4px 12px;
    }

        .search-field:last-of-type {
            border-bottom: none;
        }

    .fx-switcher {
        position: relative;
        inset: auto;
        margin: 0 18px 18px;
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .dest-card {
        min-height: 300px;
        aspect-ratio: 1.12 / 1;
    }

    .gallery-item,
    .gallery-item.tall {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .package-footer {
        flex-direction: column;
    }
}

/* --- Full Responsive Coverage: phones, tablets, laptops, wide screens --- */
img,
svg,
video,
canvas {
    max-width: 100%;
}

main {
    position: relative;
    z-index: 5;
}

.skip-link {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3000;
    padding: 10px 14px;
    background: var(--emerald-deep);
    color: #fff;
    border-radius: var(--radius-control);
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

    .skip-link:focus {
        transform: translateY(0);
    }

.brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--emerald-deep);
    color: #f7e4b6;
    border: 2px solid #f7e4b6;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 0 12px rgba(247, 228, 182, 0.35);
}

.page-hero {
    position: relative;
    min-height: clamp(360px, 52vh, 560px);
    padding: calc(var(--header-height) + 72px) 0 72px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--emerald-light);
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    opacity: 1;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(4, 18, 14, 0.65) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #ffffff;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 18px;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.page-intro {
    max-width: 660px;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    color: #f1f5f9;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: #f7e4b6;
    font-weight: 700;
    font-size: 0.86rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

    .breadcrumb a {
        color: #f7e4b6;
        text-decoration: none;
    }

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.content-band {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--glass-border-light);
    border-bottom: 1px solid var(--glass-border-light);
}

.seo-copy {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1rem;
}

    .seo-copy p + p {
        margin-top: 16px;
    }

.feature-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: clamp(24px, 5vw, 54px);
    align-items: center;
}

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

    .mini-list li {
        list-style: none;
        padding: 14px 16px;
        border: 1px solid var(--glass-border-light);
        border-radius: var(--radius-card);
        background: #fff;
        color: var(--text-secondary);
    }

@media (min-width: 1500px) {
    html {
        font-size: 16px;
    }

    .hero-content,
    .container {
        max-width: 1240px;
    }
}

@media (max-width: 1200px) {
    .navbar-container {
        gap: 14px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.82rem;
    }
}

@media (max-width: 1100px) {
    .navbar {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--glass-border-light);
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: min(360px, 86vw);
        height: calc(100dvh - var(--header-height));
        padding: 28px;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        flex-direction: column;
        background: #fff;
        border-left: 1px solid var(--glass-border-light);
        box-shadow: -18px 0 48px rgba(6, 36, 25, 0.13);
        overflow-y: auto;
    }

        .nav-links.active {
            right: 0;
        }

    .nav-link {
        display: block;
        padding: 13px 0;
        font-size: 0.98rem;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-control);
        border: 1px solid var(--glass-border-light);
        background: #fff;
    }

    .nav-actions .weather-widget {
        display: none;
    }

    .packages-grid,
    .services-grid,
    .destinations-grid,
    .gallery-grid,
    .footer-grid,
    .contact-section-wrapper,
    .map-interactive-wrapper,
    .spotlight-card,
    .split-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns: 1.2fr 0.8fr"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .search-bar-glass {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .search-bar-glass > .btn {
            grid-column: 1 / -1;
        }

    .responsive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 70px;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 58px 0;
    }

    .brand-logo {
        gap: 10px;
        min-width: 0;
    }

    .brand-mark,
    .logo-icon-svg {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .logo-title {
        font-size: 1rem;
        white-space: nowrap;
    }

    .logo-subtitle {
        font-size: 0.68rem;
    }

    .nav-actions {
        gap: 8px;
    }

    .hero-content,
    .page-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .page-hero {
        min-height: 420px;
        padding-top: calc(var(--header-height) + 54px);
        padding-bottom: 54px;
    }

    .hero-title,
    .page-title {
        overflow-wrap: anywhere;
    }

    .hero-subtitle,
    .page-intro,
    .section-subtitle {
        line-height: 1.58;
    }

    .hero-ctas,
    .package-footer,
    .footer-bottom,
    .author-info {
        flex-direction: column;
        align-items: stretch;
    }

    .packages-grid,
    .services-grid,
    .destinations-grid,
    .gallery-grid,
    .footer-grid,
    .contact-section-wrapper,
    .map-interactive-wrapper,
    .spotlight-card,
    .split-layout,
    .responsive-grid,
    .stats-counter-grid,
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .search-bar-glass {
        grid-template-columns: 1fr;
        width: 100%;
    }

        .search-bar-glass > .btn {
            width: 100%;
        }

    .dest-card,
    .gallery-item,
    .gallery-item.tall,
    .package-img-wrapper,
    .feature-media {
        aspect-ratio: 4 / 3;
    }

    .map-interactive-wrapper {
        padding: 16px;
        overflow: hidden;
    }

    .kashmir-svg-map {
        min-width: 620px;
    }

    .map-interactive-wrapper > div:first-child {
        overflow-x: auto;
    }

    .modal-backdrop {
        align-items: flex-start;
        padding: 80px 14px 20px;
    }

    .modal-container {
        padding: 24px 18px;
        max-height: calc(100dvh - 100px);
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        left: 16px;
        bottom: 16px;
    }

    .toast-notification {
        left: 16px;
        right: 16px;
        bottom: 82px;
        border-radius: var(--radius-card);
    }
}

@media (max-width: 390px) {
    .logo-title {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-badge {
        max-width: 100%;
        white-space: normal;
    }
}
.footer {
    background: #000;
    color: #fff;
    padding-top: 70px;
}

/* Full-width content */
.footer-wrapper {
    width: 100%;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    box-sizing: border-box;
}

.footer-col h3,
.footer-logo {
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: #b8b8b8;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

.footer-col a {
    color: #b8b8b8;
    text-decoration: none;
    transition: .3s;
}

    .footer-col a:hover {
        color: #22c55e;
    }

.footer-col input {
    width: 100%;
    padding: 14px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
}

.footer-col button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #22c55e;
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-bottom div {
        display: flex;
        gap: 25px;
    }

    .footer-bottom a {
        color: #999;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #22c55e;
        }

@media(max-width:992px) {

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .footer-wrapper {
        grid-template-columns: 1fr;
        padding: 0 25px;
    }

    .footer-bottom {
        padding: 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        margin-bottom: 14px;
        color: #cfcfcf;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-contact a {
        color: #cfcfcf;
        text-decoration: none;
        transition: .3s ease;
    }

        .footer-contact a:hover {
            color: #22c55e;
        }

/* Floating Social Buttons */

.floating-social {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}


.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    transition: .35s ease;
}


    .float-btn svg {
        width: 24px;
        height: 24px;
    }


    .float-btn:hover {
        transform: translateY(-6px) scale(1.08);
    }


/* Call */

.call {
    background: #16a34a;
}


/* WhatsApp */

.whatsapp {
    background: #25D366;
}


/* Instagram */

.instagram {
    background: linear-gradient( 45deg, #feda75, #d62976, #962fbf, #4f5bd5 );
}


/* Facebook */

.facebook {
    background: #1877f2;
}



/* Mobile */

@media(max-width:600px) {

    .floating-social {
        right: 15px;
        bottom: 15px;
    }


    .float-btn {
        width: 48px;
        height: 48px;
    }
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 18px;
    display: block;
}

.footer-logo-img
{
    width:80px;
}