/* ============================================
   GHUMO PHIRO — MAIN STYLESHEET
   Colors: #0a0a0a bg | #C9A017 gold | #fff text
   ============================================ */

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

:root {
  --bg:        #0a0a0a;
  --surface:   #111111;
  --surface2:  #1a1a1a;
  --border:    #222222;
  --gold:      #C9A017;
  --gold-light:#e6b81a;
  --white:     #ffffff;
  --text:      #cccccc;
  --muted:     #888888;
  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 32px rgba(201,160,23,0.25);
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.section-label { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.section-title { color: var(--white); font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-sub { color: var(--text); font-size: 18px; max-width: 600px; }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: #0a0a0a; font-weight: 700; font-size: 15px;
  padding: 12px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); color: #0a0a0a; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold.large { padding: 16px 40px; font-size: 17px; border-radius: 8px; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); font-weight: 500; font-size: 14px; padding: 10px 22px; border-radius: var(--radius-sm); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); font-weight: 600; font-size: 15px; padding: 12px 28px; border-radius: var(--radius-sm); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); }
.btn-outline:hover { background: var(--gold); color: #0a0a0a; }
.btn-whatsapp { background: #25D366; color: white; font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; transition: all var(--transition); }
.btn-whatsapp:hover { background: #22c55e; color: white; transform: translateY(-1px); }
.btn-dark { background: var(--surface2); color: var(--white); font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: var(--radius-sm); border: 1px solid var(--border); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.site-header.scrolled { background: rgba(10,10,10,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.logo img { height: 44px; width: auto; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a { color: #d4d4d4; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: all var(--transition); display: block; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--gold); }
.has-dropdown { position: relative; }
.has-dropdown .chevron { font-style: normal; font-size: 12px; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px; min-width: 200px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 16px; color: var(--text); font-size: 14px; border-radius: var(--radius-sm); }
.dropdown a:hover { background: var(--surface2); color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: linear-gradient(165deg, #0a0a0a 0%, #0f0d07 50%, #0a0a0a 100%);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1800&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.12; z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }
.hero-eyebrow { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 24px; display: block; }
.hero-title {
  color: var(--white); font-size: clamp(40px, 7vw, 80px); font-weight: 900;
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px;
}
.hero-title span { color: var(--gold); }
.hero-sub { color: #aaaaaa; font-size: clamp(16px, 2vw, 20px); max-width: 600px; margin: 0 auto 48px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* Search Box */
.search-box {
  background: rgba(17,17,17,0.9); border: 1px solid #2a2a2a; border-radius: 16px;
  padding: 8px; backdrop-filter: blur(20px); max-width: 900px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.search-tabs { display: flex; gap: 4px; margin-bottom: 8px; padding: 4px; }
.search-tab { background: none; border: none; color: var(--muted); font-size: 14px; font-weight: 500; padding: 8px 20px; border-radius: 8px; cursor: pointer; transition: all var(--transition); }
.search-tab.active { background: var(--gold); color: #0a0a0a; font-weight: 700; }
.search-form { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 8px; padding: 8px; }
.search-field { display: flex; flex-direction: column; gap: 4px; }
.search-field label { color: var(--muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 0 4px; }
.search-field input, .search-field select {
  background: var(--bg); border: 1px solid #2a2a2a; color: var(--white);
  padding: 12px 16px; border-radius: 8px; font-size: 15px; outline: none;
  transition: border-color var(--transition);
}
.search-field input:focus, .search-field select:focus { border-color: var(--gold); }
.search-field input::placeholder { color: var(--muted); }
.search-field select option { background: var(--surface); }
.search-submit { align-self: flex-end; }
.search-submit .btn-gold { padding: 14px 28px; height: 50px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.stats-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.stat-item { text-align: center; }
.stat-num { color: var(--gold); font-size: 32px; font-weight: 800; line-height: 1; display: block; }
.stat-label { color: var(--muted); font-size: 13px; font-weight: 500; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-dark { background: var(--bg); }
.section-surface { background: var(--surface); }
.section-alt { background: #0d0d0d; }

/* ── CATEGORY CARDS ── */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; cursor: pointer;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.category-card::before { content: ''; position: absolute; inset: 0; background: var(--gold); opacity: 0; transition: opacity var(--transition); }
.category-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.category-card:hover::before { opacity: 0.05; }
.category-card .icon { font-size: 44px; margin-bottom: 16px; position: relative; }
.category-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 8px; position: relative; }
.category-card p { color: var(--muted); font-size: 13px; line-height: 1.6; position: relative; }

/* ── DESTINATION CARDS ── */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4/3; cursor: pointer; transition: transform var(--transition);
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card:hover .dest-img { transform: scale(1.05); }
.dest-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.dest-tag { background: var(--gold); color: #0a0a0a; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 30px; width: fit-content; margin-bottom: 10px; }
.dest-name { color: var(--white); font-size: 22px; font-weight: 700; line-height: 1.2; }
.dest-country { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }

/* ── PACKAGE CARDS ── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column;
}
.pkg-card:hover { border-color: #333; transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.pkg-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pkg-card:hover .pkg-img { transform: scale(1.05); }
.pkg-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #0a0a0a; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 30px; }
.pkg-rating { position: absolute; bottom: 14px; right: 14px; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); color: var(--white); font-size: 13px; font-weight: 600; padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 4px; }
.pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.pkg-meta span { color: var(--muted); font-size: 13px; }
.pkg-title { color: var(--white); font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.pkg-desc { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; flex: 1; }
.pkg-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pkg-highlight { background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-size: 12px; padding: 4px 10px; border-radius: 20px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.pkg-price-wrap .original { color: var(--muted); font-size: 13px; text-decoration: line-through; }
.pkg-price { color: var(--gold); font-size: 26px; font-weight: 800; line-height: 1; }
.pkg-price-wrap .per { color: var(--muted); font-size: 13px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px;
}
.why-icon { font-size: 44px; margin-bottom: 20px; }
.why-card h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.testi-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { border-top: 1px solid var(--border); padding-top: 18px; }
.testi-name { color: var(--white); font-weight: 700; font-size: 15px; }
.testi-trip { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ── CORPORATE BANNER ── */
.corp-banner {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1505 100%);
  border: 1px solid #2a2410; border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.corp-banner-content { padding: 64px 56px; }
.corp-banner-content .section-title { margin-bottom: 20px; }
.corp-banner-content p { color: var(--text); font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.corp-features { margin: 28px 0; }
.corp-feature { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--text); font-size: 15px; }
.corp-feature::before { content: '✦'; color: var(--gold); font-size: 12px; flex-shrink: 0; }
.corp-banner-stats { background: var(--surface2); display: flex; flex-direction: column; justify-content: center; padding: 64px 48px; gap: 36px; }
.corp-stat { text-align: center; }
.corp-stat-num { color: var(--gold); font-size: 52px; font-weight: 800; line-height: 1; }
.corp-stat-label { color: var(--text); font-size: 14px; margin-top: 6px; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gold); padding: 80px 0; text-align: center;
}
.cta-section h2 { color: #0a0a0a; font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; }
.cta-section p { color: #1a1a1a; font-size: 18px; margin-bottom: 36px; }
.cta-section .btn-dark { font-size: 16px; padding: 16px 40px; background: #0a0a0a; border-color: #0a0a0a; color: var(--gold); }
.cta-section .btn-dark:hover { background: #1a1a1a; color: var(--gold); }

/* ── FOOTER ── */
.site-footer { background: #080808; border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--muted); width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,160,23,0.08); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p { color: var(--muted); font-size: 14px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact p span { color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: var(--muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-tagline { color: var(--gold) !important; font-weight: 600; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition); animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float a { display: flex; align-items: center; justify-content: center; }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); } }

/* ── FORMS ── */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.form-control {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  color: var(--white); padding: 14px 18px; border-radius: 8px; font-size: 15px; outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--muted); }
.form-control option { background: var(--surface); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }

/* ── AUTH PAGES ── */
.auth-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 24px 60px; }
.auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 48px; width: 100%; max-width: 460px; }
.auth-logo { text-align: center; margin-bottom: 36px; }
.auth-logo img { height: 48px; margin: 0 auto 16px; }
.auth-card h1 { color: var(--white); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.auth-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.auth-footer { text-align: center; margin-top: 28px; color: var(--muted); font-size: 14px; }
.auth-footer a { color: var(--gold); font-weight: 600; }
.divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--muted); font-size: 13px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 0 80px; background: var(--surface);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1800&auto=format') center/cover;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; line-height: 1.1; }
.page-hero p { color: var(--text); font-size: 18px; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); font-size: 13px; }
.breadcrumb span { color: var(--muted); font-size: 13px; }
.breadcrumb .current { color: var(--gold); font-size: 13px; }

/* ── FILTER BAR ── */
.filter-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 72px; z-index: 100; }
.filter-inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-btn { background: none; border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; padding: 8px 20px; border-radius: 50px; cursor: pointer; transition: all var(--transition); }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #0a0a0a; font-weight: 700; }

/* ── BOOKING PAGE ── */
.booking-wrapper { min-height: 100vh; padding: 100px 0 60px; }
.booking-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.booking-steps { display: flex; gap: 0; margin-bottom: 40px; }
.step {
  display: flex; align-items: center; gap: 10px; flex: 1; position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; left: 42px; right: -20px; height: 2px; background: var(--border); z-index: 0;
}
.step.completed:not(:last-child)::after { background: var(--gold); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 700; font-size: 14px;
  background: var(--bg); position: relative; z-index: 1; flex-shrink: 0;
}
.step.active .step-num { border-color: var(--gold); color: var(--gold); }
.step.completed .step-num { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }
.step-label { color: var(--muted); font-size: 13px; font-weight: 500; }
.step.active .step-label { color: var(--white); }
.booking-summary {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: sticky; top: 100px;
}
.booking-summary h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-pkg-img { border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; margin-bottom: 16px; }
.summary-pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-row .label { color: var(--muted); }
.summary-row .value { color: var(--white); font-weight: 600; }
.summary-total { display: flex; justify-content: space-between; padding: 16px 0 0; font-size: 16px; }
.summary-total .label { color: var(--white); font-weight: 700; }
.summary-total .value { color: var(--gold); font-size: 24px; font-weight: 800; }

/* ── ACCOUNT ── */
.account-grid { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.account-sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; height: fit-content; }
.account-nav a { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 15px; padding: 12px 16px; border-radius: 8px; margin-bottom: 4px; transition: all var(--transition); }
.account-nav a:hover, .account-nav a.active { background: var(--surface2); color: var(--gold); }
.account-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #e6b81a); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: #0a0a0a; margin: 0 auto 16px; }
.account-main { }
.booking-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; }
.booking-card-img { width: 100px; height: 70px; border-radius: 8px; object-fit: cover; }
.booking-status { padding: 4px 14px; border-radius: 30px; font-size: 12px; font-weight: 700; }
.status-confirmed { background: rgba(34,197,94,0.15); color: #22c55e; }
.status-pending { background: rgba(201,160,23,0.15); color: var(--gold); }
.status-cancelled { background: rgba(239,68,68,0.15); color: #ef4444; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { color: var(--white); font-size: 40px; font-weight: 800; margin-bottom: 20px; }
.contact-info p { color: var(--text); font-size: 17px; line-height: 1.8; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 48px; height: 48px; background: rgba(201,160,23,0.1); border: 1px solid rgba(201,160,23,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--muted); font-size: 15px; }
.contact-detail a:hover { color: var(--gold); }

/* ── PACKAGE DETAIL ── */
.pkg-detail-hero { height: 480px; position: relative; overflow: hidden; }
.pkg-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.pkg-detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 60%, transparent 100%); }
.pkg-detail-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; z-index: 1; }
.pkg-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 48px 0; align-items: start; }
.pkg-section { margin-bottom: 40px; }
.pkg-section h3 { color: var(--white); font-size: 22px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.inclusions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.inclusion-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; }
.inclusion-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.highlight-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; color: var(--text); font-size: 15px; }
.highlight-num { width: 28px; height: 28px; background: rgba(201,160,23,0.15); border: 1px solid rgba(201,160,23,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── ALERTS ── */
.alert { padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }
.alert-info { background: rgba(201,160,23,0.1); border: 1px solid rgba(201,160,23,0.2); color: var(--gold); }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state .icon { font-size: 64px; margin-bottom: 24px; opacity: 0.5; }
.empty-state h3 { color: var(--white); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.empty-state p { color: var(--muted); font-size: 16px; max-width: 400px; margin: 0 auto 28px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity:0; }
.fade-up-2 { animation-delay: 0.2s; opacity:0; }
.fade-up-3 { animation-delay: 0.3s; opacity:0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
  .corp-banner { grid-template-columns: 1fr; }
  .corp-banner-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .account-sidebar { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px; z-index: 999; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul li a { padding: 12px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-left: 16px; }
  .hamburger { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pkg-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(36px, 8vw, 56px); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .auth-card { padding: 32px 24px; }
  .form-card { padding: 24px 20px; }
  .booking-steps { display: none; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ── */
::selection { background: rgba(201,160,23,0.3); color: var(--white); }
