/**
 * =====================================================
 * TYAGI CABS - PREMIUM TRAVEL DESIGN SYSTEM
 * Design: Liquid Glass / Blue Primary + Gold Accent
 * Colors: Professional Blue + Luxury Gold from Logo
 * Typography: DM Serif Display + DM Sans
 * =====================================================
 */

/* =====================================================
   DESIGN SYSTEM VARIABLES
   ===================================================== */
:root {
    /* ===== BRAND COLORS (Blue primary + Gold accent) ===== */
    --mountain-blue: #066aab;
    --mountain-blue-light: #0880cc;
    --mountain-blue-dark: #04507f;
    --sunset-orange: #C9A84C;
    --sunset-orange-light: #E2C97A;
    --sunset-orange-dark: #A08530;
    --teal: #0891b2;
    --teal-light: #22d3ee;
    --teal-dark: #0e7490;
    --forest-green: #1D6B2E;
    --forest-green-light: #28893B;
    --forest-green-dark: #155221;

    /* ===== GOLD ACCENT SYSTEM ===== */
    --gold: #C9A84C;
    --gold-light: #E2C97A;
    --gold-dark: #A08530;
    --gold-pale: #F5ECD7;
    --navy: #1B2A4A;
    --navy-light: #2A3F6B;
    --navy-dark: #111D35;

    /* ===== BACKGROUNDS ===== */
    --sky-light: #EEF6FC;
    --warm-cream: #FFF9F0;
    --bg-body: #F4F7FA;
    --color-white: #FFFFFF;

    /* ===== GLASS SYSTEM ===== */
    --glass-white: rgba(255, 255, 255, 0.55);
    --glass-white-heavy: rgba(255, 255, 255, 0.75);
    --glass-white-light: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-strong: rgba(255, 255, 255, 0.5);
    --glass-gold: rgba(201, 168, 76, 0.08);
    --glass-gold-border: rgba(201, 168, 76, 0.15);
    --glass-blur: blur(20px) saturate(180%);
    --glass-blur-light: blur(12px) saturate(150%);
    --glass-blur-heavy: blur(30px) saturate(200%);
    --glass-radius: 20px;
    --glass-radius-sm: 14px;
    --glass-radius-lg: 28px;

    /* ===== NEUTRALS ===== */
    --color-charcoal: #1E293B;
    --color-gray-dark: #475569;
    --color-gray-medium: #94A3B8;
    --color-gray-light: #E2E8F0;
    --color-gray-lighter: #F1F5F9;

    /* ===== LEGACY COMPATIBILITY ===== */
    --primary-color: var(--mountain-blue);
    --secondary-color: var(--teal);
    --dark-color: var(--color-charcoal);
    --light-color: var(--bg-body);
    --gray-color: var(--color-gray-medium);
    --success-color: var(--forest-green);
    --danger-color: #EF4444;
    --warning-color: #F59E0B;

    /* ===== TYPOGRAPHY ===== */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: clamp(1.5rem, 2.5vw, 1.875rem);
    --text-4xl: clamp(1.875rem, 3vw, 2.25rem);
    --text-5xl: clamp(2.25rem, 4vw, 3rem);
    --text-6xl: clamp(2.75rem, 5vw, 3.75rem);
    --text-7xl: clamp(3rem, 6vw, 4.5rem);

    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* ===== SPACING ===== */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* ===== SHADOWS (soft, blue-tinted) ===== */
    --shadow-xs: 0 1px 3px rgba(6, 106, 171, 0.04);
    --shadow-sm: 0 2px 8px rgba(6, 106, 171, 0.06);
    --shadow-md: 0 4px 16px rgba(6, 106, 171, 0.08);
    --shadow-lg: 0 8px 32px rgba(6, 106, 171, 0.08);
    --shadow-xl: 0 16px 48px rgba(6, 106, 171, 0.10);
    --shadow-glass: 0 8px 32px rgba(6, 106, 171, 0.06);
    --shadow-glass-hover: 0 12px 40px rgba(6, 106, 171, 0.12);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.2);
    --shadow-gold-hover: 0 8px 32px rgba(201, 168, 76, 0.3);

    --box-shadow: var(--shadow-md);

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: var(--glass-radius);
    --radius-full: 9999px;
    --border-radius: var(--radius-xl);

    /* ===== TRANSITIONS ===== */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-slower: 600ms ease;
    --transition: all var(--transition-base);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ===== GRADIENTS ===== */
    --gradient-brand: linear-gradient(135deg, var(--mountain-blue) 0%, var(--teal) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-nature: linear-gradient(135deg, var(--forest-green) 0%, var(--teal) 100%);
    --gradient-luxury: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    --gradient-gold-shine: linear-gradient(135deg, #C9A84C 0%, #E8D5A0 50%, #C9A84C 100%);
    --gradient-overlay-dark: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    --gradient-overlay-light: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    --gradient-mesh: radial-gradient(at 20% 80%, rgba(6, 106, 171, 0.05) 0%, transparent 50%),
        radial-gradient(at 80% 20%, rgba(8, 128, 204, 0.04) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(6, 106, 171, 0.03) 0%, transparent 60%);
}

/* =====================================================
   BOOTSTRAP 5 PRIMARY COLOR OVERRIDE
   ===================================================== */
:root,
[data-bs-theme] {
    --bs-primary: #066aab;
    --bs-primary-rgb: 6, 106, 171;
    --bs-link-color: #066aab;
    --bs-link-hover-color: #04507f;
}

.btn-primary {
    --bs-btn-bg: #066aab;
    --bs-btn-border-color: #066aab;
    --bs-btn-hover-bg: #04507f;
    --bs-btn-hover-border-color: #04507f;
    --bs-btn-active-bg: #04507f;
    --bs-btn-active-border-color: #04507f;
}

.btn-outline-primary {
    --bs-btn-color: #066aab;
    --bs-btn-border-color: #066aab;
    --bs-btn-hover-bg: #066aab;
    --bs-btn-hover-border-color: #066aab;
    --bs-btn-active-bg: #04507f;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: var(--font-regular);
    color: var(--color-charcoal);
    line-height: var(--leading-normal);
    overflow-x: hidden;
    background: var(--bg-body);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--font-regular);
    line-height: var(--leading-tight);
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

h1 { font-size: var(--text-5xl); letter-spacing: -0.01em; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    font-family: var(--font-body);
    line-height: var(--leading-relaxed);
    margin-bottom: 1rem;
    color: var(--color-gray-dark);
}

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

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

/* =====================================================
   GLASS UTILITY CLASSES
   ===================================================== */
.glass {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    box-shadow: var(--shadow-glass);
}

.glass-heavy {
    background: var(--glass-white-heavy);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--glass-radius);
    box-shadow: var(--shadow-glass);
}

.glass-light {
    background: var(--glass-white-light);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
    .glass,
    .glass-heavy,
    .glass-light,
    .navbar,
    .tour-card,
    .feature-box,
    .testimonial-card,
    .destination-card .destination-info,
    .footer {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* =====================================================
   SECTION STYLES
   ===================================================== */
.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
}

.section.bg-light {
    background: transparent;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
}

.section-title h6 {
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: var(--text-sm);
}

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

/* =====================================================
   1. NAVBAR — Dark Premium Navigation
   ===================================================== */
.navbar {
    background: var(--navy);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0;
    transition: all 0.4s ease;
    z-index: 1050;
    position: sticky;
    top: 0;
}

.navbar.scrolled {
    background: var(--navy-dark);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--gold) !important;
    transition: var(--transition);
    padding: 0;
    margin: -1rem 0;
}

.navbar-brand img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.navbar.scrolled .navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.3));
}

.navbar .nav-link {
    font-family: var(--font-body);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: var(--text-sm);
    padding: 0.4rem 0.9rem !important;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold-light) !important;
    background: rgba(201, 168, 76, 0.1);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold-shine);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

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

.navbar .dropdown-menu {
    background: var(--navy);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--glass-radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.navbar .dropdown-item:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-light);
}

.navbar .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Navbar toggler for mobile — light icon on dark bg */
.navbar-toggler {
    border-color: rgba(201, 168, 76, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 168, 76, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .btn-primary {
    background: var(--gradient-gold-shine);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.4rem 1.25rem;
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.2);
}

.navbar .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold-hover);
    color: var(--navy-dark);
    background: var(--gold-light);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}

/* =====================================================
   2. HERO SLIDER
   ===================================================== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 600px;
    max-height: 920px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-bg-anim {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@keyframes heroZoomMobile {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.15) translateY(-2%); }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(8, 128, 204, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(8, 128, 204, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroTextReveal {
    from { opacity: 0; transform: translateY(40px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroBtnReveal {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroLineExpand {
    from { width: 0; }
    to { width: 60px; }
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(27, 42, 74, 0.55) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content-slider {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 720px;
}

/* Decorative gold accent line above title */
.hero-content-slider::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold-shine);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    animation: heroLineExpand 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title-slider {
    font-family: var(--font-display);
    font-size: var(--text-7xl);
    color: #FFFFFF !important;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: heroTextReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-subtitle-slider {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.92);
    font-weight: var(--font-regular);
    margin-bottom: 2.25rem;
    max-width: 540px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    animation: heroTextReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-actions-slider {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroBtnReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-actions-slider .btn-primary {
    background: var(--color-white);
    border: none;
    color: var(--navy-dark);
    font-weight: var(--font-bold);
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.01em;
}

.hero-actions-slider .btn-primary:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero-actions-slider .btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    padding: 0.9rem 2.25rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions-slider .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Carousel controls — premium glass arrows */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: all 0.4s ease;
    margin: 0 2rem;
    bottom: auto;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

/* Carousel indicators — pill style */
.hero-slider .carousel-indicators {
    bottom: 2.5rem;
    gap: 6px;
}

.hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slider .carousel-indicators button.active {
    background: var(--color-white);
    border-radius: var(--radius-full);
    width: 32px;
    transform: none;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* =====================================================
   3. FEATURE BOXES — Floating Glass Panels
   ===================================================== */
.feature-box {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glass-hover);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 106, 171, 0.08), rgba(27, 42, 74, 0.08));
    color: var(--mountain-blue);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background: var(--gradient-brand);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(6, 106, 171, 0.25);
    transform: scale(1.05);
}

.feature-box h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: var(--text-sm);
    color: var(--color-gray-dark);
    margin-bottom: 0;
    line-height: var(--leading-normal);
}

/* =====================================================
   4. TOUR CARDS — Glass Cards
   ===================================================== */
.tour-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-glass);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glass-hover);
    border-color: var(--glass-border-strong);
}

.tour-card .img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.badge-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-brand);
    color: var(--color-white);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 0.03em;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rating-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--color-charcoal);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-badge .fa-star {
    color: var(--sunset-orange);
    font-size: 0.65rem;
}

.rating-badge .rating-count {
    color: var(--color-gray-dark);
    font-weight: var(--font-regular);
}

.tour-card .card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: transparent;
}

.duration-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.tour-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
    line-height: var(--leading-snug);
}

.tour-title a {
    color: var(--color-charcoal) !important;
    transition: color 0.3s ease;
}

.tour-title a:hover {
    color: var(--mountain-blue) !important;
}

.tour-card-description {
    font-size: var(--text-sm);
    color: var(--color-gray-dark);
    margin-bottom: 0.75rem;
    line-height: var(--leading-normal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.tour-route {
    font-size: var(--text-xs);
    color: var(--color-gray-medium);
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-gray-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.75rem;
}

.tour-route::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.4rem;
    color: var(--teal);
    font-size: 0.65rem;
}

/* Pricing */
.price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(6, 106, 171, 0.06);
}

.pricing-info {
    display: flex;
    flex-direction: column;
}

.mrp-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.25rem;
}

.old-price {
    font-size: var(--text-sm);
    color: var(--color-gray-medium);
    text-decoration: line-through;
}

.savings-badge {
    font-size: 0.65rem;
    font-weight: var(--font-bold);
    color: var(--forest-green);
    background: rgba(29, 107, 46, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
}

.final-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.actual-price {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--mountain-blue);
    font-weight: var(--font-regular);
    line-height: 1;
}

.price-unit {
    font-size: var(--text-xs);
    color: var(--color-gray-medium);
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(29, 107, 46, 0.08);
    color: var(--forest-green);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-call:hover {
    background: var(--forest-green);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(29, 107, 46, 0.25);
    transform: scale(1.05);
}

.btn-request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-brand);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.2);
}

.btn-request:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 106, 171, 0.3);
}

/* =====================================================
   5. DESTINATION CARDS
   ===================================================== */
.destination-card {
    position: relative;
    border-radius: var(--glass-radius);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-glass);
    transition: all 0.4s ease;
}

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

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

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

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: var(--color-white);
    z-index: 2;
}

.destination-info h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.destination-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    margin-bottom: 0.75rem;
}

.destination-info .btn-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    padding: 0.4rem 1rem;
    transition: all 0.3s ease;
}

.destination-info .btn-light:hover {
    background: var(--color-white);
    color: var(--mountain-blue);
    border-color: var(--color-white);
}

/* =====================================================
   6. TESTIMONIALS / REVIEWS
   ===================================================== */
.testimonial-card {
    background: var(--glass-white) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--glass-radius) !important;
    box-shadow: var(--shadow-glass);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(6, 106, 171, 0.06);
    line-height: 1;
    pointer-events: none;
}

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

.testimonial-card .rating .fa-star {
    color: var(--sunset-orange) !important;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--color-gray-dark) !important;
    line-height: var(--leading-relaxed);
    font-style: italic;
}

.testimonial-user img {
    border-color: var(--glass-border) !important;
    box-shadow: 0 2px 8px rgba(6, 106, 171, 0.1);
}

.testimonial-card .text-primary {
    color: var(--mountain-blue) !important;
}

/* =====================================================
   7. CTA SECTION — Gradient Mesh with Glass Overlay
   ===================================================== */
.dynamic-cta-section {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--gradient-brand);
    overflow: hidden;
    isolation: isolate;
}

.dynamic-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(8, 128, 204, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(27, 42, 74, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-shapes span {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-shapes span:nth-child(1) { width: 200px; height: 200px; top: -50px; left: 10%; }
.cta-shapes span:nth-child(2) { width: 120px; height: 120px; bottom: -30px; right: 15%; }
.cta-shapes span:nth-child(3) { width: 80px; height: 80px; top: 40%; left: 60%; }
.cta-shapes span:nth-child(4) { width: 160px; height: 160px; top: 10%; right: 5%; }
.cta-shapes span:nth-child(5) { width: 60px; height: 60px; bottom: 20%; left: 30%; }
.cta-shapes span:nth-child(6) { width: 100px; height: 100px; top: 60%; right: 40%; }

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--color-white) !important;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: var(--color-white);
    color: var(--mountain-blue);
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    color: var(--mountain-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* =====================================================
   8. FOOTER — Dark Glass
   ===================================================== */
.footer {
    background: linear-gradient(to bottom, var(--color-charcoal), #0F172A);
    color: rgba(255, 255, 255, 0.8);
    padding: clamp(3rem, 5vw, 4rem) 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 106, 171, 0.3), transparent);
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-text img {
    display: inline-block;
}

.footer-logo-text span {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-white);
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--mountain-blue);
    border-color: var(--mountain-blue);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.3);
}

.footer-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--teal);
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 0.25rem;
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
    color: var(--teal);
    margin-top: 0.2rem;
    font-size: var(--text-sm);
    width: 16px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-sm);
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* Filter white for logo in dark footer */
.filter-white {
    filter: brightness(0) invert(1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

/* =====================================================
   9. SUBPAGE HEADERS
   ===================================================== */
.page-header {
    background: var(--gradient-brand);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(8, 128, 204, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--color-white);
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.page-header .breadcrumb-item.active {
    color: var(--color-white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   10. FILTER SIDEBAR (Tours Page)
   ===================================================== */
.filter-sidebar,
.filter-section {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    position: sticky;
    top: 100px;
}

.filter-sidebar h5,
.filter-section h5 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.filter-sidebar .form-label,
.filter-section .form-label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    margin-bottom: 0.4rem;
}

.filter-sidebar .form-control,
.filter-sidebar .form-select,
.filter-section .form-control,
.filter-section .form-select {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-light);
    padding: 0.6rem 1rem;
    font-size: var(--text-sm);
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.filter-sidebar .form-control:focus,
.filter-sidebar .form-select:focus,
.filter-section .form-control:focus,
.filter-section .form-select:focus {
    border-color: var(--mountain-blue);
    box-shadow: 0 0 0 3px rgba(6, 106, 171, 0.1);
}

/* =====================================================
   11. FORMS & AUTH PAGES
   ===================================================== */
.auth-container,
.login-container,
.register-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.auth-card,
.login-card,
.register-card {
    background: var(--glass-white-heavy);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-xl);
}

.auth-card h2,
.login-card h2,
.register-card h2 {
    font-family: var(--font-display);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.form-control,
.form-select {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-light);
    padding: 0.75rem 1rem;
    font-size: var(--text-base);
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    color: var(--color-charcoal);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--mountain-blue);
    box-shadow: 0 0 0 3px rgba(6, 106, 171, 0.1);
    background: var(--color-white);
}

.form-control::placeholder {
    color: var(--color-gray-medium);
}

.form-label {
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    font-size: var(--text-sm);
    margin-bottom: 0.4rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: var(--radius-lg);
}

textarea.form-control {
    border-radius: var(--radius-lg);
    min-height: 120px;
}

.form-check-input:checked {
    background-color: var(--mountain-blue);
    border-color: var(--mountain-blue);
}

/* =====================================================
   12. TOUR DETAIL PAGE
   ===================================================== */
.tour-detail-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.tour-detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail-header .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.tour-detail-header .tour-info-overlay {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--color-white);
}

.tour-detail-content {
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}

.tour-detail-card,
.tour-info-card,
.booking-sidebar {
    background: var(--glass-white-heavy);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 2rem;
    box-shadow: var(--shadow-glass);
    margin-bottom: 1.5rem;
}

.tour-detail-card h3,
.tour-info-card h5 {
    font-family: var(--font-display);
    color: var(--color-charcoal);
}

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

.booking-sidebar .price-display {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--mountain-blue);
}

/* Tour tabs */
.tour-tabs .nav-tabs {
    border: none;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tour-tabs .nav-link {
    border: none;
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-dark);
    background: rgba(6, 106, 171, 0.04);
    transition: all 0.3s ease;
}

.tour-tabs .nav-link:hover {
    background: rgba(6, 106, 171, 0.08);
    color: var(--mountain-blue);
}

.tour-tabs .nav-link.active {
    background: var(--gradient-brand);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.2);
}

/* Itinerary */
.itinerary-day {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius-sm);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.itinerary-day:hover {
    box-shadow: var(--shadow-md);
}

.itinerary-day .day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-brand);
    color: var(--color-white);
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Reviews on tour detail */
.review-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius-sm);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.review-card .fa-star {
    color: var(--sunset-orange);
}

/* =====================================================
   13. USER DASHBOARD
   ===================================================== */
.dashboard-section {
    padding: 2rem 0;
}

.dashboard-card,
.stats-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    transition: all 0.3s ease;
    height: 100%;
}

.dashboard-card:hover,
.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glass-hover);
}

.stats-card .stats-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stats-card .stats-icon.blue {
    background: rgba(6, 106, 171, 0.1);
    color: var(--mountain-blue);
}

.stats-card .stats-icon.orange {
    background: rgba(8, 128, 204, 0.1);
    color: var(--sunset-orange);
}

.stats-card .stats-icon.green {
    background: rgba(29, 107, 46, 0.1);
    color: var(--forest-green);
}

.stats-card .stats-icon.teal {
    background: rgba(27, 42, 74, 0.1);
    color: var(--teal);
}

.stats-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    margin-bottom: 0.25rem;
}

.stats-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

/* Bookings table */
.table-glass {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.table-glass .table {
    margin-bottom: 0;
}

.table-glass .table thead th {
    background: rgba(6, 106, 171, 0.04);
    border-bottom: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    color: var(--color-charcoal);
    padding: 1rem;
}

.table-glass .table td {
    padding: 0.875rem 1rem;
    font-size: var(--text-sm);
    vertical-align: middle;
    border-color: rgba(6, 106, 171, 0.06);
}

/* =====================================================
   14. BUTTONS & BADGES
   ===================================================== */

/* Primary Button */
.btn-primary {
    background: var(--gradient-brand);
    border: none;
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--mountain-blue-dark) 0%, var(--teal-dark) 100%);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 106, 171, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Outline Primary */
.btn-outline-primary {
    color: var(--mountain-blue);
    border: 2px solid var(--mountain-blue);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    padding: 0.625rem 1.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--mountain-blue);
    border-color: var(--mountain-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.25);
    transform: translateY(-1px);
}

/* Secondary / Accent */
.btn-accent,
.btn-warning {
    background: var(--gradient-sunset);
    border: none;
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(8, 128, 204, 0.2);
}

.btn-accent:hover,
.btn-warning:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(8, 128, 204, 0.3);
    color: var(--color-white);
}

/* Success */
.btn-success {
    background: var(--forest-green);
    border: none;
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: var(--forest-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 107, 46, 0.2);
}

/* Danger */
.btn-danger {
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-1px);
}

/* Light / Glass button */
.btn-light {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--color-charcoal);
    border-radius: var(--radius-full);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* Button sizes */
.btn-lg {
    padding: 0.875rem 2rem;
    font-size: var(--text-base);
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: var(--text-sm);
}

/* Badges — Frosted Glass Pills */
.badge {
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    font-size: var(--text-xs);
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    padding: 0.3em 0.75em;
}

.badge.bg-primary {
    background: var(--mountain-blue) !important;
}

.badge.bg-success {
    background: var(--forest-green) !important;
}

.badge.bg-warning {
    background: var(--sunset-orange) !important;
    color: var(--color-white) !important;
}

.badge.bg-info {
    background: var(--teal) !important;
    color: var(--color-white) !important;
}

.badge.bg-danger {
    background: var(--danger-color) !important;
}

/* Status badges (bookings) */
.badge-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-confirmed {
    background: rgba(29, 107, 46, 0.1);
    color: var(--forest-green);
    border: 1px solid rgba(29, 107, 46, 0.2);
}

.badge-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-completed {
    background: rgba(27, 42, 74, 0.1);
    color: var(--teal);
    border: 1px solid rgba(27, 42, 74, 0.2);
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   CARDS (Bootstrap override)
   ===================================================== */
.card {
    border: none;
    border-radius: var(--glass-radius);
    background: transparent;
}

.card-body {
    padding: 1.25rem;
}

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    border-radius: var(--radius-lg);
    border: none;
    font-size: var(--text-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(29, 107, 46, 0.08);
    color: var(--forest-green);
    border: 1px solid rgba(29, 107, 46, 0.15);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    color: #D97706;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.alert-info {
    background: rgba(27, 42, 74, 0.08);
    color: var(--teal-dark);
    border: 1px solid rgba(27, 42, 74, 0.15);
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination .page-link {
    border: 1px solid var(--color-gray-light);
    color: var(--color-charcoal);
    border-radius: var(--radius-md);
    margin: 0 3px;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    padding: 0.5rem 0.875rem;
    transition: all 0.3s ease;
    background: var(--glass-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pagination .page-link:hover {
    background: var(--mountain-blue);
    border-color: var(--mountain-blue);
    color: var(--color-white);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-brand);
    border-color: var(--mountain-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(6, 106, 171, 0.2);
}

/* =====================================================
   MISCELLANEOUS
   ===================================================== */

/* About page */
.about-section img {
    border-radius: var(--glass-radius);
    box-shadow: var(--shadow-lg);
}

/* Contact page */
.contact-card {
    background: var(--glass-white-heavy);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 2rem;
    box-shadow: var(--shadow-glass);
}

.contact-info-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-info-card i {
    font-size: 2rem;
    color: var(--mountain-blue);
    margin-bottom: 1rem;
}

/* Blog cards */
.blog-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    transition: all 0.4s ease;
    height: 100%;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card .card-body {
    padding: 1.25rem;
}

/* Booking page */
.booking-form-card {
    background: var(--glass-white-heavy);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 2rem;
    box-shadow: var(--shadow-glass);
}

.booking-summary {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    position: sticky;
    top: 100px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--mountain-blue);
}

.breadcrumb-item.active {
    color: var(--color-gray-dark);
}

/* Selection styling */
::selection {
    background: rgba(6, 106, 171, 0.15);
    color: var(--color-charcoal);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--mountain-blue);
    outline-offset: 2px;
}

/* Text utilities */
.text-primary {
    color: var(--mountain-blue) !important;
}

.text-success {
    color: var(--forest-green) !important;
}

.text-warning,
.text-warning .fa-star {
    color: var(--sunset-orange) !important;
}

.text-info {
    color: var(--teal) !important;
}

.bg-primary {
    background: var(--mountain-blue) !important;
}

/* Bootstrap override for bg-light to stay transparent in our glass system */
.bg-light {
    background: transparent !important;
}

/* =====================================================
   TOURS PAGE — Filter Sidebar Extras
   ===================================================== */
.bg-light-gray {
    background: transparent;
}

.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.filter-sidebar-header h5 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-sidebar-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    margin-bottom: 0.4rem;
}

.btn-sidebar-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 1rem;
    margin-top: 0.5rem;
    background: rgba(239, 68, 68, 0.06);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-sidebar-reset:hover {
    background: var(--danger-color);
    color: var(--color-white);
    border-color: var(--danger-color);
}

/* Route box (tours listing) */
.route-box {
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-gray-light);
    margin-bottom: 0.75rem;
}

.route-text {
    font-size: var(--text-xs);
    color: var(--color-gray-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.route-text::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.4rem;
    color: var(--teal);
    font-size: 0.65rem;
}

/* =====================================================
   TOUR DETAIL — Hero & Timeline
   ===================================================== */
.tour-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.tour-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease;
}

.tour-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    z-index: 1;
}

.tour-thumb {
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    object-fit: cover;
}

.tour-thumb:hover {
    opacity: 0.85;
}

.tour-thumb.thumb-active {
    opacity: 1;
    border-color: var(--mountain-blue);
    box-shadow: 0 2px 8px rgba(6, 106, 171, 0.2);
}

.tour-timeline {
    position: relative;
    padding-left: 2rem;
}

.tour-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--mountain-blue), var(--teal));
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mountain-blue);
    border: 2px solid var(--color-white);
    box-shadow: 0 0 0 3px rgba(6, 106, 171, 0.15);
    z-index: 1;
}

/* =====================================================
   AUTH PAGE WRAPPER
   ===================================================== */
.auth-page {
    min-height: calc(100vh - 250px);
    padding: 2rem 0;
}

/* Avatar circle for dashboard/bookings */
.avatar-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 106, 171, 0.1), rgba(27, 42, 74, 0.1));
    color: var(--mountain-blue);
    font-weight: var(--font-bold);
    font-size: var(--text-2xl);
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 65vh;
        min-height: 400px;
    }

    .hero-title-slider {
        font-size: var(--text-5xl);
    }

    .hero-content-slider {
        text-align: center;
        max-width: 100%;
    }

    .hero-actions-slider {
        justify-content: center;
    }

    .navbar .navbar-collapse {
        background: var(--navy-dark);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(201, 168, 76, 0.12);
        border-radius: var(--glass-radius-sm);
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .navbar .nav-link::after {
        display: none;
    }

    .destination-card {
        height: 260px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-slider {
        height: 100vh;
        height: 100dvh;
        min-height: 600px;
        max-height: none;
    }

    .hero-slide::before {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.7) 75%,
            rgba(0, 0, 0, 0.85) 100%
        );
    }

    .hero-content-slider {
        text-align: center;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-title-slider {
        font-size: var(--text-5xl);
        margin-bottom: 0.75rem;
        animation: mobileSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-subtitle-slider {
        font-size: var(--text-base);
        max-width: 100%;
        animation: mobileSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    }

    /* Show only first button on mobile */
    .hero-actions-slider .btn-outline-light {
        display: none !important;
    }

    .hero-actions-slider {
        justify-content: center;
        animation: mobileSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    }

    .hero-actions-slider .btn-primary {
        padding: 1rem 2.5rem;
        font-size: var(--text-base);
        width: auto;
        min-width: 200px;
        border-radius: var(--radius-full);
        background: var(--gradient-gold-shine);
        color: var(--navy-dark);
        font-weight: var(--font-bold);
        box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
        letter-spacing: 0.5px;
    }

    .hero-actions-slider .btn-primary:active {
        transform: scale(0.97);
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none !important;
    }

    .hero-slider .carousel-indicators {
        bottom: 2.5rem;
    }

    .hero-slider .carousel-indicators button {
        width: 8px;
        height: 8px;
        border: none;
        background: rgba(255, 255, 255, 0.4);
        margin: 0 5px;
    }

    .hero-slider .carousel-indicators button.active {
        width: 24px;
        border-radius: var(--radius-full);
        background: var(--gold);
    }

    .hero-bg-anim {
        animation: heroZoomMobile 25s ease-in-out infinite alternate;
    }

    /* Mobile row align for slider */
    .hero-slider .row {
        align-items: flex-end !important;
        padding-bottom: 5rem;
    }

    .feature-box {
        padding: 1.5rem 1.25rem;
    }

    .section-title h2 {
        font-size: var(--text-3xl);
    }

    .cta-heading {
        font-size: var(--text-3xl);
    }

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

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .destination-card {
        height: 220px;
    }

    .auth-card,
    .login-card,
    .register-card {
        padding: 1.75rem;
    }

    .footer {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-links {
        text-align: center !important;
        margin-top: 0.75rem;
    }

    .footer-bottom-links a {
        margin: 0 0.75rem;
    }

    .page-header h1 {
        font-size: var(--text-3xl);
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

}


/* Small mobile */
@media (max-width: 575.98px) {
    .hero-slider {
        height: 100vh;
        height: 100dvh;
        min-height: 550px;
        max-height: none;
    }

    .hero-title-slider {
        font-size: var(--text-4xl);
    }

    .tour-card .card-body {
        padding: 1rem;
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .hero-slider {
        max-height: 850px;
    }

    .container {
        max-width: 1320px;
    }
}

/* =====================================================
   13. SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.revealed > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.56s; }

/* =====================================================
   14. HOVER LIFT & IMAGE ZOOM
   ===================================================== */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tour-card .img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tour-card:hover .img-wrapper img {
    transform: scale(1.06);
}

.destination-card img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.destination-card:hover img {
    transform: scale(1.08);
}

/* Section title accent line */
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-brand);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* =====================================================
   15. ACTIVITY CARDS
   ===================================================== */
.activity-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 320px;
    background: var(--color-charcoal);
}
.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.85;
}
.activity-card:hover img {
    transform: scale(1.08);
    opacity: 0.7;
}
.activity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.4s ease;
}
.activity-card:hover .activity-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%);
}
.activity-card-overlay h5 {
    color: #fff;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: 0.25rem;
}
.activity-card-overlay p {
    color: rgba(255,255,255,0.75);
    font-size: var(--text-sm);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.activity-card .activity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-charcoal);
}
.activity-card .activity-location {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-xs);
    margin-bottom: 0.5rem;
}
.activity-card .activity-location i {
    margin-right: 0.25rem;
}

/* Category filter pills */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.category-pill {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-gray-light);
    background: var(--color-white);
    color: var(--color-gray-dark);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.category-pill:hover,
.category-pill.active {
    background: var(--mountain-blue);
    color: var(--color-white);
    border-color: var(--mountain-blue);
}

/* =====================================================
   16. VEHICLE / CAB CARDS
   ===================================================== */
.vehicle-card {
    background: var(--glass-white-heavy);
    backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.vehicle-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--bg-body);
}
.vehicle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-card-img img {
    transform: scale(1.05);
}
.vehicle-card-body {
    padding: 1.25rem;
}
.vehicle-card-body h5 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    margin-bottom: 0.25rem;
    color: var(--color-charcoal);
}
.vehicle-card-body .vehicle-category {
    font-size: var(--text-xs);
    color: var(--mountain-blue);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-sm);
    color: var(--color-gray-dark);
}
.vehicle-spec i {
    color: var(--mountain-blue);
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}
.vehicle-card .btn-enquire {
    display: block;
    text-align: center;
    padding: 0.6rem;
    background: var(--gradient-brand);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.vehicle-card .btn-enquire:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .navbar,
    .footer,
    .whatsapp-float,
    .cta-shapes,
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next,
    .hero-slider .carousel-indicators {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .glass,
    .glass-heavy,
    .glass-light,
    .tour-card,
    .feature-box,
    .testimonial-card,
    .dashboard-card,
    .stats-card {
        background: white !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* =====================================================
   PROGRESSIVE ENHANCEMENT
   ===================================================== */
@supports (backdrop-filter: blur(1px)) {
    .navbar.scrolled {
        background: var(--navy-dark);
    }
}

/* =====================================================
   17. PREMIUM DYNAMIC COMPONENTS & MOBILE ANIMATIONS
   ===================================================== */

/* --- Gold Accent Divider --- */
.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold-shine);
    margin: 1rem auto;
    border-radius: var(--radius-full);
}

/* --- Shimmer Effect on Gold Buttons --- */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

/* --- Animated Gold Border Cards --- */
.gold-border-card {
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.gold-border-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark), var(--gold-light));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gold-border-card:hover::before {
    opacity: 1;
}

/* --- Floating Animation for Icons --- */
.float-icon {
    animation: floatUp 3s ease-in-out infinite;
}

/* --- Pulse CTA Glow --- */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Mobile Touch Feedback --- */
@media (hover: none) and (pointer: coarse) {
    .tour-card,
    .activity-card,
    .vehicle-card,
    .feature-box,
    .destination-card {
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.2s ease;
    }

    .tour-card:active,
    .activity-card:active,
    .vehicle-card:active,
    .feature-box:active {
        transform: scale(0.98);
    }
}

/* --- Mobile Scroll Snap for Sections --- */
@media (max-width: 767.98px) {
    /* Enhanced mobile card stacking */
    .tour-card,
    .vehicle-card {
        border-radius: var(--glass-radius);
        box-shadow: var(--shadow-md);
    }

    /* Mobile-optimized activity cards */
    .activity-card {
        height: 280px;
    }

    .activity-card-overlay h5 {
        font-size: var(--text-lg);
    }

    /* Smooth navbar transitions on mobile */
    .navbar {
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Mobile section spacing */
    section.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Mobile card entrance animation */
    .reveal-stagger > * {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-stagger.revealed > * {
        opacity: 1;
        transform: translateY(0);
    }

    /* Gold accent line for mobile section titles */
    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        position: relative;
        padding-bottom: 12px;
    }

    /* Mobile feature box grid */
    .feature-box {
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .feature-box .feature-icon {
        margin: 0 auto 1rem;
    }
}

/* --- Smooth Page Transition Effect --- */
.page-transition-in {
    animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* --- Dynamic Gradient Background for Premium Sections --- */
.premium-section {
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(8, 128, 204, 0.03) 60deg,
        transparent 120deg,
        rgba(27, 42, 74, 0.02) 180deg,
        transparent 240deg,
        rgba(8, 128, 204, 0.03) 300deg,
        transparent 360deg
    );
    animation: rotateGradient 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

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

/* --- Navbar Gold Accent --- */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar .nav-link {
    position: relative;
}

.navbar .nav-link::after {
    background: var(--gradient-gold-shine) !important;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-brand);
    z-index: 9999;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* --- Animated Counter Glow --- */
.counter {
    color: var(--mountain-blue);
    text-shadow: 0 0 20px rgba(6, 106, 171, 0.15);
}

/* --- Enhanced Feature Box --- */
.feature-icon {
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: var(--gradient-gold-shine);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.feature-box:hover .feature-icon::after {
    opacity: 0.3;
}

/* --- Mobile Bottom Safe Area --- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        bottom: calc(1.25rem + env(safe-area-inset-bottom));
    }
}
