/* ============================================
   Vishal Tours - LUXURY EXPLORER THEME
   Warm Gold × Compass × Classic Travel
   Inspired by the Vishal Tours compass logo
   ============================================ */

/* ----------------------------------
   1. Root Variables & Design Tokens
---------------------------------- */
:root {
    /* Core Palette - Warm Dark + Gold */
    --bg-primary: #0c0e12;
    --bg-secondary: #141820;
    --bg-tertiary: #1a1f2b;
    --bg-card: rgba(20, 24, 32, 0.85);

    /* Brand Colors - From Logo (Warm Gold/Khaki Compass) */
    --gold: #c8a96e;
    --gold-light: #dcc89e;
    --gold-dark: #9a7d4a;
    --gold-glow: rgba(200, 169, 110, 0.25);
    --warm-white: #f5f0e8;
    --warm-cream: #e8dcc8;

    /* Accent Colors */
    --accent-teal: #5ba4a4;
    --accent-copper: #b87333;
    --accent-sage: #7a9e7e;
    --accent-terracotta: #c4785b;
    --accent-slate: #6b7b8d;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c8a96e 0%, #dcc89e 50%, #9a7d4a 100%);
    --gradient-hero: linear-gradient(135deg, #0c0e12 0%, #1a1f2b 40%, #0c0e12 100%);
    --gradient-warm: linear-gradient(135deg, #c8a96e, #b87333);
    --gradient-sunset: linear-gradient(135deg, #c4785b 0%, #c8a96e 100%);
    --gradient-forest: linear-gradient(135deg, #5ba4a4, #7a9e7e);
    --gradient-dark: linear-gradient(135deg, rgba(200,169,110,0.05), rgba(200,169,110,0.02));
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));

    /* Text */
    --text-primary: #f5f0e8;
    --text-secondary: #a8a094;
    --text-muted: #706b63;
    --text-dark: #1e1c18;
    --white: #ffffff;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(200, 169, 110, 0.12);
    --glass-hover: rgba(200, 169, 110, 0.08);

    /* Status */
    --success: #7a9e7e;
    --danger: #c4785b;
    --warning: #c8a96e;
    --info: #5ba4a4;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 20px rgba(200, 169, 110, 0.2);
    --shadow-warm: 0 4px 20px rgba(200, 169, 110, 0.15);
    --glow-gold: 0 0 40px rgba(200, 169, 110, 0.1), 0 0 80px rgba(200, 169, 110, 0.05);

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Legacy compat */
    --primary-color: #c8a96e;
    --primary-light: #dcc89e;
    --secondary-color: #5ba4a4;
    --secondary-hover: #4d8e8e;
    --accent-color: #b87333;
    --neon-cyan: #5ba4a4;
    --neon-purple: #b87333;
    --neon-pink: #c4785b;
    --neon-blue: #5ba4a4;
    --neon-green: #7a9e7e;
    --neon-orange: #c4785b;
    --neon-gold: #c8a96e;
    --neon-cyan: #5ba4a4;
    --shadow-neon: var(--shadow-gold);
    --shadow-neon-purple: 0 0 20px rgba(184, 115, 51, 0.2);
    --shadow-neon-pink: 0 0 20px rgba(196, 120, 91, 0.2);
    --gradient-neon: var(--gradient-gold);
    --gradient-primary: var(--gradient-warm);
    --gradient-aurora: var(--gradient-sunset);
    --gradient-ocean: linear-gradient(135deg, #5ba4a4 0%, #7a9e7e 50%, #c8a96e 100%);
    --text-gray: #a8a094;
    --text-light: #a8a094;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 10px;
}

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

::selection {
    background: rgba(200, 169, 110, 0.3);
    color: var(--white);
}

/* ----------------------------------
   3. Typography
---------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 { font-size: 1.6rem; }
h4 { font-size: 1.35rem; font-weight: 600; }
h5 { font-size: 1.15rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

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

/* ----------------------------------
   4. Layout Utilities
---------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

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

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

.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

@media (max-width: 1024px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
}

/* ----------------------------------
   5. Glass Card System
---------------------------------- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
}

.glass-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,169,110,0.15), transparent);
}

.glass-card:hover {
    border-color: rgba(200, 169, 110, 0.25);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

/* ----------------------------------
   6. Buttons
---------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 169, 110, 0.4);
}

.btn-secondary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 115, 51, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(200, 169, 110, 0.1);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: var(--glass-hover);
    border-color: var(--gold);
}

/* Glow Button */
.btn-glow {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-gold);
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
    transition: var(--transition);
}

.btn-glow:hover::after {
    filter: blur(25px);
    opacity: 0.6;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
}

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

.btn-lg {
    padding: 18px 42px;
    font-size: 0.95rem;
}

.btn-icon {
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

/* ----------------------------------
   7. Navigation
---------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    background: rgba(12, 14, 18, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(12, 14, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
}

.logo i {
    color: var(--gold);
    font-size: 1.2rem;
}

.logo span {
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

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

.nav-menu .nav-book-btn {
    font-size: 0.75rem;
    padding: 8px 18px;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, #b87333 0%, #c4785b 100%);
    color: var(--white);
    border: none;
}

.nav-menu .nav-book-btn i {
    font-size: 0.85rem;
}

.nav-menu .nav-book-btn::after {
    background: linear-gradient(135deg, #b87333 0%, #c4785b 100%);
    filter: blur(10px);
    opacity: 0.25;
}

.nav-menu .nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(12, 14, 18, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem 3rem;
        transition: var(--transition-slow);
        border-left: 1px solid var(--glass-border);
        gap: 1.5rem;
    }

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

    .nav-menu a {
        font-size: 1.2rem;
    }
}

/* ----------------------------------
   8. Hero Section
---------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    color: var(--white);
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(12, 14, 18, 0.6) 0%,
        rgba(12, 14, 18, 0.4) 50%,
        rgba(12, 14, 18, 0.85) 100%
    );
    z-index: 1;
}

/* Animated Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Floating Elements */
.hero-floating {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.15;
    font-family: 'Playfair Display', serif;
}

.hero-content h1 .hero-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--warm-cream);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--warm-cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
    opacity: 0.7;
}

/* ----------------------------------
   9. Smart Search Bar
---------------------------------- */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 24px;
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.search-tab {
    padding: 14px 28px;
    background: rgba(20, 24, 32, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
}

.search-tab:hover {
    color: var(--gold);
    background: rgba(20, 24, 32, 0.8);
}

.search-tab.active {
    background: rgba(20, 24, 32, 0.95);
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 -4px 20px rgba(200, 169, 110, 0.08);
}

.search-tab i {
    font-size: 1rem;
}

.search-box {
    background: rgba(20, 24, 32, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 0 var(--border-radius) var(--border-radius) var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.search-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.search-panel.active {
    display: block;
}
.search-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.search-group {
    flex: 1;
    min-width: 180px;
}

.search-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.search-group input:focus,
.search-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.search-group input::placeholder {
    color: var(--text-muted);
}

.search-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.search-btn {
    padding: 12px 32px;
    height: 48px;
    white-space: nowrap;
    min-width: 140px;
}

@media (max-width: 768px) {
    .search-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .search-tab {
        padding: 10px 16px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    .search-form {
        flex-direction: column;
    }
    .search-group {
        min-width: 100%;
    }
    .search-btn {
        width: 100%;
    }
}

/* ----------------------------------
   10. Cards System  
---------------------------------- */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,169,110,0.12), transparent);
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 110, 0.2);
    box-shadow: var(--shadow-gold);
}

/* 3D Tilt Card */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d-inner {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

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

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

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

/* Image overlay gradient */
.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(12, 14, 18, 0.85));
    z-index: 1;
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.card-meta i {
    color: var(--gold);
    font-size: 0.8rem;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.card-price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

/* ----------------------------------
   11. Feature Boxes
---------------------------------- */
.feature-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(200, 169, 110, 0.2);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: rgba(200, 169, 110, 0.08);
    border: 1px solid rgba(200, 169, 110, 0.15);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.feature-box h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ----------------------------------
   12. Statistics Section
---------------------------------- */
.stats-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stat-counter {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ----------------------------------
   13. Testimonials
---------------------------------- */
.testimonial-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(200, 169, 110, 0.12);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(200, 169, 110, 0.25);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-author h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ----------------------------------
   14. Forms
---------------------------------- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* ----------------------------------
   15. Footer
---------------------------------- */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    width: 40%;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer .contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer .contact-info i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(200, 169, 110, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ----------------------------------
   16. Scroll to Top
---------------------------------- */
.scroll-to-top,
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.scroll-to-top.visible,
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover,
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(200, 169, 110, 0.4);
}

/* ----------------------------------
   17. Badge System
---------------------------------- */
.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: rgba(122, 158, 126, 0.15);
    color: var(--success);
    border: 1px solid rgba(122, 158, 126, 0.3);
}

.badge-warning {
    background: rgba(200, 169, 110, 0.15);
    color: var(--warning);
    border: 1px solid rgba(200, 169, 110, 0.3);
}

.badge-danger {
    background: rgba(196, 120, 91, 0.15);
    color: var(--danger);
    border: 1px solid rgba(196, 120, 91, 0.3);
}

.badge-info {
    background: rgba(91, 164, 164, 0.15);
    color: var(--info);
    border: 1px solid rgba(91, 164, 164, 0.3);
}

/* ----------------------------------
   18. Page Headers
---------------------------------- */
.page-header {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    margin-top: var(--header-height);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 169, 110, 0.03), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(184, 115, 51, 0.03), transparent 50%);
}

.page-header h1 {
    color: var(--text-primary);
    text-align: center;
}

.page-header p {
    text-align: center;
    color: var(--text-secondary);
}

/* ----------------------------------
   19. Itinerary Timeline
---------------------------------- */
.itinerary-timeline {
    position: relative;
    padding-left: 60px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--accent-copper));
}

.itinerary-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.itinerary-item:hover {
    border-color: rgba(200, 169, 110, 0.25);
    box-shadow: var(--shadow-gold);
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 2rem;
    width: 14px;
    height: 14px;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
}

.itinerary-day {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(200, 169, 110, 0.08);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ----------------------------------
   20. Booking Modules 
---------------------------------- */
.booking-module {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.booking-module h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-module h3 i {
    color: var(--gold);
    font-size: 1.2rem;
}

.booking-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.booking-result:hover {
    border-color: rgba(200, 169, 110, 0.2);
    box-shadow: var(--shadow-gold);
    transform: translateX(4px);
}

/* ----------------------------------
   21. Destination Cards
---------------------------------- */
.destination-card {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(12, 14, 18, 0.9));
    transition: var(--transition);
}

.destination-card:hover .destination-card-overlay {
    padding-bottom: 3rem;
}

.destination-card-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.destination-card-overlay p {
    color: var(--warm-cream);
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ----------------------------------
   22. Special Offers Section
---------------------------------- */
.offer-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.offer-card:hover {
    border-color: rgba(200, 169, 110, 0.25);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.offer-discount {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

/* ----------------------------------
   23. Chatbot Widget
---------------------------------- */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.chatbot-toggle {
    width: 54px;
    height: 54px;
    background: var(--gradient-warm);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.3);
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(184, 115, 51, 0.4);
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 360px;
    height: 500px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    padding: 1rem 1.5rem;
    background: var(--gradient-warm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------------------------------
   24. Responsive
---------------------------------- */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .search-section {
        margin-top: -40px;
    }
}

@media (hover: hover) {
    .hover-lift:hover {
        transform: translateY(-8px);
    }
}

/* ----------------------------------
   25. Loading & Transitions
---------------------------------- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

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

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

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

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

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

.page-transition {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

/* ----------------------------------
   26. Gallery
---------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 260px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(12,14,18,0.9));
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* ----------------------------------
   27. Map Container
---------------------------------- */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    border: none;
}

/* ----------------------------------
   28. Filter Pills
---------------------------------- */
.filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 8px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

.filter-pill:hover {
    background: rgba(200,169,110,0.08);
    color: var(--gold);
    border-color: rgba(200,169,110,0.25);
}

.filter-pill.active {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
}

/* ----------------------------------
   29. Tour Card
---------------------------------- */
.tour-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.tour-card:hover {
    border-color: rgba(200,169,110,0.25);
    box-shadow: var(--shadow-gold);
}

.tour-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.tour-card .price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.tour-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.tour-card .explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tour-card .explore-btn:hover {
    gap: 0.75rem;
}

/* ----------------------------------
   30. Empty State & Breadcrumb
---------------------------------- */
.empty-state {
    text-align: center;
    color: var(--text-muted);
}

.empty-state i {
    color: var(--text-muted);
    opacity: 0.3;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

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

.breadcrumb .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--gold);
    font-weight: 600;
}

/* ----------------------------------
   31. Accordion & Toast & Modal
---------------------------------- */
.accordion-item {
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.accordion-header:hover h4 {
    color: var(--gold);
}

.accordion-header i {
    transition: var(--transition);
    color: var(--text-muted);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--gold);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.toast.success {
    background: rgba(122,158,126,0.1);
    border: 1px solid rgba(122,158,126,0.3);
    color: var(--success);
}

.toast.error {
    background: rgba(196,120,91,0.1);
    border: 1px solid rgba(196,120,91,0.3);
    color: var(--danger);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.animate-pulse-scale {
    animation: pulseScale 2s ease infinite;
}

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

/* ----------------------------------
   32. Additional Responsive
---------------------------------- */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
    
    .filter-pill {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .map-container {
        height: 250px;
    }
}

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