/* =====================================================
   DARSHAN TOUR & TRAVELS - MODERN DESIGN SYSTEM
   Inspired by Luxury Travel & Club Mountain UI
   Color Palette derived from Brand Logo:
   - Deep Royal Blue / Navy: #0a2540, #004899, #071c33
   - Vibrant Sky / Cyan Blue: #00a2e8, #00b4d8, #0284c7
   - Sunset Orange / Coral: #ff6b00, #ff7f11, #f97316
   - Crisp Backgrounds: #ffffff, #f8fafc, #f1f5f9
===================================================== */

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

/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
    /* Brand Colors */
    --brand-blue: #004899;
    --brand-navy: #0a2540;
    --brand-navy-dark: #071526;
    --brand-cyan: #00a2e8;
    --brand-cyan-light: #e0f2fe;
    --brand-orange: #ff6b00;
    --brand-orange-hover: #e05b00;
    --brand-orange-light: #fff7ed;
    --brand-amber: #f59e0b;

    /* Neutrals */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0b192c;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Gradients */
    --gradient-hero: linear-gradient(180deg, rgba(7, 21, 38, 0.75) 0%, rgba(10, 37, 64, 0.85) 100%);
    --gradient-primary: linear-gradient(135deg, #004899 0%, #00a2e8 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    --gradient-badge: linear-gradient(135deg, #ff6b00 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(135deg, #0a2540 0%, #071526 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.05);
    --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 16px 36px rgba(10, 37, 64, 0.12);
    --shadow-xl: 0 24px 50px rgba(10, 37, 64, 0.18);
    --shadow-orange: 0 8px 25px rgba(255, 107, 0, 0.28);
    --shadow-cyan: 0 8px 25px rgba(0, 162, 232, 0.25);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Legacy compatibility */
    --orange: var(--brand-orange);
    --orange-dark: var(--brand-orange-hover);
    --orange-light: #ffedd5;
    --dark: var(--brand-navy);
    --dark-2: var(--brand-navy-dark);
    --white: #ffffff;
    --light: var(--bg-main);
    --gray: var(--text-muted);
    --border: var(--border-color);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* =====================================================
   RESET & BASE
===================================================== */
*,
*::before,
*::after {
    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-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

/* =====================================================
   TOP ANNOUNCEMENT BAR
===================================================== */
.topbar {
    background: var(--brand-navy-dark);
    color: #e2e8f0;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
    width: min(1360px, 94%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-badge {
    background: rgba(0, 162, 232, 0.18);
    color: var(--brand-cyan);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 162, 232, 0.35);
}

.topbar-badge span {
    width: 6px;
    height: 6px;
    background: var(--brand-cyan);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {

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

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-size: 12.5px;
    transition: color 0.2s;
}

.topbar-item:hover {
    color: var(--brand-cyan);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-phone {
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-phone:hover {
    color: var(--brand-orange);
}

.topbar-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.topbar-social-link {
    color: #94a3b8;
    font-size: 13px;
    transition: all 0.2s ease;
}

.topbar-social-link:hover {
    color: var(--brand-orange);
    transform: scale(1.15);
}

/* =====================================================
   HEADER & NAVBAR (CLUB MOUNTAIN STYLE)
===================================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
}

.nav-container {
    width: min(1360px, 94%);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-container {
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

/* Nav Menu (Horizontal Navigation like Club Mountain) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.nav-link {
    color: var(--brand-navy);
    font-size: 14.5px;
    font-weight: 600;
    position: relative;
    padding: 8px 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-orange);
    border-radius: 4px;
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-orange);
}

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

/* Nav Header Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
}

.nav-wa-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: #1eb956;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-orange);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

/* Mobile Toggle */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--brand-navy);
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

/* =====================================================
   HERO SLIDER SECTION WITH CENTER CONTENT
===================================================== */
.hero-slider-section {
    position: relative;
    background: var(--brand-navy-dark);
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 84vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 160px;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-slide-inner {
    position: relative;
    z-index: 3;
    width: min(1280px, 92%);
    margin: 0 auto;
    text-align: center;
}

.hero-center-content {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Slide Content Animated Transitions */
.hero-slide .hero-pill,
.hero-slide .hero-title,
.hero-slide .hero-desc,
.hero-slide .hero-slide-btns {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide.active .hero-pill {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.hero-slide.active .hero-slide-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand-cyan);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-pill span {
    color: var(--brand-orange);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5.2vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 960px;
    margin: 0 auto 18px;
    color: #ffffff;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 50%, #fed7aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .orange-highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: clamp(15px, 1.7vw, 18.5px);
    color: #e2e8f0;
    max-width: 760px;
    margin: 0 auto 30px;
    line-height: 1.65;
    font-weight: 400;
}

.hero-slide-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-orange);
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(255, 107, 0, 0.45);
    background: #ff7f11;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-3px);
    border-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Slider Navigation Buttons */
.hero-slider-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 37, 64, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-prev {
    left: 24px;
}

.hero-slider-next {
    right: 24px;
}

.hero-slider-nav:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-orange);
    transform: translateY(-50%) scale(1.12);
}

/* Slider Indicators / Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.hero-dot.active {
    width: 36px;
    background: var(--brand-orange);
    box-shadow: 0 0 14px rgba(255, 107, 0, 0.7);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Bottom Panel (Search Widget & Trust Bar) */
.hero-bottom-panel {
    position: relative;
    z-index: 10;
    margin-top: -120px;
    padding-bottom: 70px;
    width: min(1280px, 92%);
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   HERO SEARCH / INQUIRY WIDGET (CLUB MOUNTAIN SIGNATURE)
===================================================== */
.search-widget-container {
    max-width: 1040px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: 0 25px 60px rgba(7, 21, 38, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text-primary);
    text-align: left;
}

.search-widget-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.search-field-group {
    border-right: 1px solid var(--border-color);
    padding-right: 14px;
}

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

.search-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue);
    margin-bottom: 4px;
}

.search-select,
.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-navy);
    outline: none;
    cursor: pointer;
    padding: 4px 0;
}

.search-submit-btn {
    background: var(--gradient-orange);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.45);
}

/* Hero Trust Stats */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
}

.trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 162, 232, 0.2);
    border: 1px solid rgba(0, 162, 232, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 16px;
}

/* =====================================================
   SECTION HEADINGS
===================================================== */
.section-padding {
    padding: 95px 0;
}

.section-padding-sm {
    padding: 65px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: var(--brand-orange-light);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--brand-blue);
    position: relative;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* =====================================================
   TOP DESTINATIONS (CLUB MOUNTAIN CARD STYLE)
===================================================== */
.destinations-section {
    background: #ffffff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 390px;
    box-shadow: var(--shadow-md);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background: var(--brand-navy-dark);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 38, 0.1) 0%, rgba(7, 21, 38, 0.4) 40%, rgba(7, 21, 38, 0.92) 100%);
    transition: opacity 0.3s ease;
}

.dest-badge-top {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--brand-navy);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dest-price-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gradient-orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #ffffff;
    z-index: 2;
}

.dest-tagline {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.dest-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-desc {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 14px;
}

.dest-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 7px 15px;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

.dest-card:hover .dest-action-btn {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

/* =====================================================
   FEATURED PACKAGES (CLUB MOUNTAIN LUXURY STYLE)
===================================================== */
.packages-section {
    background: var(--bg-main);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.package-card-modern {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.package-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 162, 232, 0.3);
}

.pkg-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

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

.package-card-modern:hover .pkg-img {
    transform: scale(1.06);
}

.pkg-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-badge);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pkg-duration-pill {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(10, 37, 64, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.pkg-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.pkg-location {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pkg-rating {
    color: var(--brand-amber);
    font-size: 13px;
    font-weight: 700;
}

.pkg-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 10px;
    line-height: 1.35;
}

.pkg-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

.pkg-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px;
    background: var(--bg-main);
    border-radius: var(--radius-md);
}

.inclusion-pill {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pkg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.pkg-price-wrap span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pkg-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-navy);
}

.pkg-price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.pkg-actions {
    display: flex;
    gap: 8px;
}

.pkg-btn-wa {
    background: #25d366;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.25s ease;
}

.pkg-btn-wa:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

.pkg-btn-view {
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-cyan);
    transition: all 0.25s ease;
}

.pkg-btn-view:hover {
    background: var(--brand-navy);
    transform: translateY(-2px);
}

/* =====================================================
   EXPERIENCE CATEGORIES (TRAVEL STYLES)
===================================================== */
.categories-section {
    background: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cat-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: pointer;
}

.cat-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-cyan);
}

.cat-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    background: var(--brand-cyan-light);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.3s ease;
}

.cat-card:hover .cat-icon-box {
    background: var(--gradient-orange);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.cat-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 6px;
}

.cat-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-orange);
}

/* =====================================================
   WHY CHOOSE DARSHAN (VALUE PROPOSITION)
===================================================== */
.why-us-modern {
    background: var(--brand-navy-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-us-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 162, 232, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all 0.35s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(0, 162, 232, 0.4);
    transform: translateY(-6px);
}

.why-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-cyan);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.why-card-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.65;
}

/* =====================================================
   TESTIMONIALS SLIDER
===================================================== */
.reviews-section-modern {
    background: #ffffff;
}

.reviews-wrapper {
    position: relative;
}

.reviews-slider-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}

.review-card-modern {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.review-card-modern:hover {
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-5px);
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
}

.reviewer-info h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-navy);
}

.reviewer-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.review-stars {
    color: var(--brand-amber);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-tour-tag {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue);
}

/* =====================================================
   BOOKING / INQUIRY SECTION (WHATSAPP BUILDER)
===================================================== */
.inquiry-section {
    background: linear-gradient(135deg, #071526 0%, #0a2540 100%);
    color: #ffffff;
    position: relative;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.inquiry-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-primary);
    box-shadow: var(--shadow-xl);
}

.inquiry-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 6px;
}

.inquiry-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

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

.form-field-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--brand-navy);
    background: var(--bg-main);
    outline: none;
    transition: all 0.25s ease;
}

.form-control:focus {
    border-color: var(--brand-cyan);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 162, 232, 0.15);
}

.inquiry-submit-btn {
    width: 100%;
    background: var(--gradient-orange);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.inquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.45);
}

.inquiry-info-box {
    padding-left: 20px;
}

.inquiry-info-box .pill {
    background: rgba(0, 162, 232, 0.18);
    color: var(--brand-cyan);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 16px;
}

.inquiry-info-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.inquiry-info-box p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.inquiry-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #f1f5f9;
}

.perk-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-cyan);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.direct-call-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.direct-call-badge .call-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.direct-call-badge strong {
    font-size: 18px;
    color: #ffffff;
    display: block;
}

.direct-call-badge span {
    font-size: 12px;
    color: #94a3b8;
}

/* =====================================================
   MEGA FOOTER (LUXURY STYLE)
===================================================== */
.footer-modern {
    background: #050d18;
    color: #94a3b8;
    padding-top: 80px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-about .logo-img {
    height: 54px;
    margin-bottom: 18px;
    filter: brightness(1.05);
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
}

.social-icon-btn:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: var(--brand-cyan);
    border-radius: 2px;
}

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

.footer-links-list a {
    color: #ffffff;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-list a:hover {
    color: var(--brand-cyan);
    transform: translateX(4px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.f-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
}

.f-contact-icon {
    color: var(--brand-cyan);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =====================================================
   FLOATING ACTION BUTTONS
===================================================== */
.floating-actions {
    position: fixed;
    bottom: 28px;
   left: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-wa {
    background: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.float-call {
    background: var(--brand-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.4;
    animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES
===================================================== */
@media (max-width: 1080px) {
    .search-widget-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-field-group {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 10px;
    }

    .search-submit-btn {
        grid-column: 1 / -1;
    }

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

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

    .inquiry-info-box {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .hero-slider {
        min-height: 80vh;
    }

    .hero-slide {
        padding: 70px 0 140px;
    }

    .hero-slider-nav {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .hero-slider-prev {
        left: 12px;
    }

    .hero-slider-next {
        right: 12px;
    }

    .hero-slider-dots {
        bottom: 140px;
    }

    .hero-bottom-panel {
        margin-top: -80px;
    }

    .topbar {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 6%;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-top: 1px solid var(--border-color);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .destination-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: var(--bg-main);
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 640px) {
    .hero-slider {
        min-height: 74vh;
    }

    .hero-slide {
        padding: 50px 0 110px;
    }

    .hero-slider-nav {
        display: none;
    }

    .hero-slider-dots {
        bottom: 100px;
    }

    .hero-bottom-panel {
        margin-top: -45px;
    }

    .hero-slide-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

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

    .search-widget-form {
        grid-template-columns: 1fr;
    }

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

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

    .hero-trust-bar {
        gap: 16px;
    }

    .trust-item {
        font-size: 12px;
    }

    .floating-actions {
        bottom: 18px;
        right: 16px;
    }

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

/* =====================================================
   PAGE HERO (About, Bookings, Contact inner pages)
===================================================== */
.page-hero {
    background: linear-gradient(135deg, #071526 0%, #0a2540 40%, #004899 100%);
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: #fff;
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.hero-badge-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.page-hero h1 span {
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-stats-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.quick-stat-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   ABOUT PAGE STYLES
===================================================== */
.section-wrap {
    padding: 90px 0;
    background: #fff;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-orange);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header-center .desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-image-wrap {
    position: relative;
}

.story-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.35);
    min-width: 170px;
}

.story-float-card .num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.story-float-card .text {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
    line-height: 1.4;
}

.story-copy>p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

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

.highlight-item .icon {
    width: 24px;
    height: 24px;
    background: var(--brand-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #0a2540 0%, #004899 100%);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-box {
    padding: 16px;
}

.stat-box .count {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Section */
.why-section {
    background: #f8fafc;
    padding: 90px 0;
}

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

.feature-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.07);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 37, 64, 0.12);
    border-color: var(--brand-orange);
}

.feature-icon-wrap {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: #fff;
    padding: 90px 0;
}

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

.value-card {
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 12px 36px rgba(255, 107, 0, 0.1);
}

.value-tag {
    display: inline-block;
    background: var(--brand-orange-light);
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Destination Cards Grid */
.dest-section {
    background: #f8fafc;
    padding: 90px 0;
}

.dest-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    height: 220px;
    text-decoration: none;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 21, 38, 0.88) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.3s ease;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(0, 72, 153, 0.85) 0%, transparent 60%);
}

.dest-overlay h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dest-overlay span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12.5px;
}

/* Reviews / Testimonials */
.reviews-section {
    background: #fff;
    padding: 90px 0;
}

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

.review-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 12px 36px rgba(10, 37, 64, 0.1);
}

.stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-quote {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.reviewer-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #071526 0%, #0a2540 100%);
    padding: 90px 0;
}

.cta-banner-box {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner-box h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255, 107, 0, 0.45);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

/* =====================================================
   CONTACT PAGE STYLES
===================================================== */
.contact-hero {
    min-height: 340px;
    background: linear-gradient(135deg, #071526 0%, #0a2540 40%, #004899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 70px;
    text-align: center;
}

.contact-hero .inner {
    max-width: 700px;
}

.contact-hero .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 14px;
    display: block;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-hero h1 span {
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
}

.contact-wrap {
    background: #f8fafc;
    padding: 80px 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card,
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.07);
}

.contact-card .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 10px;
    display: block;
}

.contact-card h2,
.form-card h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-card .info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-card .info strong {
    color: var(--text-primary);
    min-width: 70px;
}

.form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: var(--brand-orange);
}

.form-card textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    margin-bottom: 14px;
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

/* =====================================================
   BOOKINGS PAGE STYLES
===================================================== */
.booking-section {
    background: #f8fafc;
    padding: 80px 0;
}

/* =====================================================
   ABOUT/BOOKINGS RESPONSIVE
===================================================== */
@media (max-width: 900px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-float-card {
        right: 16px;
        bottom: -16px;
    }

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

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

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

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

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

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

    .hero-stats-quick {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .hero-stats-quick {
        gap: 16px;
    }

    .quick-stat-num {
        font-size: 1.5rem;
    }

    .about-story-grid {
        gap: 32px;
    }

    .story-img-main {
        height: 280px;
    }

    .story-float-card {
        position: static;
        margin-top: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-box .count {
        font-size: 2rem;
    }

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

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

    .dest-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta,
    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }

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

/* =====================================================
   DESTINATION PAGES HERO (himachal, spiti, kashmir, goa, etc.)
===================================================== */
.destination-hero {
    min-height: 480px;
    background:
        linear-gradient(rgba(7, 21, 38, 0.62), rgba(10, 37, 64, 0.78)),
        url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
}

.destination-hero .hero-content {
    text-align: center;
}

.destination-hero .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-orange);
    margin-bottom: 14px;
}

.destination-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.destination-hero h1 span {
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destination-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================================================
   BREADCRUMB SECTION
===================================================== */
.breadcrumb-section {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

.breadcrumb-section p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-muted);
    flex-wrap: wrap;
    margin: 0;
}

.breadcrumb-section a {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-section a:hover {
    color: var(--brand-orange);
}

/* =====================================================
   SECTION HEADING (shared)
===================================================== */
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-heading h2 span {
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.small-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--brand-orange);
    margin-bottom: 10px;
}

/* =====================================================
   PACKAGES SECTION & CARDS
===================================================== */
.section {
    padding: 90px 0;
}

.packages-section {
    background: #f8fafc;
}

.summer-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
    padding: 90px 0;
}

.season-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.07);
    border-left: 5px solid var(--brand-orange);
}

.season-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.season-title h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.season-title p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

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

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.07);
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.14);
    border-color: var(--brand-orange);
}

.package-image-wrap,
.package-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.package-image-wrap img,
.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image-wrap img,
.package-card:hover .package-image img {
    transform: scale(1.07);
}

.package-badge,
.package-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.package-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(7, 21, 38, 0.82);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

.package-content {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-duration {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.package-content h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.package-route,
.package-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.package-features,
.package-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.package-features li,
.package-content ul li {
    font-size: 13.5px;
    color: var(--text-secondary);
}

.package-bottom,
.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.package-bottom strong,
.package-footer strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-label {
    font-size: 11.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.package-btn,
.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #004899, #00a2e8);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 72, 153, 0.3);
}

.package-btn:hover,
.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 72, 153, 0.4);
}

/* =====================================================
   CTA SECTION (destination pages)
===================================================== */
.cta-section {
    background: linear-gradient(135deg, #0a2540 0%, #004899 100%);
    padding: 80px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content .eyebrow {
    color: var(--brand-orange);
    margin-bottom: 8px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff !important;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255, 107, 0, 0.45);
}

/* =====================================================
   DESTINATIONS PAGE
===================================================== */
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 21, 38, 0.7) 0%, rgba(10, 37, 64, 0.82) 100%);
}

.destination-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 140px 5% 80px;
}

.destination-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.destination-hero-content h1 span {
    background: linear-gradient(135deg, #ff6b00, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destination-hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.destination-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.destination-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.destination-breadcrumb a:hover {
    color: #fff;
}

.destinations-page-section {
    background: #f8fafc;
    padding: 80px 5%;
}

.destinations-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.destination-large-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(10, 37, 64, 0.1);
    background: #fff;
    transition: all 0.35s ease;
}

.destination-large-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.16);
}

.destination-page-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.himachal-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?q=80&w=800&auto=format&fit=crop');
}

.spiti-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?q=80&w=800&auto=format&fit=crop');
}

.kashmir-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1598091383021-15ddea10925d?q=80&w=800&auto=format&fit=crop');
}

.uttarakhand-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1605649487212-47bdab064df7?q=80&w=800&auto=format&fit=crop');
}

.rajasthan-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1599661046289-e31897846e41?q=80&w=800&auto=format&fit=crop');
}

.kerala-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?q=80&w=800&auto=format&fit=crop');
}

.goa-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?q=80&w=800&auto=format&fit=crop');
}

.treks-page {
    background-image: linear-gradient(rgba(7, 21, 38, .35), rgba(7, 21, 38, .6)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=800&auto=format&fit=crop');
}

.destination-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 21, 38, 0.85) 0%, transparent 55%);
}

.destination-page-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
}

.destination-country {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-orange);
    margin-bottom: 4px;
}

.destination-number {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.destination-explore {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.destination-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-cyan);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.destination-cta:hover {
    gap: 10px;
}

.destination-cta-content {
    padding: 20px 22px;
}

.destination-cta-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.destination-cta-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--brand-blue);
    color: var(--brand-blue) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--brand-blue);
    color: #fff !important;
}

.cta-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wa-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.wa-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* =====================================================
   BOOKING PAGE
===================================================== */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.07);
    border: 1px solid var(--border-color);
}

.booking-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-step {
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
}

.form-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.step-badge {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #004899, #00a2e8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step-heading h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.req {
    color: var(--brand-orange);
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    background: #fff;
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}

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

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

.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.tier-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.tier-label {
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tier-label input[type="radio"] {
    display: none;
}

.tier-label.active,
.tier-label:hover {
    border-color: var(--brand-orange);
    background: var(--brand-orange-light);
}

.tier-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.tier-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    margin-top: 12px;
}

.btn-submit-booking {
    flex: 1;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

.btn-whatsapp-instant {
    flex: 1;
    padding: 14px 28px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp-instant:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.summary-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.1);
    border: 1px solid var(--border-color);
}

.summary-preview-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.summary-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-badge-dest {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, #004899, #00a2e8);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.summary-body {
    padding: 22px;
}

.summary-pkg-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.summary-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 14px 0;
}

.summary-price-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-orange);
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.summary-list li span {
    color: var(--text-muted);
}

.summary-list li strong {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.summary-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    background: #f0fdf4;
    border-radius: 12px;
    font-size: 12px;
    color: #166534;
    font-weight: 600;
}

.summary-perks span {
    color: #16a34a;
    margin-right: 4px;
}

.direct-call-card {
    background: linear-gradient(135deg, #0a2540, #004899);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.call-icon-wrap {
    font-size: 2rem;
    flex-shrink: 0;
}

.call-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.call-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 6px;
}

.call-text a {
    font-size: 17px;
    font-weight: 800;
    color: var(--brand-orange);
    text-decoration: none;
}

.direct-call-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 6px;
}

/* =====================================================
   PROCESS SECTION
===================================================== */
.process-section {
    background: #f8fafc;
    padding: 80px 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-step-item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(10, 37, 64, 0.12);
    border-color: var(--brand-orange);
}

.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #004899, #00a2e8);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 18px rgba(0, 72, 153, 0.3);
}

.process-step-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step-item p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-section {
    background: #fff;
    padding: 80px 0;
}

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

.faq-item {
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.active {
    border-color: var(--brand-orange);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    background: #fff;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
    transition: background 0.2s;
}

.faq-header:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 13px;
    color: var(--brand-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 22px 18px;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
}

/* =====================================================
   MODAL
===================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 38, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 48px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalIn {
    from {
        transform: scale(0.92) translateY(20px);
        opacity: 0;
    }

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

.modal-icon-success {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 28px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.modal-box p {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
}

.modal-booking-id {
    background: #f0f9ff;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin: 10px auto 16px;
    border: 1px solid #bae6fd;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
}

.btn-modal-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-modal-wa:hover {
    transform: translateY(-2px);
}

.btn-modal-close {
    padding: 12px 24px;
    border: 1.5px solid var(--border-color);
    background: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-secondary);
    font-family: inherit;
    transition: all 0.25s ease;
}

.btn-modal-close:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

/* =====================================================
   GLOBAL UTILITIES
===================================================== */
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--brand-orange);
    margin-bottom: 10px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.package-badge-tag {
    position: absolute;
    top: -50px;
    left: 0px;
    background: rgba(7, 21, 38, 0.75);
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.categories-section {
    background: #fff;
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cat-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.cat-card:hover {
    border-color: var(--brand-orange);
    background: var(--brand-orange-light);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.12);
}

.cat-icon-box {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.cat-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cat-count {
    font-size: 12.5px;
    color: var(--text-muted);
}

.toggle-all-btn {
    background: none;
    border: 1.5px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-secondary);
    font-family: inherit;
    transition: all 0.25s ease;
}

.toggle-all-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: white;
}

.perk-icon {
    color: var(--brand-orange);
    font-size: 16px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.inclusion-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4;
    color: #166534;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid #bbf7d0;
}

/* (Package detail page styles consolidated at the bottom of stylesheet) */

/* =====================================================
   COMPREHENSIVE RESPONSIVE RULES
===================================================== */
@media (max-width: 1080px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .tier-options {
        grid-template-columns: 1fr;
    }

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

    .booking-sidebar {
        position: static;
    }

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

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

    .nav-wa-btn {
        display: none;
    }

    .process-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destinations-page-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .three-col {
        grid-template-columns: 1fr;
    }

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

    .form-actions {
        flex-direction: column;
    }

    .btn-submit-booking,
    .btn-whatsapp-instant {
        flex: none;
        width: 100%;
    }

    .destination-hero {
        min-height: 380px;
        padding: 110px 0 60px;
    }

    .season-title {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
    }

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

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

    .booking-card {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .destination-hero h1 {
        font-size: 1.8rem;
    }

    .destination-hero {
        padding: 100px 0 50px;
    }

    .package-image-wrap,
    .package-image {
        height: 190px;
    }
}

/* =====================================================
   PACKAGE DETAIL PAGES (DARSHAN TOUR & TRAVELS)
   Comprehensive Luxury Styling for all packages/*.php
   ===================================================== */

/* Package Hero Section */
.package-hero {
    position: relative;
    background: linear-gradient(135deg, #071526 0%, #0a2540 60%, #003366 100%);
    color: #ffffff;
    padding: 135px 0 70px;
    overflow: hidden;
}

.package-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(0, 162, 232, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(255, 107, 0, 0.12) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.package-hero .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb Navigation */
.package-hero .hero-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.package-hero .hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.package-hero .hero-breadcrumb a:hover {
    color: var(--brand-cyan);
    text-decoration: underline;
}

.package-hero .hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Badge Tag */
.package-hero .package-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-orange);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
    margin-bottom: 16px;
}

/* Heading & Subtitle */
.package-hero h1 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.package-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
    max-width: 760px;
    margin: 0 0 20px 0;
}

/* Hero Metadata Pills */
.package-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin: 24px 0 32px;
}

.package-hero-meta .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.package-hero-meta .hero-price {
    font-size: 22px;
    font-weight: 800;
    color: #ffb703;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.hero-actions .btn-cta {
    background: var(--gradient-orange);
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.38);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-actions .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.55);
    color: #ffffff !important;
}

.hero-actions .btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.32);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-actions .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.48);
    color: #ffffff !important;
}

/* Main Section Layout */
.section-wrap {
    padding: 60px 0 90px;
    background: #f8fafc;
}

/* Quick Stats Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin-bottom: 44px;
}

.overview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 18px rgba(10, 37, 64, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(10, 37, 64, 0.09);
    border-color: #cbd5e1;
}

.overview-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 72, 153, 0.08) 0%, rgba(0, 162, 232, 0.12) 100%);
    border-radius: 14px;
    font-size: 24px;
    flex-shrink: 0;
}

.overview-card h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
    margin: 0 0 4px 0;
}

.overview-card p {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

/* Tour Highlights Card */
.highlights-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 34px;
    margin-bottom: 44px;
    box-shadow: 0 4px 22px rgba(10, 37, 64, 0.05);
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--brand-orange);
    position: relative;
}

.highlights-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 14px 28px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.55;
}

.highlights-list li span {
    color: #10b981;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Day-Wise Detailed Itinerary Section */
.itinerary-section {
    margin-bottom: 48px;
}

.itinerary-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.itinerary-header-bar h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #0a2540;
    margin: 0;
}

.itinerary-header-bar p {
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

.toggle-all-btn {
    background: var(--gradient-primary);
    color: #ffffff !important;
    border: none;
    border-radius: var(--radius-full);
    padding: 9px 24px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 72, 153, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.toggle-all-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 72, 153, 0.32);
}

/* Accordion List */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-list .accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(10, 37, 64, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.accordion-list .accordion-item:hover {
    border-color: #cbd5e1;
}

.accordion-list .accordion-item.active {
    border-color: #93c5fd;
    box-shadow: 0 6px 22px rgba(0, 72, 153, 0.08);
}

.accordion-header {
    background: #ffffff;
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-item.active .accordion-header {
    background: #f0f7ff;
    border-bottom: 1px solid #e0eeff;
}

.accordion-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.day-badge {
    background: linear-gradient(135deg, #004899 0%, #00a2e8 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 72, 153, 0.25);
}

.accordion-title-wrap h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.accordion-meta-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    flex-shrink: 0;
}

.accordion-meta-tags>span {
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background: var(--brand-orange);
    color: #ffffff;
}

.accordion-body {
    display: none;
    padding: 24px;
    background: #ffffff;
}

.accordion-item.active .accordion-body {
    display: block;
}

.itinerary-details-grid {
    display: grid;
    gap: 12px;
}

.itinerary-detail-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 18px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #004899;
    transition: background 0.2s ease;
}

.itinerary-detail-point:hover {
    background: #f1f5f9;
}

.itinerary-detail-point strong {
    min-width: 95px;
    color: #0a2540;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    padding-top: 1px;
}

.itinerary-detail-point span {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

/* Inclusions & Exclusions Section */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 44px;
}

.inclusions-grid .inc-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05);
    border: 1px solid #e2e8f0;
    display: block;
}

.inclusions-grid .inc-box:first-child {
    border-top: 4px solid #10b981;
}

.inclusions-grid .inc-box:last-child {
    border-top: 4px solid #ef4444;
}

.inc-box h3 {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a2540;
}

.inc-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inc-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.55;
}

.check-icon {
    color: #10b981;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cross-icon {
    color: #ef4444;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Important Notes & Guidelines */
.notes-card {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-left: 5px solid #f59e0b;
    border-radius: 18px;
    padding: 26px 30px;
    margin-bottom: 44px;
}

.notes-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #92400e;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notes-card ul {
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notes-card li {
    font-size: 14px;
    color: #78350f;
    line-height: 1.6;
}

/* Package Booking CTA Card */
.package-booking-cta {
    background: linear-gradient(135deg, #071526 0%, #0a2540 50%, #004899 100%);
    border-radius: 22px;
    padding: 48px 36px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 12px 35px rgba(10, 37, 64, 0.18);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.package-booking-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 162, 232, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.package-booking-cta h2,
.package-booking-cta h3 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.package-booking-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.package-booking-cta .cta-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.package-booking-cta .cta-btn-group .btn-cta {
    background: var(--gradient-orange);
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.package-booking-cta .cta-btn-group .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.5);
    color: #ffffff !important;
}

.package-booking-cta .cta-btn-group .btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.package-booking-cta .cta-btn-group .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}

/* =====================================================
   RESPONSIVE STYLES FOR PACKAGE DETAIL PAGES
   ===================================================== */
@media (max-width: 992px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .accordion-meta-tags {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .package-hero {
        padding: 110px 0 50px;
    }

    .package-hero h1 {
        font-size: 26px;
    }

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

    .overview-card {
        padding: 16px;
    }

    .highlights-card {
        padding: 22px;
    }

    .highlights-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .accordion-header {
        padding: 14px 16px;
    }

    .accordion-title-wrap {
        gap: 10px;
    }

    .accordion-title-wrap h3 {
        font-size: 15px;
    }

    .accordion-body {
        padding: 16px;
    }

    .itinerary-detail-point {
        flex-direction: column;
        gap: 4px;
    }

    .itinerary-detail-point strong {
        min-width: auto;
    }

    .inclusions-grid .inc-box {
        padding: 22px;
    }

    .notes-card {
        padding: 20px;
    }

    .package-booking-cta {
        padding: 36px 20px;
    }

    .hero-actions,
    .package-booking-cta .cta-btn-group {
        flex-direction: column;
    }

    .hero-actions .btn-cta,
    .hero-actions .btn-whatsapp,
    .package-booking-cta .cta-btn-group .btn-cta,
    .package-booking-cta .cta-btn-group .btn-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

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

    .package-hero-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .package-hero-meta .meta-pill {
        justify-content: center;
    }
}