/**
 * DM Holidays — Master Stylesheet
 * Design System + All Components
 * 
 * Table of Contents:
 * 1. CSS Variables / Design Tokens
 * 2. Reset & Base
 * 3. Typography
 * 4. Layout Utilities
 * 5. Topbar
 * 6. Header / Navigation
 * 7. Hero Banner
 * 8. Section Styles
 * 9. Cards (Package, Destination, Feature)
 * 10. Stats Counter
 * 11. Testimonials
 * 12. FAQ Accordion
 * 13. Forms & Inputs
 * 14. Footer
 * 15. Popup / Modal
 * 16. Floating Widgets (WhatsApp, Chatbot)
 * 17. Breadcrumbs
 * 18. Package Detail Page
 * 19. Tour Listing Page
 * 20. Auth Pages
 * 21. Animations & Keyframes
 * 22. Responsive
 */

/* ═══════════════════════════════════════════
   1. CSS VARIABLES / DESIGN TOKENS
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Brand */
    --primary:          #1E3A5F;
    --primary-light:    #2d5a8e;
    --primary-dark:     #0d1f35;
    --primary-rgb:      30, 58, 95;

    /* Accent — CTA */
    --accent:           #FF6B35;
    --accent-hover:     #e55a28;
    --accent-light:     #ff8f5e;
    --accent-glow:      rgba(255, 107, 53, 0.3);
    --accent-rgb:       255, 107, 53;

    /* Secondary — Trust / Success */
    --secondary:        #27AE60;
    --secondary-light:  #2ecc71;
    --secondary-rgb:    39, 174, 96;

    /* Warning / Info */
    --warning:          #F39C12;
    --danger:           #E74C3C;
    --info:             #3498DB;

    /* Backgrounds */
    --bg-primary:       #ffffff;
    --bg-secondary:     #f8f9fa;
    --bg-tertiary:      #f0f2f5;
    --bg-dark:          #0d1f35;
    --bg-darker:        #091526;

    /* Text */
    --text-primary:     #1a1a2e;
    --text-secondary:   #5a6170;
    --text-light:       #ffffff;
    --text-muted:       #8a94a6;

    /* Borders & Shadows */
    --border:           #e4e8ee;
    --border-light:     #f0f2f5;
    --shadow-xs:        0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm:        0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:        0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg:        0 20px 60px rgba(0,0,0,0.15);
    --shadow-xl:        0 30px 80px rgba(0,0,0,0.2);
    --shadow-glow:      0 0 40px rgba(255,107,53,0.25);
    --shadow-card:      0 4px 20px rgba(0,0,0,0.08);
    --shadow-card-hover:0 12px 40px rgba(0,0,0,0.15);

    /* Glass */
    --glass-bg:         rgba(255, 255, 255, 0.08);
    --glass-bg-light:   rgba(255, 255, 255, 0.15);
    --glass-border:     rgba(255, 255, 255, 0.18);
    --glass-blur:       blur(20px);

    /* Radius */
    --radius-sm:        8px;
    --radius-md:        12px;
    --radius-lg:        20px;
    --radius-xl:        30px;
    --radius-pill:      50px;
    --radius-circle:    50%;

    /* Spacing */
    --space-xs:   0.25rem;
    --space-sm:   0.5rem;
    --space-md:   1rem;
    --space-lg:   1.5rem;
    --space-xl:   2rem;
    --space-2xl:  3rem;
    --space-3xl:  4rem;
    --space-4xl:  6rem;

    /* Typography */
    --font-primary:     'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --fw-light:         300;
    --fw-regular:       400;
    --fw-medium:        500;
    --fw-semibold:      600;
    --fw-bold:          700;
    --fw-extrabold:     800;

    /* Transitions */
    --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast:  all 0.15s ease;
    --transition-slow:  all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce:all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index scale */
    --z-dropdown:   100;
    --z-sticky:     200;
    --z-overlay:    300;
    --z-modal:      400;
    --z-toast:      500;
    --z-tooltip:    600;
}


/* ═══════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}


/* ═══════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--fw-bold);
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title h2 {
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: var(--space-lg) auto 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ═══════════════════════════════════════════
   4. LAYOUT UTILITIES
   ═══════════════════════════════════════════ */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-light);
}

.section-alt {
    background: var(--bg-secondary);
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

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

.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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


/* ═══════════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: #fff;
}

.btn-secondary {
    background: var(--primary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: #fff;
}

/* .btn-outline: dark by default (works on white header) */
.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Override for hero/dark backgrounds */
.hero .btn-outline,
.section-dark .btn-outline,
[style*="background:"] .btn-outline {
    border-color: #fff;
    color: #fff;
}

.hero .btn-outline:hover,
.section-dark .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}


/* ═══════════════════════════════════════════
   6. TOPBAR
   ═══════════════════════════════════════════ */

.topbar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: var(--z-sticky);
    overflow: hidden;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-marquee {
    flex: 1;
    overflow: hidden;
    margin-right: var(--space-lg);
}

.topbar-marquee span {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    color: #ffd700;
    font-weight: var(--fw-medium);
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-shrink: 0;
}

.topbar-contact a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-contact a:hover {
    color: #fff;
}

.topbar-social {
    display: flex;
    gap: var(--space-sm);
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-circle);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
}

.topbar-social a:hover {
    background: var(--accent);
    color: #fff;
}


/* ═══════════════════════════════════════════
   7. HEADER / NAVIGATION
   ═══════════════════════════════════════════ */

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition);
    box-shadow: none;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
    z-index: 2;
    position: relative;
}

.logo-copy {
    min-width: 0;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: var(--primary);
    line-height: 1.2;
}

.logo-text span {
    color: var(--accent);
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-quote-label {
    display: inline-block;
    min-width: 0;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    padding: 10px 16px;
    font-weight: var(--fw-medium);
    font-size: 0.92rem;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
    color: var(--accent);
    background: rgba(255,107,53,0.05);
}

.main-nav > li > a .dropdown-arrow {
    font-size: 0.65rem;
    transition: var(--transition);
}

.main-nav > li:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    z-index: var(--z-dropdown);
}

.main-nav > li:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.mega-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mega-dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.mega-dropdown-item img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.mega-dropdown-item .dest-name {
    font-weight: var(--fw-medium);
    font-size: 0.88rem;
}

.mega-dropdown-item .dest-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: var(--fw-semibold);
    color: var(--primary);
    font-size: 0.88rem;
    white-space: nowrap;
    text-decoration: none;
}

.header-phone .phone-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    background: rgba(30,58,95,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.header-phone:hover .phone-icon {
    background: var(--accent);
    color: #fff;
}

/* Auth Buttons */
.auth-buttons {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.header-login-btn {
    font-weight: 600 !important;
    border-color: var(--border-light) !important;
    color: var(--text-primary) !important;
}

.header-login-btn:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    background: rgba(255,107,53,0.05) !important;
}

.header-signup-btn {
    font-weight: 600 !important;
    padding: 6px 14px !important;
    background: linear-gradient(135deg, #1e293b, #0f172a) !important;
    border-color: #0f172a !important;
    color: #fff !important;
}

.header-signup-btn:hover {
    background: linear-gradient(135deg, #334155, #1e293b) !important;
}

.header-quote-btn {
    font-weight: 600 !important;
    padding: 8px 18px !important;
    gap: 6px;
    display: inline-flex;
    align-items: center;
}

.header-account-btn {
    font-weight: 600 !important;
}

/* User dropdown positioning + menu */
.user-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;                        /* always align to right edge of button */
    left: auto;
    min-width: 220px;
    max-width: 280px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.07);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow: hidden;
}

.user-dropdown-wrap:hover .user-dropdown-menu,
.user-dropdown-wrap.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 16px 18px 12px;
    background: linear-gradient(135deg, var(--primary), #2d5a8e);
    color: #fff;
}

.user-dropdown-header strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-dropdown-header span {
    font-size: 0.78rem;
    opacity: 0.8;
}

.user-dropdown-menu .divider {
    height: 1px;
    background: #f0f2f5;
    margin: 4px 0;
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.user-dropdown-menu a:hover {
    background: #f7f8fa;
    color: var(--accent);
}

.user-dropdown-menu a i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--accent);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: calc(var(--z-overlay) + 1);
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100vw);
    max-width: 100vw;
    height: 100dvh;
    background: #fff;
    z-index: calc(var(--z-overlay) + 1);
    transition: var(--transition-slow);
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    display: block;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    border-bottom: none;
    font-size: inherit;
}

.mobile-nav a:hover {
    color: inherit;
    padding-left: 0;
}

.mobile-nav .sub-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav .sub-menu {
    padding-left: 0;
    display: none;
}

.mobile-nav .sub-menu.open {
    display: block;
}

.mobile-nav .sub-menu a {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.mobile-nav-bottom {
    position: static;
    padding: 0;
    background: transparent;
    border-top: 0;
}


/* ═══════════════════════════════════════════
   8. HERO BANNER
   ═══════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 31, 53, 0.85) 0%,
        rgba(30, 58, 95, 0.6) 50%,
        rgba(13, 31, 53, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: var(--space-2xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    color: #fff;
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    max-width: min(100%, 360px);
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-light);
    animation: blink 1.5s infinite;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 1.2s ease;
}

/* Hero Search Bar */
.hero-search {
    max-width: 980px;
    margin: 0 auto;
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 8px;
    display: grid;
    grid-template-columns: minmax(140px, 0.95fr) minmax(0, 1.8fr) minmax(140px, 0.9fr) auto;
    align-items: stretch;
    gap: 10px;
    animation: fadeInUp 1.4s ease;
}

.hero-search .search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px 18px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    color: #fff;
}

.hero-search .search-control {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-search .search-label {
    font-size: 0.72rem;
    font-weight: var(--fw-semibold);
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-search .search-field i {
    color: rgba(255,255,255,0.68);
    flex-shrink: 0;
    font-size: 1rem;
}

.hero-search select,
.hero-search input[type="text"] {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.98rem;
    font-weight: var(--fw-semibold);
    width: 100%;
    min-width: 0;
    padding: 0;
}

.hero-search select option {
    background: var(--primary-dark);
    color: #fff;
}

.hero-search input[readonly] {
    cursor: default;
    opacity: 0.95;
}

.hero-search input::placeholder {
    color: rgba(255,255,255,0.72);
    font-weight: var(--fw-medium);
}

.hero-search select::-ms-expand {
    display: none;
}

.hero-search .btn-search {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: var(--fw-semibold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    justify-content: center;
    min-height: 64px;
}

.hero-search .btn-search:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.hero-search-pills {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    animation: fadeInUp 1.6s ease;
}

.hero-search-pills-label {
    color: rgba(255,255,255,0.76);
    font-size: 0.86rem;
    font-weight: var(--fw-medium);
}

.hero-search-pill {
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: var(--fw-semibold);
    transition: var(--transition-fast);
}

.hero-search-pill:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-1px);
}

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

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}


/* ═══════════════════════════════════════════
   9. STATS COUNTER
   ═══════════════════════════════════════════ */

.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,107,53,0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--fw-extrabold);
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: var(--fw-medium);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    opacity: 0.6;
}


/* ═══════════════════════════════════════════
   10. DESTINATION CARDS
   ═══════════════════════════════════════════ */

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    transition: var(--transition);
}

.destinations-grid {
    grid-auto-rows: 280px;
}

.destinations-grid .destination-card-featured {
    grid-column: span 2;
}

.destination-card-hitbox {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

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

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: #fff;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.destination-card .dest-name {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    margin-bottom: 4px;
}

.destination-card .dest-packages {
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.destination-card .dest-packages i {
    color: var(--accent);
}

.destination-card .explore-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 3;
}

.destination-card:hover .explore-btn {
    opacity: 1;
    transform: translateX(0);
}


/* ═══════════════════════════════════════════
   11. PACKAGE CARDS
   ═══════════════════════════════════════════ */

/* Clickable card wrapper */
.package-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.package-card-link:hover {
    text-decoration: none;
    color: inherit;
}

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

.package-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.package-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.package-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.package-card .card-badges {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    display: flex;
    gap: 6px;
}

.package-card .badge {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-promoted {
    background: var(--accent);
    color: #fff;
}

.badge-featured {
    background: var(--secondary);
    color: #fff;
}

.badge-new {
    background: var(--info);
    color: #fff;
}

.package-card .card-duration {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    background: rgba(0,0,0,0.7);
    backdrop-filter: var(--glass-blur);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: var(--fw-medium);
}

.package-card .card-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-card .card-title {
    font-size: 1.05rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-card .card-route {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.package-card .card-route i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.package-card .card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
}

.card-rating .stars {
    color: #FFC107;
}

.card-rating .rating-text {
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.card-rating .review-count {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.package-card .card-footer-area {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.package-card .card-price {
    display: flex;
    flex-direction: column;
}

.card-price .original-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.card-price .current-price {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--accent);
}

.card-price .per-person {
    font-size: 0.72rem;
    color: var(--text-muted);
}

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


/* ═══════════════════════════════════════════
   12. WHY CHOOSE US
   ═══════════════════════════════════════════ */

.feature-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.feature-card .feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    transform: rotateY(180deg);
}

.feature-card h4 {
    margin-bottom: var(--space-sm);
}

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


/* ═══════════════════════════════════════════
   13. INTERNATIONAL HIGHLIGHT
   ═══════════════════════════════════════════ */

.intl-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #162d4a 100%);
    overflow: hidden;
}

.intl-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,107,53,0.06);
}

.intl-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.intl-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,107,53,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.intl-card .card-image {
    height: 200px;
    overflow: hidden;
}

.intl-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intl-card:hover .card-image img {
    transform: scale(1.1);
}

.intl-card .card-body {
    padding: var(--space-lg);
    color: #fff;
}

.intl-card .card-title {
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: var(--space-xs);
}

.intl-card .card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-md);
}

.intl-card .card-price {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
}

@media (max-width: 480px) {
    .intl-card .flex-between {
        flex-wrap: wrap;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ═══════════════════════════════════════════
   14. TESTIMONIALS
   ═══════════════════════════════════════════ */

/* ── Testimonial Slider Wrapper (mobile = single-card swipe) ── */
.testimonial-slider-wrap {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    background: #fff;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: rgba(255,107,53,0.15);
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
}

.testimonial-card .stars {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-card .review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-card .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: var(--fw-bold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-card .reviewer-name {
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
}

.testimonial-card .reviewer-designation {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-card .trip-name {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: var(--fw-medium);
}

/* Slider nav dots */
.testimonial-dots {
    display: none;   /* shown only on mobile via media query */
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
}

.testimonial-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Prev/Next arrows */
.testimonial-arrows {
    display: none;   /* shown only on mobile */
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonial-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonial-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255,107,53,0.05);
}

/* ── Mobile: one card at a time ── */
@media (max-width: 768px) {
    .testimonial-track {
        gap: 0;           /* no gap; each card is 100vw slot */
        touch-action: pan-y pinch-zoom;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0;
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 22px rgba(0,0,0,0.10);
    }

    .testimonial-slider-wrap {
        border-radius: var(--radius-lg);
    }

    .testimonial-dots {
        display: flex;
    }

    .testimonial-arrows {
        display: flex;
    }
}


/* ── Desktop: track behaves like a 3-col inline grid ── */
@media (min-width: 769px) {
    .testimonial-track {
        flex-wrap: wrap;
        gap: 24px;
    }
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

/* ═══════════════════════════════════════════
   15. FAQ ACCORDION
   ═══════════════════════════════════════════ */

.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    gap: var(--space-md);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question .faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-circle);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 0.8rem;
}

.faq-item.active .faq-toggle {
    background: var(--accent);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}


/* ═══════════════════════════════════════════
   16. NEWSLETTER SECTION
   ═══════════════════════════════════════════ */

.newsletter-section {
    background: linear-gradient(135deg, var(--accent) 0%, #e55a28 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.newsletter-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-inner h2 {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.newsletter-inner p {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 5px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    padding: 14px 28px;
    background: #fff;
    color: var(--accent);
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    color: #fff;
}


/* ═══════════════════════════════════════════
   17. FORMS & INPUTS
   ═══════════════════════════════════════════ */

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: var(--fw-medium);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #fff;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' fill='none' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}


/* ═══════════════════════════════════════════
   18. FOOTER
   ═══════════════════════════════════════════ */

.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text span {
    color: var(--accent);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

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

.footer-brand .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-brand .footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: #fff;
}

.footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--accent);
}


/* ═══════════════════════════════════════════
   19. POPUP / MODAL
   ═══════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: var(--space-lg);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    position: relative;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    color: #fff;
    position: relative;
}

.modal-header h3 {
    color: #fff;
    font-size: 1.3rem;
}

.modal-header p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 4px;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-circle);
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
}

.modal-body {
    padding: var(--space-2xl);
}


/* ═══════════════════════════════════════════
   20. FLOATING WIDGETS
   ═══════════════════════════════════════════ */

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: var(--z-overlay);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    color: #fff;
}

.floating-enquiry {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left bottom;
    z-index: var(--z-overlay);
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    font-weight: var(--fw-semibold);
    font-size: 0.85rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.floating-enquiry:hover {
    background: var(--accent-hover);
    color: #fff;
}


/* ═══════════════════════════════════════════
   21. BREADCRUMB
   ═══════════════════════════════════════════ */

.breadcrumb-section {
    background: var(--bg-secondary);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
}

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

.breadcrumb .separator {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: var(--accent);
    font-weight: var(--fw-medium);
}


/* ═══════════════════════════════════════════
   22. PACKAGE DETAIL PAGE
   ═══════════════════════════════════════════ */

.pkg-hero {
    height: 400px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.pkg-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-hero .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.pkg-hero .pkg-code {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.pkg-hero .pkg-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    margin-left: var(--space-md);
}

.pkg-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

/* Quick Info Bar */
.quick-info {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: var(--fw-medium);
}

.quick-info-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Pricing Sidebar */
.pricing-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: var(--space-xl);
    text-align: center;
    color: #fff;
}

.pricing-card-header .price-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.pricing-card-header .price-amount {
    font-size: 2.5rem;
    font-weight: var(--fw-extrabold);
    line-height: 1;
    margin: var(--space-xs) 0;
}

.pricing-card-header .price-original {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1rem;
}

.pricing-card-body {
    padding: var(--space-xl);
}

.pricing-card-body .form-group {
    margin-bottom: var(--space-md);
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pricing-contact-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

/* Itinerary */
.itinerary-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: var(--space-lg);
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 40px;
    bottom: -var(--space-lg);
    width: 2px;
    background: var(--border);
}

.itinerary-item:last-child::before {
    display: none;
}

.itinerary-item .day-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-circle);
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
}

.itinerary-item .day-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
}

.itinerary-item .day-title {
    font-weight: var(--fw-semibold);
    font-size: 1rem;
    margin-bottom: 4px;
}

.itinerary-item .day-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Inclusions / Exclusions */
.incl-excl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.incl-list li,
.excl-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
}

.incl-list li i {
    color: var(--secondary);
    margin-top: 3px;
}

.excl-list li i {
    color: var(--danger);
    margin-top: 3px;
}


/* ═══════════════════════════════════════════
   23. TOUR LISTING PAGE
   ═══════════════════════════════════════════ */

.listing-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: var(--space-3xl) 0;
    color: #fff;
    text-align: center;
}

.listing-header h1 {
    color: #fff;
}

.listing-header p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: var(--space-sm) auto 0;
}

.listing-filters {
    padding: var(--space-lg) 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.filter-bar .filter-chip {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: #fff;
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: var(--transition);
}

.filter-bar .filter-chip:hover,
.filter-bar .filter-chip.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
}

.listing-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-4xl);
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   24. AUTH PAGES
   ═══════════════════════════════════════════ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: var(--space-xl);
}

.auth-card {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.auth-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: var(--space-2xl);
    text-align: center;
    color: #fff;
}

.auth-card-body {
    padding: var(--space-2xl);
}

.google-btn {
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: var(--fw-medium);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.google-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

.auth-divider {
    text-align: center;
    margin: var(--space-lg) 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 var(--space-md);
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* ═══════════════════════════════════════════
   25. ANIMATIONS & KEYFRAMES
   ═══════════════════════════════════════════ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50%      { box-shadow: 0 0 0 15px rgba(255,107,53,0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40%  { transform: translateY(-10px); }
    60%  { transform: translateY(-5px); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Scroll-triggered animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}


/* ═══════════════════════════════════════════
   26. LOADING / TOAST
   ═══════════════════════════════════════════ */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-toast);
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    transform: translateX(120%);
    transition: var(--transition);
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid var(--secondary);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.info {
    border-left: 4px solid var(--info);
}

.loader {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--border-light) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* ═══════════════════════════════════════════
   27. RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pkg-layout {
        grid-template-columns: 1fr 340px;
    }
    /* Header: hide phone number text, keep icon only */
    .header-phone > span:last-child {
        display: none;
    }
    .header-phone .phone-icon {
        width: 38px;
        height: 38px;
    }
    /* Shrink nav item padding */
    .main-nav > li > a {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
}

@media (max-width: 1100px) {
    /* Hide auth buttons on smaller desktops — they're in mobile nav */
    .header-cta .auth-buttons,
    .header-cta .user-dropdown-wrap {
        display: none;
    }
    .main-nav > li > a {
        padding: 10px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .main-nav,
    .header-cta .header-phone,
    .header-cta .auth-buttons,
    .header-cta .user-dropdown-wrap {
        display: none;
    }
    .hero-search {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        max-width: 720px;
    }
    .hero-search .search-field-destination,
    .hero-search .btn-search {
        grid-column: 1 / -1;
    }
    .mobile-toggle {
        display: flex;
    }
    .header-inner {
        padding: 10px 0;
        justify-content: flex-start;
        gap: 12px;
    }
    .logo {
        flex: 1 1 auto;
    }
    .logo-copy {
        overflow: hidden;
    }
    .logo-text,
    .logo-tagline {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .header-cta {
        margin-left: auto;
        gap: 8px;
    }
    .header-quote-btn {
        padding: 8px 16px !important;
    }
    .mega-dropdown {
        display: none;
    }
    .hero {
        min-height: 70vh;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl) var(--space-lg);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pkg-layout {
        grid-template-columns: 1fr;
    }
    .pricing-sidebar {
        position: static;
    }
    .incl-excl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .topbar-contact {
        display: none;
    }
    .header-inner {
        gap: 10px;
    }
    .logo img {
        height: 44px;
    }
    .logo-text {
        font-size: 1.08rem;
    }
    .logo-tagline {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }
    .header-quote-btn {
        padding: 8px 14px !important;
        font-size: 0.88rem;
    }
    .mobile-toggle {
        padding: 6px;
    }
    .mobile-toggle span {
        width: 22px;
    }
    .hero {
        min-height: 60vh;
    }
    .hero-search {
        grid-template-columns: 1fr;
        border-radius: var(--radius-lg);
        padding: 6px;
        gap: 8px;
    }
    .hero-search .search-field {
        width: 100%;
        padding: 12px 14px;
    }
    .hero-search .btn-search {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        padding: 14px 18px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: var(--space-lg) 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    .pricing-contact-btns {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }
    .newsletter-form input {
        text-align: center;
    }
    .pkg-hero {
        height: 280px;
    }
    .section {
        padding: var(--space-2xl) 0;
    }
    .quick-info {
        gap: var(--space-sm);
    }
    .quick-info-item {
        flex: 1 1 45%;
        font-size: 0.82rem;
    }
    .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
        gap: 12px;
    }
    .destinations-grid .destination-card-featured {
        grid-column: span 1;
    }
    .destination-card .overlay {
        padding: 14px 12px;
    }
    .destination-card .dest-name {
        font-size: 1rem;
    }
    .destination-card .dest-packages {
        font-size: 0.78rem;
        gap: 4px;
    }
    .destination-card .explore-btn {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        opacity: 1;
        transform: none;
    }
    .package-card .card-body {
        padding: 14px;
    }
    .package-card .card-title {
        font-size: 0.98rem;
    }
    .package-card .card-route {
        font-size: 0.78rem;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .package-card .card-rating {
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 10px;
        font-size: 0.78rem;
    }
    .package-card .card-footer-area {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .package-card .card-actions {
        width: 100%;
    }
    .package-card .card-actions .btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.82rem;
    }
    .card-price .current-price {
        font-size: 1.05rem;
    }
    .card-price .original-price,
    .card-price .per-person {
        font-size: 0.72rem;
    }
    .mobile-bottom-bar-inner {
        height: 62px;
    }
    .mb-nav-item {
        flex: 1 1 0;
        width: auto;
        font-size: 0.72rem;
    }
    .mb-nav-item i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    .header-inner {
        gap: 8px;
    }
    .logo img {
        height: 40px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-tagline {
        font-size: 0.54rem;
    }
    .header-cta {
        gap: 6px;
    }
    .header-quote-btn {
        padding: 8px 12px !important;
        font-size: 0.84rem;
    }
    .header-quote-label {
        max-width: 78px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .mobile-toggle {
        padding: 5px;
    }
    .mobile-toggle span {
        width: 20px;
    }
    .hero {
        min-height: 55vh;
    }
    .hero-search {
        gap: 8px;
    }
    .hero-search .search-field {
        padding: 12px 14px;
    }
    .hero-search .btn-search {
        min-height: 54px;
    }
    .destination-card {
        height: 200px;
    }
    .destinations-grid {
        grid-auto-rows: 170px;
    }
    .package-card .card-image {
        height: 150px;
    }
    .btn {
        padding: 10px 22px;
        font-size: 0.88rem;
    }
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}


/* ═══════════════════════════════════════════
   28. PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════ */

.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

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

.page-hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: var(--fw-extrabold);
    margin-bottom: 8px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.page-hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    font-size: 0.85rem;
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.breadcrumb-nav a { color: #fff; text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav span { margin: 0 8px; }

/* Hero Search Bar (Tours page) */
.hero-search-bar {
    max-width: 560px;
    margin: 24px auto 0;
    display: flex;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 5px;
}

.hero-search-bar input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
}

.hero-search-bar input::placeholder { color: rgba(255,255,255,0.6); }

.hero-search-bar button {
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hero-search-bar button:hover {
    background: var(--accent-hover);
    transform: scale(1.03);
}


/* ═══════════════════════════════════════════
   29. TOURS LISTING PAGE
   ═══════════════════════════════════════════ */

.tours-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.tours-sidebar { position: sticky; top: 100px; }

.filter-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.filter-card h3 {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.filter-group {
    margin-bottom: var(--space-lg);
}

.filter-group:last-child { margin-bottom: 0; }

.filter-group h4 {
    font-size: 0.82rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.filter-subheading {
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    padding-top: 4px;
}

.filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.filter-link:hover { background: var(--bg-secondary); color: var(--primary); }

.filter-link.active {
    background: rgba(255,107,53,0.08);
    color: var(--accent);
    font-weight: var(--fw-medium);
}

.filter-link span {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Tour Cards Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: var(--space-xl);
}

.tour-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.tour-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-card-hitbox {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.tour-badge {
    position: absolute;
    top: var(--space-sm);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: var(--fw-semibold);
    z-index: 2;
}

.badge-featured { left: var(--space-sm); background: var(--secondary); color: #fff; }
.badge-discount { right: var(--space-sm); background: var(--accent); color: #fff; }

.tour-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,31,53,0.5);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.tour-card:hover .tour-card-overlay { opacity: 1; }

.tour-card-btn {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-size: 0.88rem;
    text-decoration: none;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}

.tour-card:hover .tour-card-btn { transform: translateY(0); }

.tour-card-body { padding: var(--space-lg); }

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.78rem;
}

.tour-category {
    color: var(--accent);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tour-duration { color: var(--text-muted); }

.tour-card-title {
    font-size: 1.05rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
}

.tour-card-title a { color: var(--text-primary); text-decoration: none; }
.tour-card-title a:hover { color: var(--accent); }

.tour-route {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-route i { color: var(--accent); font-size: 0.75rem; }

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-light);
}

.tour-price-current {
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    color: var(--accent);
}

.tour-price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 4px;
}

.tour-price-per { font-size: 0.72rem; color: var(--text-muted); }

.tour-rating {
    color: #F39C12;
    font-weight: var(--fw-semibold);
    font-size: 0.88rem;
}

.no-results-card {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.no-results-card i { font-size: 3rem; margin-bottom: var(--space-md); opacity: 0.3; }
.no-results-card h3 { margin-bottom: 8px; color: var(--text-primary); }
.no-results-card a { color: var(--accent); }

/* ── Mobile 2-col card compactness ─────────────────────── */
@media (max-width: 768px) {
    .tour-card {
        border-radius: 12px;
    }

    .tour-card-image {
        height: 130px;
    }

    /* Overlay "View Details" hidden on touch — persistent link in body instead */
    .tour-card-overlay {
        display: none;
    }

    .tour-card-body {
        padding: 10px 10px 10px;
    }

    .tour-card-meta {
        font-size: 0.68rem;
        margin-bottom: 5px;
    }

    .tour-category {
        max-width: 70%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
    }

    .tour-card-title {
        font-size: 0.82rem;
        margin-bottom: 4px;
        /* Clamp to 2 lines */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tour-route {
        font-size: 0.7rem;
        margin-bottom: 6px;
        /* Clamp to 1 line */
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tour-card-footer {
        padding-top: 6px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .tour-price-current {
        font-size: 0.95rem;
    }

    .tour-price-original {
        font-size: 0.68rem;
    }

    .tour-price-per {
        font-size: 0.65rem;
    }

    .tour-rating {
        font-size: 0.78rem;
    }

    /* Persist a "Book" CTA below the footer */
    .tour-card-tap-btn {
        display: block;
        text-align: center;
        background: linear-gradient(135deg, var(--accent), #e55a28);
        color: #fff;
        font-size: 0.74rem;
        font-weight: 600;
        padding: 6px 10px;
        text-decoration: none;
        border-top: 1px solid rgba(0,0,0,0.06);
        letter-spacing: 0.3px;
        transition: opacity 0.2s;
    }

    .tour-card-tap-btn:hover {
        opacity: 0.9;
        color: #fff;
    }
}

/* Hide tap-btn on desktop */
@media (min-width: 769px) {
    .tour-card-tap-btn { display: none; }
}



/* ═══════════════════════════════════════════
   30. PACKAGE DETAIL PAGE
   ═══════════════════════════════════════════ */

.pkg-hero {
    padding: 140px 0 70px;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pkg-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: var(--fw-extrabold);
    margin-bottom: 12px;
}

.pkg-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.pkg-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

.pkg-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.pkg-section-title {
    font-size: 1.2rem;
    font-weight: var(--fw-semibold);
    color: var(--primary);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-light);
}

.pkg-section-title i { color: var(--accent); }

.pkg-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* Quick Facts */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.fact-item {
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.fact-item i { font-size: 1.3rem; color: var(--accent); margin-bottom: 8px; display: block; }
.fact-label { display: block; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.fact-value { display: block; font-size: 0.88rem; font-weight: var(--fw-semibold); color: var(--text-primary); }

/* Itinerary Timeline */
.itinerary-timeline { position: relative; padding-left: 20px; }
.itinerary-timeline::before { content: ''; position: absolute; top: 8px; bottom: 0; left: 6px; width: 2px; background: var(--border-light); }
.timeline-item { position: relative; padding-bottom: 30px; padding-left: 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -1px; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2); z-index: 1; }
.timeline-badge { display: inline-block; background: rgba(99, 102, 241, 0.1); color: var(--accent); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: var(--fw-semibold); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.timeline-title { font-size: 1.05rem; color: var(--text-primary); font-weight: var(--fw-semibold); margin-bottom: 8px; }
.timeline-desc { font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary); margin: 0; }
.itinerary-content { font-size: 0.95rem; line-height: 1.9; color: var(--text-secondary); }

/* Inclusions / Exclusions */
.incl-excl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.incl-list h4, .excl-list h4 { margin-bottom: var(--space-md); display: flex; align-items: center; gap: 8px; }

.incl-list ul, .excl-list ul { list-style: none; padding: 0; }

.incl-list li, .excl-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
}

.incl-list li i { color: #27AE60; font-size: 0.75rem; }
.excl-list li i { color: #E74C3C; font-size: 0.75rem; }

/* Booking Sidebar */
.pkg-sidebar { position: sticky; top: 100px; }

.booking-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 2px solid var(--accent);
}

.booking-price-header {
    background: linear-gradient(135deg, var(--primary), #2d5a8e);
    padding: var(--space-xl);
    color: #fff;
    text-align: center;
}

.booking-discount {
    background: var(--accent);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    display: inline-block;
    margin-bottom: 8px;
}

.booking-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.booking-price-current {
    font-size: 2.2rem;
    font-weight: var(--fw-extrabold);
}

.booking-price-original {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.booking-price-note {
    display: block;
    font-size: 0.82rem;
    opacity: 0.8;
    margin-top: 4px;
}

.booking-form { padding: var(--space-lg); }

.booking-field { margin-bottom: var(--space-md); }

.booking-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.booking-field label i { color: var(--accent); margin-right: 4px; }

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    outline: none;
}

.btn-booking {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-booking:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.booking-contact {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.booking-contact p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }

.booking-phone, .booking-whatsapp {
    display: block;
    padding: 10px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    margin-bottom: 6px;
    text-decoration: none;
}

.booking-phone { background: rgba(30,58,95,0.06); color: var(--primary); }
.booking-whatsapp { background: rgba(37,211,102,0.08); color: #25D366; }

.pkg-code-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: var(--space-lg);
    margin-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-code-label { font-size: 0.82rem; color: var(--text-muted); }
.pkg-code-value { font-weight: var(--fw-bold); color: var(--primary); letter-spacing: 1px; }


/* ═══════════════════════════════════════════
   31. ABOUT PAGE
   ═══════════════════════════════════════════ */

.about-story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-story-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-highlight-item {
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.highlight-number {
    display: block;
    font-size: 1.6rem;
    font-weight: var(--fw-extrabold);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.highlight-label { font-size: 0.75rem; color: var(--text-muted); }

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.about-feature-card {
    background: #fff;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon-lg {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.about-feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

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

.about-cta-btn {
    min-width: 220px;
    min-height: 56px;
    padding: 14px 24px;
}

.about-cta-btn-light {
    background: #fff;
    color: #FF6B35;
    border: 2px solid #fff;
}

.about-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.mission-card {
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.mission-icon { font-size: 3rem; margin-bottom: var(--space-md); }

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.mission-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ── Testimonials on About page (premium card layout) ── */
.about-testimonials-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.about-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1060px) {
    .about-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .about-testimonial-grid { grid-template-columns: 1fr; }
}

.about-testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 22px;
    box-shadow: 0 4px 24px rgba(30,58,95,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    border: 1px solid rgba(30,58,95,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}
.about-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 20px 20px 0 0;
}
.about-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30,58,95,0.14);
}
.about-testimonial-quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: rgba(255,107,53,0.15);
    font-family: Georgia, serif;
    margin-bottom: -8px;
}
.about-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0;
}
.about-testimonial-stars .fas { color: #F59E0B; font-size: 0.88rem; }
.about-testimonial-text {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
    margin-bottom: 0;
}
.about-testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(30,58,95,0.07);
    margin-top: auto;
}
.about-testimonial-author > div {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}
.about-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: var(--fw-bold);
    font-size: 1rem;
    flex-shrink: 0;
}
.about-testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.about-testimonial-author span {
    display: block;
    font-size: 0.76rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.about-testimonial-trip {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent) !important;
    font-weight: var(--fw-medium);
    font-size: 0.74rem !important;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ═══════════════════════════════════════════
   32. CONTACT PAGE
   ═══════════════════════════════════════════ */

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.contact-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: rgba(255,107,53,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto var(--space-md);
}

.contact-info-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-info-card a { color: var(--primary); font-weight: var(--fw-semibold); text-decoration: none; }
.contact-info-card a:hover { color: var(--accent); }
.contact-info-card p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-2xl);
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-field { margin-bottom: var(--space-md); }

.contact-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    outline: none;
}

.contact-field textarea { resize: vertical; min-height: 120px; }

.contact-map-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-2xl);
}

.map-embed iframe { border-radius: var(--radius-md); }

.map-address-card {
    display: flex;
    gap: 12px;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.map-address-card i { font-size: 1.2rem; color: var(--accent); margin-top: 4px; }
.map-address-card strong { display: block; margin-bottom: 4px; }
.map-address-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

.contact-social { margin-top: var(--space-xl); text-align: center; }
.contact-social h4 { font-size: 0.9rem; margin-bottom: var(--space-sm); }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }


/* ═══════════════════════════════════════════
   33. LEGAL PAGES (Privacy, Terms)
   ═══════════════════════════════════════════ */

.legal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-3xl);
}

.legal-content h2 {
    font-size: 1.15rem;
    color: var(--primary);
    margin: var(--space-2xl) 0 var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--border-light);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    margin: var(--space-sm) 0 var(--space-lg) var(--space-xl);
    color: var(--text-secondary);
}

.legal-content li {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

.legal-content a { color: var(--accent); }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0 var(--space-lg);
}

.legal-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--bg-secondary);
    font-size: 0.85rem;
    font-weight: var(--fw-semibold);
    color: var(--primary);
    border-bottom: 2px solid var(--border);
}

.legal-table td {
    padding: 12px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.legal-table tr:hover td { background: #fafbfc; }


/* ═══════════════════════════════════════════
   34. RESPONSIVE — INNER PAGES
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .tours-layout { grid-template-columns: 220px 1fr; }
    .pkg-layout { grid-template-columns: 1fr; }
    .pkg-sidebar { position: static; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-features-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
    .quick-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .tours-layout { grid-template-columns: 1fr; }
    .tours-sidebar { position: static; display: none; }
    .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mission-grid { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: repeat(2, 1fr); }
    .incl-excl-grid { grid-template-columns: 1fr; }
    .form-row-2col { grid-template-columns: 1fr; }
    .pkg-hero { background-attachment: scroll; }
    .legal-content { padding: var(--space-xl); }
}

@media (max-width: 480px) {
    .contact-cards-row { grid-template-columns: 1fr; }
    .about-features-grid { grid-template-columns: 1fr; }
    .quick-facts { grid-template-columns: 1fr 1fr; }
    .hero-search-bar { flex-direction: column; border-radius: var(--radius-lg); }
    .hero-search-bar button { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   35. MOBILE BOTTOM NAV BAR (APP-LIKE)
   ═══════════════════════════════════════════ */
.mobile-bottom-bar {
    display: none; /* hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 65px;
}

.mb-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    width: 25%;
    height: 100%;
    transition: all 0.2s ease;
    gap: 4px;
}

.mb-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 2px;
    transition: all 0.2s ease;
}

.mb-nav-item.active {
    color: var(--accent);
}

.mb-nav-item.active i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: calc(65px + env(safe-area-inset-bottom)); } /* add space at bottom of page */
    .floating-whatsapp { bottom: 80px; }
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ═══════════════════════════════════════════
   36. STICKY TAB NAV (Detail Page)
   ═══════════════════════════════════════════ */
.pkg-tab-nav {
    background: #fff;
    border-bottom: 2px solid var(--border-light);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pkg-tab-nav .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pkg-tab-nav .container::-webkit-scrollbar { display: none; }

.pkg-tab-link {
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: var(--fw-semibold);
    color: var(--text-secondary);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-tab-link:hover {
    color: var(--accent);
    text-decoration: none;
}

.pkg-tab-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}


/* ═══════════════════════════════════════════
   37. TOUR HIGHLIGHTS GRID
   ═══════════════════════════════════════════ */
.tour-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.highlight-item .hl-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.highlight-item .hl-label {
    font-size: 0.82rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.highlight-item .hl-value {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .tour-highlights { grid-template-columns: repeat(2, 1fr); }
    .pkg-tab-link { padding: 14px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .tour-highlights { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
    .highlight-item { padding: var(--space-sm) var(--space-md); }
    .highlight-item .hl-icon { width: 36px; height: 36px; font-size: 1.1rem; }
}


/* ═══════════════════════════════════════════
   38. CHATBOT ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes chatBounceIn {
    0%   { transform: scale(0); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.chatbot-window.chat-animate-in {
    animation: chatSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.chatbot-support-actions {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.chatbot-support-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    color: var(--text-secondary);
    background: #fff;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.chatbot-support-actions a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.chatbot-support-actions a i {
    font-size: 0.9rem;
}

/* Improved typing indicator */
.typing-indicator .dot {
    animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
    40%           { transform: scale(1); opacity: 1; }
}


/* ═══════════════════════════════════════════
   38b. PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════ */
.page-hero {
    padding: var(--space-4xl) 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-hero-sm {
    padding: var(--space-2xl) 0;
}

.page-hero-title {
    font-size: 2rem;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-xs);
    color: #fff;
}

.page-hero-sm .page-hero-title { font-size: 1.6rem; }

.page-hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.85;
    color: #fff;
}


/* ═══════════════════════════════════════════
   39. ACCOUNT / DASHBOARD PAGES
   ═══════════════════════════════════════════ */
.account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
    min-height: 60vh;
}

.account-sidebar {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-xl);
    position: sticky;
    top: 100px;
    align-self: start;
}

.account-sidebar .user-info {
    text-align: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-lg);
}

.account-sidebar .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--fw-bold);
    margin: 0 auto var(--space-md);
}

.account-sidebar .user-name {
    font-weight: var(--fw-semibold);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.account-sidebar .user-email {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.account-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    transition: var(--transition);
    margin-bottom: 4px;
}

.account-nav a:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
}

.account-nav a.active {
    background: rgba(255,107,53,0.08);
    color: var(--accent);
    font-weight: var(--fw-semibold);
}

.account-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.account-content {
    min-width: 0;
}

.account-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

/* Dashboard Stats Cards */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.dash-stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.dash-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dash-stat-icon.enquiries { background: rgba(59,130,246,0.1); color: #3b82f6; }
.dash-stat-icon.bookings { background: rgba(16,185,129,0.1); color: #10b981; }
.dash-stat-icon.wishlist { background: rgba(239,68,68,0.1); color: #ef4444; }

.dash-stat-value {
    font-size: 1.8rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    margin-bottom: 4px;
}

.dash-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: var(--fw-medium);
}

/* Bookings Table */
.bookings-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.bookings-table thead {
    background: var(--bg-secondary);
}

.bookings-table th {
    padding: 14px 16px;
    font-size: 0.82rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-align: left;
}

.bookings-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.bookings-table tr:hover td {
    background: #fafbfc;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge.confirmed { background: rgba(16,185,129,0.1); color: #10b981; }
.status-badge.pending { background: rgba(245,158,11,0.1); color: #f59e0b; }
.status-badge.cancelled { background: rgba(239,68,68,0.1); color: #ef4444; }
.status-badge.new { background: rgba(59,130,246,0.1); color: #3b82f6; }
.status-badge.contacted { background: rgba(245,158,11,0.1); color: #d97706; }
.status-badge.follow_up, .status-badge.follow-up { background: rgba(99,102,241,0.1); color: #6366f1; }
.status-badge.converted { background: rgba(16,185,129,0.1); color: #16a34a; }
.status-badge.closed { background: rgba(100,116,139,0.1); color: #64748b; }

/* Recent Enquiries */
.enquiry-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.enquiry-card .pkg-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.enquiry-card .pkg-info { flex: 1; }
.enquiry-card .pkg-name { font-weight: var(--fw-semibold); font-size: 0.95rem; margin-bottom: 4px; }
.enquiry-card .pkg-date { font-size: 0.82rem; color: var(--text-muted); }

/* Profile Form */
.profile-form {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-2xl);
}

.profile-form .avatar-upload {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-light);
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

@media (max-width: 991px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .dash-stats { grid-template-columns: 1fr; }
    .profile-form .form-row { grid-template-columns: 1fr; }
    .enquiry-card { flex-direction: column; align-items: flex-start; }
    .enquiry-card .pkg-thumb { width: 100%; height: 120px; }
}

/* ══════════════════════════════════════════════════════════════
   Section 41: PRICING TABLE
   ══════════════════════════════════════════════════════════════ */

.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #0a1628));
    color: #fff;
}

.pricing-table th {
    padding: 14px 18px;
    font-size: 0.82rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    white-space: nowrap;
}

.pricing-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.pricing-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
}

.pricing-row-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.04)) !important;
    border-left: 3px solid var(--accent, #3b82f6);
}

.pricing-current {
    font-weight: var(--fw-bold);
    color: var(--primary);
    font-size: 1.1rem;
}

.pricing-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.pricing-save {
    background: #dcfce7;
    color: #16a34a;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 8px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .pricing-table th, .pricing-table td { padding: 10px 12px; font-size: 0.82rem; }
    .pricing-current { font-size: 0.95rem; }
}

/* ══════════════════════════════════════════════════════════════
   Section 42: IMAGE GALLERY GRID
   ══════════════════════════════════════════════════════════════ */

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-main {
    grid-row: 1 / 3;
}

.gallery-main img, .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: var(--radius-md);
}

.gallery-main img:hover, .gallery-thumb img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.gallery-main img {
    height: 350px;
}

.gallery-thumb img {
    height: 170px;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-main { grid-row: auto; grid-column: 1 / -1; }
    .gallery-main img { height: 220px; }
    .gallery-thumb img { height: 120px; }
}

/* ══════════════════════════════════════════════════════════════
   Section 43: ITINERARY ACCORDION
   ══════════════════════════════════════════════════════════════ */

.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itinerary-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.itinerary-item.open {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--accent, #3b82f6);
}

.itinerary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}

.itinerary-header:hover {
    background: var(--bg-secondary);
}

.day-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent, #3b82f6));
    color: #fff;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    flex-shrink: 0;
}

.itinerary-title {
    flex: 1;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.itinerary-toggle {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.itinerary-item.open .itinerary-toggle {
    transform: rotate(180deg);
    color: var(--accent, #3b82f6);
}

.itinerary-body {
    display: none;
    padding: 0 18px 18px 82px;
    animation: slideDown 0.3s ease;
}

.itinerary-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-body li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.itinerary-body li i {
    color: #22c55e;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.75rem;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .itinerary-body { padding-left: 18px; }
}

/* ══════════════════════════════════════════════════════════════
   Section 44: INCLUSIONS / EXCLUSIONS TABS
   ══════════════════════════════════════════════════════════════ */

.inc-exc-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.inc-exc-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 0.92rem;
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    font-family: inherit;
}

.inc-exc-tab:hover {
    color: var(--text-primary);
}

.inc-exc-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.inc-exc-panel {
    display: none;
}

.inc-exc-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.inc-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.inc-item, .exc-item {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.inc-item {
    background: #f0fdf4;
    border-left: 3px solid #22c55e;
}

.inc-item i { color: #22c55e; }

.exc-item {
    background: #fef2f2;
    border-left: 3px solid #ef4444;
}

.exc-item i { color: #ef4444; }

/* ══════════════════════════════════════════════════════════════
   Section 45: AMENITIES BAR & CTA BUTTONS
   ══════════════════════════════════════════════════════════════ */

.pkg-amenities-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
    margin-bottom: 8px;
}

.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.amenity-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.amenity-chip i {
    color: var(--accent, #3b82f6);
    font-size: 0.9rem;
}

/* CTA Buttons Row */
.pkg-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-xl, 12px);
    font-size: 0.88rem;
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-phone {
    background: var(--primary);
    color: #fff;
}

.btn-cta-phone:hover { background: var(--primary-dark, #0a1628); }

.btn-cta-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-cta-whatsapp:hover { background: #128c7e; }

.btn-cta-email {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
}

.btn-cta-email:hover { filter: brightness(1.1); }

.btn-cta-enquiry {
    background: linear-gradient(135deg, var(--accent, #3b82f6), #6366f1);
    color: #fff;
}

.btn-cta-enquiry:hover { filter: brightness(1.1); }

@media (max-width: 640px) {
    .pkg-cta-buttons { flex-direction: column; }
    .btn-cta { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   Section 46: BOOKING SIDEBAR ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */

.booking-from {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-tier-select {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-light);
}

.booking-tier-select label {
    display: block;
    font-size: 0.82rem;
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    margin-bottom: 6px;
}

.booking-tier-select label i {
    margin-right: 6px;
    color: var(--accent, #3b82f6);
}

.booking-tier-select select {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-light);
    font-family: inherit;
    font-size: 0.88rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
}

.booking-tier-select select:focus {
    outline: none;
    border-color: var(--accent, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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


/* ═══════════════════════════════════════════
   50. DETAIL PAGE — Gallery-First Layout
   ═══════════════════════════════════════════ */

/* Breadcrumb */
.detail-breadcrumb {
    background: var(--bg-secondary, #f8fafc);
    padding: 14px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light, #e2e8f0);
}
.detail-breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.detail-breadcrumb a {
    color: var(--accent, #3b82f6);
    text-decoration: none;
    font-weight: 500;
}
.detail-breadcrumb a:hover { text-decoration: underline; }
.detail-breadcrumb span { color: var(--text-muted, #94a3b8); }
.detail-breadcrumb .current {
    color: var(--text-primary, #1e293b);
    font-weight: 600;
}

/* Gallery Section */
.detail-gallery-section {
    padding: 24px 0 0;
    background: #fff;
}
.detail-gallery {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
}
.gallery-main-img {
    position: relative;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-secondary, #f1f5f9);
}
.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s;
}
.gallery-main-img:hover img { transform: scale(1.03); }
.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 380px;
}
.gallery-thumb-item {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.gallery-thumb-item.active,
.gallery-thumb-item:hover {
    border-color: var(--accent, #3b82f6);
    transform: scale(1.05);
}
.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section Layout */
.detail-info-section {
    padding: 32px 0 40px;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Title & Meta */
.detail-main,
.detail-layout,
.detail-meta-row,
.detail-section,
.qf-item {
    min-width: 0;
}

.detail-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: var(--fw-extrabold, 800);
    color: var(--text-primary, #0d1f35);
    margin-bottom: 12px;
    line-height: 1.25;
}
.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-secondary, #f1f5f9);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary, #475569);
    max-width: 100%;
}
.meta-chip i { color: var(--accent, #3b82f6); font-size: 0.85rem; }
.meta-rating { background: #fef3c7; color: #92400e; }
.meta-rating i { color: #f59e0b; }

.meta-chip-route {
    flex: 1 1 100%;
    align-items: flex-start;
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: anywhere;
    border-radius: 16px;
}

.meta-chip-route i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Mobile Price Banner (hidden on desktop) */
.detail-price-mobile {
    display: none;
    background: linear-gradient(135deg, #0d1f35, #1a365d);
    border-radius: var(--radius-lg, 16px);
    padding: 16px 20px;
    margin-bottom: 20px;
    color: #fff;
}
.price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.price-from { font-size: 0.78rem; opacity: 0.7; }
.price-current { font-size: 1.6rem; font-weight: 800; color: #4ade80; }
.price-original { font-size: 1rem; text-decoration: line-through; opacity: 0.5; }
.price-per { font-size: 0.78rem; opacity: 0.6; }

/* Highlights Grid — 2×2 */
.detail-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.dh-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-secondary, #f8fafc);
    border-radius: var(--radius-md, 12px);
    border: 1px solid var(--border-light, #e2e8f0);
}
.dh-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #3b82f6);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.dh-label { font-size: 0.75rem; color: var(--text-muted, #94a3b8); text-transform: uppercase; letter-spacing: 0.5px; }
.dh-value { font-size: 0.9rem; font-weight: 600; color: var(--text-primary, #1e293b); }

/* Amenity Tags */
.detail-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary, #475569);
    transition: all 0.2s;
}
.amenity-tag:hover { border-color: var(--accent, #3b82f6); background: rgba(59,130,246,0.04); }
.amenity-tag i { color: var(--accent, #3b82f6); }

/* Section Titles */
.detail-section {
    margin-bottom: 32px;
    background: #fff;
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--border-light, #e2e8f0);
    padding: 24px;
}
.detail-section-title {
    font-size: 1.2rem;
    font-weight: var(--fw-bold, 700);
    color: var(--text-primary, #0d1f35);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-section-title i { color: var(--accent, #3b82f6); }
.detail-section-desc {
    font-size: 0.88rem;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 16px;
}

/* Pricing Cards (mobile-friendly) */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 12px;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-secondary, #ffffff);
    border: 2px solid var(--border-light, #e2e8f0);
    border-radius: var(--radius-lg, 16px);
    padding: 24px 20px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
.pricing-card:hover {
    border-color: var(--accent, #3b82f6);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.12);
}
.pricing-card-popular {
    border-color: var(--accent, #3b82f6);
    background: linear-gradient(145deg, #ffffff, rgba(59,130,246,0.05));
    box-shadow: 0 4px 20px rgba(59,130,246,0.08); /* base shadow to highlight it */
    padding-top: 42px;
}
.pc-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff6b35, #ff8b3d);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255,107,53,0.3);
    white-space: nowrap;
    z-index: 2;
}
.pc-hotel {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    margin-bottom: 8px;
}
.pc-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary, #27ae60);
    margin-bottom: 4px;
}
.pc-original {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    text-decoration: line-through;
    margin-bottom: 6px;
}
.pc-discount {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 16px;
}
.pc-book-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto; /* Push button to bottom if cards differ in height */
}

/* Quick Facts Grid */
.detail-quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.qf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-secondary, #f8fafc);
    border-radius: var(--radius-md, 10px);
    font-size: 0.85rem;
}
.qf-item i { color: var(--accent, #3b82f6); width: 18px; text-align: center; }
.qf-label { color: var(--text-muted, #94a3b8); margin-right: 4px; }
.qf-value { font-weight: 600; color: var(--text-primary, #1e293b); min-width: 0; overflow-wrap: anywhere; }

/* Overview Text */
.detail-overview-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-secondary, #475569);
}

/* CTA Row */
.detail-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
}


/* ═══════════════════════════════════════════
   51. MOBILE BOOKING BAR (Sticky Bottom)
   ═══════════════════════════════════════════ */

.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--border-light, #e2e8f0);
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.mobile-booking-bar.visible {
    transform: translateY(0);
}
.mbb-price {
    flex: 1 1 110px;
    min-width: 0;
}
.mbb-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary, #27ae60);
}
.mbb-per {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted, #94a3b8);
}
.mbb-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.2s;
}
.mbb-btn:hover { transform: scale(1.03); }
.mbb-book {
    background: var(--accent, #ff6b35);
    color: #fff;
    flex: 1 1 150px;
    min-width: 0;
}
.mbb-wa {
    background: #25D366;
    color: #fff;
    padding: 10px 14px;
    flex: 0 0 auto;
}


/* ═══════════════════════════════════════════
   52. ENHANCED MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 991px) {
    /* Detail page: gallery full width, stack layout */
    .detail-gallery {
        grid-template-columns: 1fr;
    }
    .gallery-thumbs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 8px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .gallery-thumb-item {
        width: 90px;
        height: 65px;
        flex-shrink: 0;
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .detail-sidebar {
        position: static;
    }
    .detail-price-mobile {
        display: block;
    }
    .mobile-booking-bar {
        display: grid;
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) 48px;
        align-items: center;
        flex-wrap: nowrap;
    }
    .mbb-book {
        width: 100%;
    }
    .mbb-wa {
        width: 48px;
        padding: 0;
        aspect-ratio: 1;
    }
}

@media (max-width: 767px) {
    /* General mobile polish */
    .section {
        padding: 40px 0;
    }
    .section-title h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    .section-title p {
        font-size: 0.88rem;
    }

    /* Package cards on mobile */
    .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    /* Listing-grid card compactness for 2-col mobile */
    .listing-grid .package-card .card-image {
        height: 130px;
    }
    .listing-grid .package-card .card-body {
        padding: 10px 10px 8px;
    }
    .listing-grid .package-card .card-title {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
        margin-bottom: 4px;
    }
    .listing-grid .package-card .card-route {
        font-size: 0.72rem;
        margin-bottom: 6px;
    }
    .listing-grid .package-card .card-rating {
        font-size: 0.72rem;
        gap: 4px;
        margin-bottom: 6px;
    }
    .listing-grid .package-card .card-footer-area {
        padding-top: 6px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .listing-grid .card-price .current-price {
        font-size: 0.95rem;
    }
    .listing-grid .card-price .original-price {
        font-size: 0.68rem;
    }
    .listing-grid .package-card .card-actions {
        width: 100%;
    }
    .listing-grid .package-card .card-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 7px 6px;
        font-size: 0.75rem;
    }
    .listing-grid .package-card .card-duration {
        font-size: 0.68rem;
        padding: 3px 8px;
    }
    .listing-grid .package-card .badge {
        font-size: 0.62rem;
        padding: 3px 7px;
    }

    /* Detail page  */
    .detail-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .dh-item {
        padding: 10px 12px;
    }
    .dh-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    .detail-section {
        padding: 18px;
        border-radius: 12px;
    }
    .pricing-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .pricing-card {
        padding: 14px;
    }
    .pricing-card-popular {
        padding-top: 38px;
    }
    .pc-price {
        font-size: 1.2rem;
    }

    /* CTA Row stack */
    .detail-cta-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .btn-cta {
        font-size: 0.82rem;
        padding: 10px 12px;
        justify-content: center;
        text-align: center;
    }

    /* Footer polish */
    .footer-grid {
        gap: 24px;
    }
    .footer-brand p {
        font-size: 0.85rem;
    }

    /* Stats smaller on mobile */
    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    #whyUs .feature-card {
        padding: 20px 14px;
    }
    #whyUs .feature-card .feature-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 12px;
        font-size: 1.35rem;
    }
    #whyUs .feature-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    #whyUs .feature-card p {
        display: none;
    }
    .booking-card {
        border-width: 1px;
        border-radius: 16px;
    }
    .booking-price-header,
    .booking-tier-select,
    .booking-form,
    .booking-contact {
        padding-left: 16px;
        padding-right: 16px;
    }
    .booking-price-header {
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

@media (max-width: 480px) {
    /* Keep cards in a cleaner 2-column mobile grid */
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Container padding */
    .container {
        padding: 0 14px;
    }

    /* Detail page small phone */
    .detail-title {
        font-size: 1.3rem;
    }
    .meta-chip {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .meta-chip-route {
        padding: 8px 10px;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .detail-quick-facts {
        grid-template-columns: 1fr;
    }
    .detail-cta-row {
        grid-template-columns: 1fr;
    }
    .about-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .about-feature-card {
        padding: 18px 14px;
    }
    .about-feature-card p {
        display: none;
    }
    .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .about-cta-btn {
        width: 100%;
        min-width: 0;
    }

    /* Hero adjustments */
    .hero {
        min-height: 50vh;
    }
    .hero h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    /* Destination cards */
    .destination-card {
        height: 160px;
    }

    /* Package card images */
    .package-card .card-image {
        height: 160px;
    }

    /* Booking bar */
    .mobile-booking-bar {
        bottom: 56px;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) 44px;
        padding: 10px 12px;
        gap: 8px;
    }
    .mbb-current {
        font-size: 1rem;
    }
    .mbb-btn {
        min-height: 44px;
        padding: 8px 12px;
        font-size: 0.82rem;
    }
    .mbb-wa {
        width: 44px;
    }
    .pricing-card-popular {
        padding-top: 34px;
    }

    /* Mobile bottom nav adjust */
    .mobile-bottom-bar {
        padding: 6px 0;
    }

    /* Testimonials are handled by slider CSS — no override needed here */
}

@media (max-width: 360px) {
    .grid-3,
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    .destinations-grid .destination-card-featured {
        grid-column: span 1;
    }
    .mobile-booking-bar {
        grid-template-columns: minmax(0, 1fr) 44px;
        grid-template-rows: auto auto;
    }
    .mbb-price {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 4px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CHAR DHAM YATRA — Nav Special Styles
   ═══════════════════════════════════════════════════════════════ */

/* Glowing pill in the main nav */
.nav-chardham-link {
    background: linear-gradient(135deg, #FF6B35, #e55a28) !important;
    color: #fff !important;
    padding: 7px 16px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: .83rem !important;
    letter-spacing: .3px;
    box-shadow: 0 3px 14px rgba(255,107,53,0.4);
    animation: cdNavPulse 2.5s ease-in-out infinite;
    transition: transform .2s, box-shadow .2s !important;
}
.nav-chardham-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255,107,53,0.55) !important;
    color: #fff !important;
}
@keyframes cdNavPulse {
    0%, 100% { box-shadow: 0 3px 14px rgba(255,107,53,0.4); }
    50%       { box-shadow: 0 3px 22px rgba(255,107,53,0.65); }
}

/* Chardham item in the mega dropdown */
.mega-chardham {
    background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,107,53,0.02)) !important;
    border: 1.5px solid rgba(255,107,53,0.3) !important;
}
.mega-chardham:hover {
    background: rgba(255,107,53,0.14) !important;
    border-color: rgba(255,107,53,0.55) !important;
}
.mega-chardham .dest-name { color: #FF6B35 !important; }

@media (max-width: 1024px) {
    .nav-chardham-li { display: none; }
}

