/* ===== CSS Variables - Earth Tones Theme ===== */
:root {
    --primary: #5B4A3F;
    --primary-light: #8B7355;
    --primary-dark: #3E3029;
    --accent: #C97B4B;
    --accent-light: #E8A87C;
    --accent-dark: #A35D2E;
    --forest: #4A6741;
    --forest-light: #6B8F5E;
    --forest-dark: #2E4A28;
    --sand: #F5E6D3;
    --sand-light: #FFF8F0;
    --sand-dark: #D4C4AF;
    --sunset: #D4724E;
    --sunset-light: #E89B7B;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-100: #F7F4F1;
    --gray-200: #EDE8E3;
    --gray-300: #D5CEC7;
    --gray-400: #A89F95;
    --gray-500: #7A726A;
    --gray-600: #5A534C;
    --shadow-sm: 0 1px 3px rgba(91,74,63,0.1);
    --shadow-md: 0 4px 12px rgba(91,74,63,0.12);
    --shadow-lg: 0 8px 30px rgba(91,74,63,0.15);
    --shadow-xl: 0 15px 50px rgba(91,74,63,0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--sand-light);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-heading); color: var(--primary-dark); line-height: 1.2; }
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--primary); }
p { color: var(--gray-600); }

/* ===== Top Bar ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--accent-light); font-size: 0.75rem; }
.top-bar-right a {
    display: flex; align-items: center; gap: 5px;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
    font-size: 0.8rem;
}
.top-bar-right a:hover { color: var(--accent-light); }
.top-bar-right i { font-size: 0.8rem; }

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.navbar.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 15px;
}

/* Logo */
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; flex-shrink: 0;
}
.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--sunset));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(201,123,75,0.3);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-heading); font-size: 1.25rem;
    font-weight: 700; color: var(--primary-dark); line-height: 1.2;
}
.logo-tagline {
    font-size: 0.65rem; color: var(--gray-400);
    letter-spacing: 1px; text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex; align-items: center; gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; font-size: 0.88rem; font-weight: 500;
    color: var(--gray-600); border-radius: var(--radius-sm);
    transition: all var(--transition); white-space: nowrap;
}
.nav-icon { font-size: 0.8rem; opacity: 0.6; }
.nav-links > li > a:hover {
    color: var(--accent-dark); background: var(--sand);
}
.nav-links > li > a.active {
    color: var(--accent-dark); background: var(--sand);
    font-weight: 600;
    position: relative;
}
.nav-links > li > a.active::after {
    content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
    height: 2px; background: var(--accent); border-radius: 2px;
}

/* Dropdown Menu */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 8px 0;
    opacity: 0; visibility: hidden;
    transition: all 0.25s ease;
    z-index: 200;
}
.dropdown-menu::before {
    content: ''; position: absolute; top: -6px;
    left: 50%; transform: translateX(-50%);
    width: 12px; height: 12px; background: var(--white);
    border: 1px solid var(--gray-200); border-right: 0; border-bottom: 0;
    transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px; font-size: 0.88rem; color: var(--gray-600);
    transition: all var(--transition);
}
.dropdown-menu a i { color: var(--accent); width: 18px; text-align: center; font-size: 0.85rem; }
.dropdown-menu a:hover {
    background: var(--sand); color: var(--primary-dark);
    padding-left: 22px;
}

/* Nav Right: Search + CTA */
.nav-right {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-search { position: relative; }
.search-toggle {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--gray-100); border: 1px solid var(--gray-200);
    color: var(--gray-500); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); font-size: 0.9rem;
}
.search-toggle:hover { background: var(--sand); color: var(--accent); border-color: var(--accent-light); }
.search-expanded {
    position: absolute; top: 50%; right: 0;
    transform: translateY(-50%);
    width: 350px;
    display: none;
    z-index: 300;
}
.search-expanded.active { display: block; }
.search-expanded .search-form {
    display: flex; align-items: center;
    background: var(--white); border: 2px solid var(--accent);
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 0 4px;
}
.search-expanded .search-icon {
    padding: 0 10px; color: var(--accent); font-size: 0.9rem;
}
.search-expanded .search-form input {
    flex: 1; padding: 10px 8px; border: none; background: none;
    font-family: var(--font-body); font-size: 0.9rem; outline: none; color: var(--black);
}
.search-close {
    width: 30px; height: 30px; border: none; background: var(--gray-100);
    border-radius: 50%; cursor: pointer; color: var(--gray-500);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); font-size: 0.8rem;
}
.search-close:hover { background: var(--accent); color: var(--white); }
.search-results-dropdown {
    position: absolute; top: calc(100% + 5px); left: 0; right: 0;
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); display: none; max-height: 400px;
    overflow-y: auto; z-index: 100;
    border: 1px solid var(--gray-200);
}
.search-results-dropdown.active { display: block; }
.search-result-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
    cursor: pointer; transition: background var(--transition);
}
.search-result-item:hover { background: var(--sand); }
.search-result-item img { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; }
.search-result-item .info h5 { font-size: 0.9rem; color: var(--primary-dark); }
.search-result-item .info p { font-size: 0.8rem; color: var(--gray-400); margin: 0; }

/* Nav CTA */
.nav-cta {
    border-radius: var(--radius-xl) !important;
    padding: 9px 22px !important;
    font-size: 0.85rem !important;
    box-shadow: 0 3px 10px rgba(201,123,75,0.25);
}
.nav-cta:hover { box-shadow: 0 5px 18px rgba(201,123,75,0.35); }

/* Mobile Toggle (hidden on desktop, styled in responsive.css) */
.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px; background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Hide mobile-only items on desktop */
.nav-mobile-cta { display: none; }
.nav-overlay { display: none; }

.nav-spacer { height: 104px; }

/* ===== Hero Section ===== */
.hero {
    position: relative; min-height: 92vh;
    display: flex; align-items: center;
    background: url('../images/hero-banner.jpg') center center / cover no-repeat;
    overflow: hidden;
    padding-bottom: 80px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
    pointer-events: none; z-index: 1;
}

/* Floating travel icons */
.hero-floats {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-float {
    position: absolute;
    opacity: 0.35;
    transform: rotate(var(--r, 0deg));
    animation: heroFloat var(--d, 6s) ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
    50% { transform: rotate(var(--r, 0deg)) translateY(-18px); }
}
.hero-flight-path {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; opacity: 0.6;
}

/* Sparkle dots */
.hero-sparkle {
    position: absolute; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    z-index: 1; pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Content */
.hero-content {
    position: relative; z-index: 2;
    max-width: 700px; text-align: center;
    margin: 0 auto;
    padding-top: 20px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 8px 22px; border-radius: var(--radius-xl);
    font-size: 0.88rem; margin-bottom: 20px;
    color: #fff; font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i { color: var(--accent-light); }
.hero h1 {
    color: #fff; font-size: 4.5rem;
    margin-bottom: 20px; line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span {
    color: var(--accent-light);
    display: block;
    font-size: 5rem;
}
.hero p {
    color: rgba(255,255,255,0.88); font-size: 1.1rem;
    margin: 0 auto 28px; max-width: 520px; line-height: 1.7;
}

/* Tour type tags */
.hero-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-bottom: 32px;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    font-size: 0.82rem; font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: all 0.25s ease;
}
.hero-tag i { color: var(--accent-light); font-size: 0.78rem; }
.hero-tag:hover {
    border-color: var(--accent-light);
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Buttons */
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-btn-book {
    padding: 16px 40px; font-size: 1.08rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 6px 25px rgba(201,123,75,0.3);
}
.hero-btn-book:hover {
    box-shadow: 0 8px 35px rgba(201,123,75,0.45);
    transform: translateY(-3px);
}
.hero .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* Stats */
.hero-stats {
    display: flex; gap: 40px; margin-top: 45px;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.2);
    justify-content: center;
}
.hero-stat { text-align: center; }
.hero-stat h3 { color: #fff; font-size: 2rem; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }
.hero-stat p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 2px; }

/* Bottom illustrations strip */
.hero-illustrations {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 70px; overflow: hidden; z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.hero-illust-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 45px; height: 100%;
    animation: illustScroll 30s linear infinite;
}
.hero-illust-strip i {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.5);
    opacity: 0.4;
    flex-shrink: 0;
}
@keyframes illustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Section Styles ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-header {
    text-align: center; margin-bottom: 50px;
}
.section-header .subtitle {
    display: inline-block; color: var(--accent); font-weight: 600;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 15px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--gray-500); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border: none; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.btn-primary {
    background: var(--accent); color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline {
    background: transparent; color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--forest-dark); transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== Cards ===== */
.card {
    background: var(--white); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
    position: relative; height: 220px; overflow: hidden;
}
.card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.08); }
.card-badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--accent); color: var(--white);
    padding: 4px 12px; border-radius: var(--radius-sm);
    font-size: 0.8rem; font-weight: 600;
}
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p { font-size: 0.9rem; margin-bottom: 12px; }
.card-meta {
    display: flex; align-items: center; gap: 15px;
    font-size: 0.85rem; color: var(--gray-400); margin-bottom: 15px;
}
.card-meta i { color: var(--accent); }
.card-price {
    display: flex; align-items: center; justify-content: space-between;
}
.card-price .price {
    font-size: 1.3rem; font-weight: 700; color: var(--forest);
}
.card-price .per { font-size: 0.8rem; color: var(--gray-400); }

/* ===== Grid Layouts ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* ===== Why Choose Us ===== */
.feature-card {
    text-align: center; padding: 40px 30px;
    background: var(--white); border-radius: var(--radius-md);
    transition: all var(--transition); border: 1px solid var(--gray-200);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.feature-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: var(--sand); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent);
    transition: all var(--transition);
}
.feature-card:hover .feature-icon { background: var(--accent); color: var(--white); }
.feature-card h4 { margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; }

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--white); padding: 30px;
    border-radius: var(--radius-md); border: 1px solid var(--gray-200);
    position: relative;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 15px; left: 20px;
    font-family: var(--font-heading); font-size: 4rem;
    color: var(--accent-light); opacity: 0.3; line-height: 1;
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-card .author { font-weight: 600; color: var(--primary-dark); }

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-weight: 600; margin-bottom: 6px;
    color: var(--primary-dark); font-size: 0.9rem;
}
.form-control {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.95rem;
    background: var(--white); color: var(--black);
    transition: all var(--transition); outline: none;
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,123,75,0.15);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* date disabled style */
.date-option { 
    display: inline-block; padding: 8px 16px; margin: 4px;
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    cursor: pointer; font-size: 0.85rem; transition: all var(--transition);
    background: var(--white);
}
.date-option:hover { border-color: var(--accent); }
.date-option.selected { background: var(--accent); color: var(--white); border-color: var(--accent); }
.date-option.disabled {
    opacity: 0.4; cursor: not-allowed; filter: blur(0.5px);
    text-decoration: line-through;
}

/* ===== Package Detail ===== */
.package-hero {
    padding: 40px 0; background: var(--white);
}
.package-detail-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
}
.package-carousel { border-radius: var(--radius-md); overflow: hidden; }
.package-carousel .swiper-slide img { width: 100%; height: 400px; object-fit: cover; }
.package-info { padding: 20px 0; }
.package-info .price-tag {
    font-size: 2rem; font-weight: 700; color: var(--forest);
    margin: 15px 0;
}
.package-info .price-tag span { font-size: 0.9rem; color: var(--gray-400); font-weight: 400; }

/* Itinerary */
.itinerary { padding: 40px 0; }
.itinerary-item {
    display: flex; gap: 25px; padding: 25px 0;
    border-bottom: 1px solid var(--gray-200);
}
.itinerary-day {
    flex-shrink: 0; width: 60px; height: 60px;
    background: var(--accent); color: var(--white);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; flex-direction: column;
    font-weight: 700; line-height: 1;
}
.itinerary-day small { font-size: 0.6rem; font-weight: 400; text-transform: uppercase; }
.itinerary-day span { font-size: 1.3rem; }
.itinerary-content h4 { margin-bottom: 8px; color: var(--primary-dark); }
.itinerary-content p { font-size: 0.9rem; }

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8), transparent);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 1rem; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ===== Guide Cards ===== */
.guide-card {
    background: var(--white); border-radius: var(--radius-md);
    overflow: hidden; text-align: center; padding: 30px 20px;
    border: 1px solid var(--gray-200); transition: all var(--transition);
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.guide-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    margin: 0 auto 15px; overflow: hidden;
    border: 3px solid var(--accent-light);
}
.guide-avatar img { width: 100%; height: 100%; object-fit: cover; }
.guide-card .stars { color: var(--accent); font-size: 0.9rem; margin: 8px 0; }
.guide-card .destination { color: var(--forest); font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; }
.guide-card .experience { color: var(--gray-400); font-size: 0.8rem; margin-bottom: 12px; }
.guide-card .guide-price { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 15px; }

/* ===== Support FAB ===== */
.support-fab { position: fixed; bottom: 30px; right: 30px; z-index: 900; }
.fab-btn {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--accent); color: var(--white);
    border: none; font-size: 1.4rem; cursor: pointer;
    box-shadow: var(--shadow-lg); transition: all var(--transition);
}
.fab-btn:hover { background: var(--accent-dark); transform: scale(1.1); }
.fab-menu {
    position: absolute; bottom: 75px; right: 0;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all var(--transition);
}
.fab-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-option {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: var(--radius-xl);
    font-size: 0.9rem; font-weight: 500; white-space: nowrap;
    border: none; cursor: pointer; font-family: var(--font-body);
    transition: all var(--transition); text-decoration: none;
}
.fab-option.whatsapp { background: #25D366; color: var(--white); }
.fab-option.whatsapp:hover { background: #1fb855; }
.fab-option.chatbot { background: var(--primary); color: var(--white); }
.fab-option.chatbot:hover { background: var(--primary-dark); }

/* ===== Chatbot ===== */
.chatbot-modal {
    position: fixed; bottom: 100px; right: 30px; z-index: 950;
    width: 400px; height: 560px;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: 0 10px 50px rgba(0,0,0,0.2); display: none;
    flex-direction: column; overflow: hidden;
    border: 1px solid var(--gray-200);
}
.chatbot-modal.active { display: flex; }

/* Header */
.chatbot-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary-dark), var(--forest-dark));
    color: var(--white);
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.chatbot-header h4 { font-size: 0.95rem; color: var(--white); margin: 0; font-family: var(--font-body); }
.chatbot-status { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.chatbot-status i { color: #4ade80; font-size: 0.45rem; margin-right: 4px; vertical-align: middle; }
.chatbot-header button {
    background: rgba(255,255,255,0.1); border: none; color: var(--white);
    cursor: pointer; font-size: 0.9rem; width: 32px; height: 32px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.chatbot-header button:hover { background: rgba(255,255,255,0.25); }

/* Messages */
.chatbot-messages {
    flex: 1; padding: 16px; overflow-y: auto;
    background: var(--gray-100);
    scroll-behavior: smooth;
}
.chat-msg { display: flex; margin-bottom: 8px; animation: chatSlide 0.3s ease; }
.chat-bubble {
    max-width: 88%;
}
.chat-msg p {
    padding: 10px 14px; border-radius: 16px;
    font-size: 0.85rem; line-height: 1.6;
    word-wrap: break-word;
}
.chat-msg.bot .chat-bubble { align-self: flex-start; }
.chat-msg.bot p {
    background: var(--white); color: var(--primary-dark);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.chat-msg.user { justify-content: flex-end; }
.chat-msg.user .chat-bubble { align-self: flex-end; }
.chat-msg.user p {
    background: var(--accent); color: var(--white);
    border-bottom-right-radius: 4px;
}
@keyframes chatSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typing Indicator */
.typing-indicator .chat-bubble {
    display: flex; align-items: center; gap: 5px;
    padding: 12px 18px;
    background: var(--white); border-radius: 16px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.typing-indicator .dot {
    width: 7px; height: 7px;
    background: var(--gray-400); border-radius: 50%;
    animation: dotBounce 1.4s infinite;
}
.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Option Buttons */
.chat-options {
    display: flex; flex-direction: column; gap: 6px;
    padding: 4px 0 12px;
    animation: chatSlide 0.3s ease;
}
.chat-option-btn {
    display: flex; align-items: center; gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.83rem;
    color: var(--primary-dark);
    text-align: left;
    transition: all 0.2s ease;
}
.chat-option-btn i {
    width: 28px; height: 28px;
    background: var(--sand);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.chat-option-btn:hover {
    border-color: var(--accent);
    background: var(--sand-light);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(201,123,75,0.12);
}
.chat-option-btn:hover i {
    background: var(--accent);
    color: var(--white);
}
.chat-option-btn.primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.chat-option-btn.primary i {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.chat-option-btn.primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}
.chat-option-btn.disabled {
    opacity: 0.45;
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
}
.chat-option-btn.selected {
    border-color: var(--accent);
    opacity: 0.8;
    background: var(--sand);
}
.chat-option-btn.selected i {
    background: var(--accent);
    color: var(--white);
}

/* Option text */
.chat-opt-text { display: flex; flex-direction: column; min-width: 0; }
.chat-opt-label { font-weight: 500; line-height: 1.3; }
.chat-opt-sub { font-size: 0.73rem; color: var(--gray-400); font-weight: 400; }
.chat-option-btn.primary .chat-opt-sub { color: rgba(255,255,255,0.7); }

/* Input */
.chatbot-input {
    display: flex; padding: 12px; border-top: 1px solid var(--gray-200);
    background: var(--white);
    gap: 8px;
}
.chatbot-input input {
    flex: 1; padding: 10px 16px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-family: var(--font-body); font-size: 0.85rem; outline: none;
    background: var(--gray-100);
    transition: all var(--transition);
}
.chatbot-input input:focus { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(201,123,75,0.1); }
.chatbot-input button {
    width: 40px; height: 40px;
    background: var(--accent); color: var(--white);
    border: none; border-radius: 50%;
    cursor: pointer; font-size: 0.9rem; transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.chatbot-input button:hover { background: var(--accent-dark); transform: scale(1.05); }

/* ===== Page Headers ===== */
.page-header {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, var(--primary-dark), var(--forest-dark));
    color: var(--white); text-align: center;
}
.page-header h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 15px; font-size: 0.85rem;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== Alert / Toast ===== */
.alert {
    padding: 15px 20px; border-radius: var(--radius-sm);
    margin-bottom: 20px; font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: var(--sand); color: var(--primary-dark); border: 1px solid var(--sand-dark); }

/* ===== Animations ===== */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Misc ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.loading-spinner {
    display: inline-block; width: 30px; height: 30px;
    border: 3px solid var(--gray-200); border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Contact Page ===== */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.contact-info-card {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 20px; background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--gray-200); margin-bottom: 15px;
}
.contact-info-card i {
    font-size: 1.3rem; color: var(--accent); margin-top: 3px;
}
.contact-info-card h4 { margin-bottom: 4px; }

/* ===== About Page ===== */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.about-img {
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 15px; }
.stats-row {
    display: flex; gap: 30px; margin-top: 25px;
}
.stat-item { text-align: center; }
.stat-item h3 { color: var(--accent); font-size: 2rem; }
.stat-item p { font-size: 0.85rem; color: var(--gray-500); }

/* ===== AI Planner ===== */
.planner-container {
    display: grid; grid-template-columns: 1fr 350px; gap: 30px;
}
.planner-form-section {
    background: var(--white); padding: 30px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.planner-sidebar {
    position: sticky; top: 90px;
}
.planner-result {
    background: var(--white); padding: 30px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    margin-top: 20px;
}
.sidebar-package {
    background: var(--white); padding: 20px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
}
.sidebar-package img {
    width: 100%; height: 150px; object-fit: cover;
    border-radius: var(--radius-sm); margin-bottom: 12px;
}
.sidebar-package h4 { margin-bottom: 5px; }
.sidebar-package .price { color: var(--forest); font-weight: 700; font-size: 1.1rem; }

/* ===== Footer CTA Strip ===== */
.footer-cta-strip {
    background: linear-gradient(135deg, var(--accent), var(--sunset));
    padding: 40px 0;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-cta-text h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 5px;
}
.footer-cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
}
.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
}
.footer-main {
    padding: 60px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Footer Brand Column */
.footer-brand { padding-right: 20px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    text-decoration: none;
}
.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--sunset));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.footer-logo-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.footer-logo-tagline {
    display: block;
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
    padding: 2px 0;
}
.footer-links a i {
    font-size: 0.6rem;
    color: var(--accent);
    transition: transform var(--transition);
}
.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}
.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.footer-contact .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-light);
    font-size: 0.85rem;
}
.footer-contact strong {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.footer-contact span {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.83rem;
    transition: color var(--transition);
}
.footer-bottom-links a:hover {
    color: var(--accent-light);
}
