/* ============================================
   TRAVELKAN - Premium Travel Platform
   Every Journey Is As Precious As You Are
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0F2D52;
    --primary-light: #1a406e;
    --primary-dark: #0a1f38;
    --gold: #D6A84F;
    --gold-light: #e8c46a;
    --gold-dark: #b89130;
    --bg: #FAFAFA;
    --bg-dark: #f0f2f5;
    --secondary: #F2F5F8;
    --success: #2DBE60;
    --danger: #E53935;
    --warning: #FFB300;
    --white: #FFFFFF;
    --black: #1a1a2e;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    --nav-height: 80px;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary: #1a5276;
    --primary-light: #2c6b96;
    --primary-dark: #0f2d52;
    --bg: #121212;
    --bg-dark: #1e1e1e;
    --secondary: #2d2d2d;
    --white: #1e1e1e;
    --black: #f5f5f5;
    --gray-100: #2d2d2d;
    --gray-200: #3d3d3d;
    --gray-300: #4d4d4d;
    --gray-400: #6d6d6d;
    --gray-500: #8d8d8d;
    --gray-600: #adadad;
    --gray-700: #cccccc;
    --gray-800: #e0e0e0;
    --gray-900: #f5f5f5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
    list-style: none;
}

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

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

input, select, textarea {
    cursor: text;
}

select {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.loading-progress-bar {
    width: 280px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.loading-text {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

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

.transition-logo i {
    font-size: 3rem;
    color: var(--gold);
    animation: pulse 1s ease-in-out infinite;
}

.transition-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.transition-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 9999;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-link {
    color: var(--gray-800);
}

.navbar.scrolled .nav-logo span {
    color: var(--gray-800);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    z-index: 100;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

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

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

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

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

.theme-toggle,
.lang-toggle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.theme-toggle:hover,
.lang-toggle:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .theme-toggle,
.navbar.scrolled .lang-toggle {
    color: var(--gray-600);
}

.navbar.scrolled .theme-toggle:hover,
.navbar.scrolled .lang-toggle:hover {
    color: var(--gold);
    background: rgba(0,0,0,0.05);
}

.lang-toggle span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: scale(0.96);
}

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

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

.btn-block {
    width: 100%;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(15, 45, 82, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.nav-actions .btn-outline {
    border-color: rgba(255,255,255,0.4);
    padding: 8px 20px;
    font-size: 0.85rem;
}

.navbar.scrolled .nav-actions .btn-outline {
    color: var(--gray-800);
    border-color: var(--gray-400);
}

.navbar.scrolled .nav-actions .btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-600);
}

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

.btn-danger:hover {
    background: #c62828;
    border-color: #c62828;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

/* Ripple Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Loading spinner on buttons */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading span {
    visibility: hidden;
}

.btn.loading::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

[data-theme="dark"] .section-title {
    color: var(--gray-800);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 10px;
}

.page {
    display: none;
    min-height: 100vh;
    padding-top: var(--nav-height);
    animation: fadeUp 0.6s ease;
}

.page.active {
    display: block;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header .section-subtitle {
    color: var(--gold-light);
}

.page-header .section-title {
    color: var(--white);
}

.page-header .section-divider {
    background: var(--gold-light);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

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

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 45, 82, 0.85) 0%,
        rgba(15, 45, 82, 0.5) 50%,
        rgba(15, 45, 82, 0.3) 100%
    );
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title-accent {
    display: block;
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 4px 0;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: translateY(0);
    transition: var(--transition);
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-card-image {
    height: 180px;
    overflow: hidden;
}

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

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

.hero-card-info {
    padding: 1.2rem;
}

.hero-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
}

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

.hero-card-rating span {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 6px;
}

.hero-card-info h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.hero-card-info p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.hero-card-price .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-card-price .per {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Hero Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-btn.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-nav-btn:hover {
    background: rgba(255,255,255,0.7);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
}

.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }

/* ===== SEARCH SECTION ===== */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-bottom: 3rem;
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
}

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

.search-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.search-group label i {
    margin-right: 4px;
    color: var(--gold);
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--gray-100);
    transition: var(--transition);
}

.search-group input:focus,
.search-group select:focus {
    border-color: var(--gold);
    background: var(--white);
}

.traveller-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-100);
}

.traveller-input button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.traveller-input button:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.traveller-input span {
    font-weight: 600;
    font-size: 1rem;
    min-width: 24px;
    text-align: center;
}

.btn-search {
    padding: 12px 30px;
    min-height: 46px;
}

/* ===== FIND YOUR JOURNEY ===== */
.journey-section {
    padding: 5rem 0;
}

.journey-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.category-btn i {
    font-size: 1rem;
}

/* ===== TRIP GRID ===== */
.trip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.trip-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.trip-card-image .trip-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trip-badge.popular { background: var(--danger); color: white; }
.trip-badge.weekend { background: var(--success); color: white; }
.trip-badge.special { background: var(--gold); color: white; }

.trip-card-image .trip-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.trip-wishlist:hover,
.trip-wishlist.active {
    background: var(--danger);
    color: var(--white);
}

.trip-card-body {
    padding: 1.2rem;
}

.trip-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

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

.trip-card-rating span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-left: 4px;
}

.trip-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.trip-card-body .trip-location {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.trip-card-body .trip-location i {
    color: var(--gold);
    margin-right: 4px;
}

.trip-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    margin-top: 10px;
}

.trip-card-meta .trip-duration {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.trip-card-meta .trip-duration i {
    margin-right: 4px;
    color: var(--gold);
}

.trip-card-meta .trip-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.trip-card-body .btn {
    margin-top: 12px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 5rem 0;
    background: var(--secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.why-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== STATS ===== */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-left: 4px;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* ===== TRIP CONTROLS ===== */
.trip-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.trip-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.trip-sort select {
    padding: 8px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
}

/* ===== CUSTOM TRIP FLOW ===== */
.custom-trip-flow {
    margin-bottom: 3rem;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    opacity: 0.5;
    transition: var(--transition);
}

.flow-step.active {
    opacity: 1;
    box-shadow: var(--shadow-md);
    background: var(--primary);
    color: var(--white);
}

.flow-step.active .flow-number {
    background: var(--gold);
    color: var(--primary);
}

.flow-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.flow-label {
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
}

.flow-connector {
    width: 40px;
    height: 2px;
    background: var(--gray-300);
    margin: 0 8px;
}

/* ===== FORM CARD ===== */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.form-progress {
    height: 3px;
    background: var(--gray-200);
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary) 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    position: relative;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    padding-left: 44px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--gray-100);
    transition: var(--transition);
    color: var(--gray-800);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-left: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.1);
}

.input-icon {
    position: absolute;
    bottom: 14px;
    left: 16px;
    color: var(--gray-400);
    font-size: 1rem;
    pointer-events: none;
}

.btn-submit {
    margin-top: 1.5rem;
}

/* ===== AI PLANNER ===== */
.ai-planner-section {
    padding: 4rem 0;
}

.ai-planner-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.ai-planner-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: rgba(214, 168, 79, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.ai-planner-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.ai-planner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.ai-planner-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.ai-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ai-input-group input {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: none;
    min-width: 180px;
    flex: 1;
}

.ai-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    text-align: left;
    display: none;
}

.ai-result.active {
    display: block;
}

/* ===== LIVE WAR TICKET ===== */
.war-ticket-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.war-ticket-status {
    margin-bottom: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 1.5s ease-in-out infinite;
}

.status-indicator span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--success);
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    min-width: 90px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-top: 4px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: -1rem;
}

.war-join-btn {
    padding: 18px 48px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.war-ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.war-ticket-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.war-ticket-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.war-ticket-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.war-ticket-badge.hot { background: var(--danger); color: white; }
.war-ticket-badge.limited { background: var(--warning); color: white; }
.war-ticket-badge.flash { background: var(--gold); color: white; }

.war-ticket-info {
    padding: 1.2rem;
}

.war-ticket-info h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 8px;
}

.war-ticket-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.discount-price {
    font-weight: 700;
    color: var(--danger);
    font-size: 1.2rem;
}

.war-ticket-seats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--danger);
    margin-bottom: 12px;
}

.war-ticket-seats i {
    font-size: 0.8rem;
}

/* ===== PACKAGES ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

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

.package-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--gold);
    color: var(--white);
}

.package-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.package-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.package-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.2rem;
    text-align: left;
    padding: 0 1rem;
}

.package-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.package-features span i {
    color: var(--gold);
    font-size: 0.85rem;
}

.package-price {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.package-price strong {
    font-size: 1.3rem;
    color: var(--primary);
}

/* ===== ABOUT ===== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--secondary);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
}

.value-item i {
    color: var(--gold);
}

/* Timeline */
.timeline {
    margin-bottom: 4rem;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-items {
    position: relative;
    padding-left: 3rem;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Partners */
.partners-section {
    margin-bottom: 4rem;
    text-align: center;
}

.partners-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.partner-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-item i {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--gold);
}

/* Gallery */
.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 45, 82, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 1.2rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 4px;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-row {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--gray-100);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== AUTH (Login/Register) ===== */
.auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-height));
}

.auth-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.auth-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E") repeat;
    animation: rotate 30s linear infinite;
}

.auth-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.auth-image-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.auth-image-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.auth-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg);
}

.auth-form-card {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.auth-logo i {
    color: var(--gold);
}

.auth-form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.auth-form-card .form-group {
    margin-bottom: 1rem;
}

.auth-form-card input {
    width: 100%;
    padding: 12px 16px;
    padding-left: 44px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--gray-100);
    transition: var(--transition);
}

.auth-form-card input:focus {
    border-color: var(--gold);
    background: var(--white);
}

.password-toggle {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: var(--gray-400);
    font-size: 1rem;
}

.password-toggle:hover {
    color: var(--gold);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--gray-600);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    padding: 0;
    accent-color: var(--gold);
}

.forgot-password {
    color: var(--gold);
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--gold-dark);
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.auth-switch a {
    color: var(--gold);
    font-weight: 600;
}

.auth-switch a:hover {
    color: var(--gold-dark);
}

/* Shake animation for wrong password */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

.shake {
    animation: shake 0.6s ease;
}

/* ===== REGISTER PROGRESS ===== */
.register-progress {
    margin-bottom: 2rem;
}

.register-progress-bar {
    height: 3px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.register-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary) 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.register-steps {
    display: flex;
    justify-content: space-between;
}

.register-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    transition: var(--transition);
}

.register-step.active {
    opacity: 1;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
}

.register-step.active .step-num {
    background: var(--gold);
    color: var(--white);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
}

.preference-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pref-tag {
    cursor: pointer;
}

.pref-tag input {
    display: none;
}

.pref-tag span {
    display: block;
    padding: 8px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.pref-tag input:checked + span {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.register-navigation {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

/* ===== DASHBOARD ===== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - var(--nav-height));
}

.dashboard-sidebar {
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    padding: 1.5rem;
    position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.sidebar-header i {
    color: var(--gold);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.sidebar-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-user h4 {
    font-size: 0.9rem;
    color: var(--primary);
}

.sidebar-user p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.sidebar-link.active {
    background: var(--primary);
    color: var(--white);
}

.sidebar-link.logout {
    margin-top: auto;
    color: var(--danger);
}

.sidebar-link.logout:hover {
    background: rgba(229, 57, 53, 0.1);
}

.dashboard-main {
    padding: 2rem;
    background: var(--bg);
}

.dashboard-content {
    display: none;
}

.dashboard-content.active {
    display: block;
    animation: fadeUp 0.4s ease;
}

.dash-header {
    margin-bottom: 2rem;
}

.dash-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
}

.dash-header p {
    color: var(--gray-500);
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 2rem;
}

.dash-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.4rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.dash-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dash-stat-card i {
    font-size: 2rem;
    color: var(--gold);
}

.dash-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.dash-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.dash-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dash-section h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.upcoming-trip-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.upcoming-trip-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.upcoming-trip-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.upcoming-trip-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.upcoming-trip-info p i {
    margin-right: 6px;
    color: var(--gold);
    width: 16px;
}

/* Progress Tracker */
.progress-tracker {
    display: flex;
    gap: 0;
    margin-top: 12px;
    align-items: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    flex: 1;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.progress-step:last-child::after {
    display: none;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-200);
    border: 2px solid var(--gray-300);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.progress-step.completed .progress-dot {
    background: var(--success);
    border-color: var(--success);
}

.progress-step.active .progress-dot {
    background: var(--gold);
    border-color: var(--gold);
    animation: pulse 1.5s ease-in-out infinite;
}

.progress-step span:last-child {
    font-size: 0.65rem;
    text-align: center;
    color: var(--gray-500);
    white-space: nowrap;
}

.progress-step.completed span:last-child {
    color: var(--success);
}

.progress-step.active span:last-child {
    color: var(--gold);
    font-weight: 600;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.activity-item i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.activity-item p {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.activity-item span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Bookings */
.booking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.booking-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.booking-card img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.booking-info {
    flex: 1;
}

.booking-info h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.booking-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.booking-info p i {
    margin-right: 6px;
    color: var(--gold);
    width: 16px;
}

.booking-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-status.confirmed {
    background: rgba(45, 190, 96, 0.1);
    color: var(--success);
}

.booking-status.pending {
    background: rgba(255, 179, 0, 0.1);
    color: var(--warning);
}

/* Invoices */
.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.invoice-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.invoice-number {
    font-weight: 600;
    color: var(--primary);
}

.invoice-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.invoice-status.paid {
    background: rgba(45, 190, 96, 0.1);
    color: var(--success);
}

.invoice-status.unpaid {
    background: rgba(229, 57, 53, 0.1);
    color: var(--danger);
}

.invoice-body {
    margin-bottom: 12px;
}

.invoice-body p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.invoice-actions {
    display: flex;
    gap: 10px;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.wishlist-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.wishlist-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.wishlist-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.wishlist-remove:hover {
    background: var(--danger);
    color: var(--white);
}

.wishlist-info {
    padding: 1rem;
}

.wishlist-info h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.wishlist-info p {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Notifications */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.notification-item.unread {
    border-left: 3px solid var(--gold);
}

.notification-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon.promo { background: rgba(214, 168, 79, 0.1); color: var(--gold); }
.notif-icon.booking { background: rgba(45, 190, 96, 0.1); color: var(--success); }
.notif-icon.reminder { background: rgba(255, 179, 0, 0.1); color: var(--warning); }

.notif-content p {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.notif-content span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Profile */
.profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 600px;
}

.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-edit-avatar {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.profile-edit-avatar:hover {
    transform: scale(1.1);
}

.profile-form {
    margin-top: 1rem;
}

/* ===== NOTIFICATION BANNER ===== */
.notification-banner {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    z-index: 999;
    padding: 12px 0;
    transform: translateY(-100%);
    transition: var(--transition);
}

.notification-banner.show {
    transform: translateY(0);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

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

.banner-content button {
    margin-left: auto;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.banner-content button:hover {
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.2rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.2rem;
}

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

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

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.9rem;
}

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

.newsletter-form button {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--primary);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: fadeUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition);
    z-index: 2;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
}

.modal-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.modal-body {
    padding: 1.5rem 2rem;
}

.modal-body .form-group {
    margin-bottom: 1rem;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.modal-body input,
.modal-body textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.modal-body input:focus,
.modal-body textarea:focus {
    border-color: var(--gold);
}

.booking-summary {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius-sm);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 4px 0;
}

.summary-row.total {
    border-top: 1px solid var(--gray-300);
    margin-top: 8px;
    padding-top: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.modal-footer {
    padding: 1rem 2rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Success Modal */
.modal-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease;
}

.modal-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-success p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ===== FLOATING WA ===== */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.scroll-top:hover {
    background: var(--gold);
    transform: translateY(-4px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes zoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

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

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

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

/* Scroll Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-desc {
        margin: 0 auto 2rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-title-line {
        font-size: 3rem;
    }
    
    .hero-title-accent {
        font-size: 4rem;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .auth-split {
        grid-template-columns: 1fr;
    }
    
    .auth-image {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none;
    }
    
    .dash-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 16px;
        z-index: 99;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--gray-800);
        font-size: 1rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title-line {
        font-size: 2rem;
    }
    
    .hero-title-accent {
        font-size: 3rem;
    }
    
    .hero-arrow {
        display: none;
    }
    
    .search-box {
        flex-direction: column;
        padding: 1.2rem;
    }
    
    .search-group {
        min-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 8px;
    }
    
    .flow-connector {
        width: 2px;
        height: 20px;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 1rem;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .page-header {
        padding: 5rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title-line {
        font-size: 1.6rem;
    }
    
    .hero-title-accent {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .trip-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== BOTTOM NAV MOBILE ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 9999;
    padding: 6px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.mobile-bottom-nav .mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-nav .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 8px;
    color: var(--gray-500);
    font-size: 0.65rem;
    transition: var(--transition);
    cursor: pointer;
}

.mobile-bottom-nav .mobile-nav-item i {
    font-size: 1.2rem;
}

.mobile-bottom-nav .mobile-nav-item.active {
    color: var(--gold);
}

.mobile-bottom-nav .mobile-nav-item:hover {
    color: var(--gold);
}

/* Sticky Booking Button Mobile */
.mobile-booking-sticky {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    width: calc(100% - 32px);
    max-width: 400px;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    .footer {
        padding-bottom: 70px;
    }
    
    .floating-wa {
        bottom: 80px;
    }
    
    .scroll-top {
        bottom: 140px;
    }
    
    .mobile-booking-sticky {
        display: none;
    }
}

