﻿:root {
  --ink: #0a0a0f;
  --cream: #faf8f4;
  --warm: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --teal: #1a6b6b;
  --teal-light: #2d9090;
  --rust: #c4502a;
  --mist: #e8eef0;
  --text-dim: #6b6b7a;
  --border: #e0dbd0;
  --shadow: 0 8px 40px rgba(10,10,15,0.12);
  --shadow-lg: 0 20px 80px rgba(10,10,15,0.18);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ===== UTILITY ===== */
.hidden { display: none !important; }
.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 3px; color: var(--teal);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
  text-decoration: none; letter-spacing: 0.5px;
  transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; gap: 0.75rem; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.25s; letter-spacing: 0.3px; text-decoration: none; }
.btn-outline { background: transparent; border: 1.5px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,107,107,0.3); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 0.95rem; border-radius: 50px; }
.btn-full { width: 100%; justify-content: center; }

/* User menu */
.user-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  border: 2px solid var(--gold);
}
.user-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; right: 0; top: calc(100% + 10px);
  background: white; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); min-width: 180px;
  border: 1px solid var(--border); overflow: hidden;
  display: none; z-index: 999;
}
.user-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item { padding: 12px 16px; cursor: pointer; font-size: 0.85rem; transition: background 0.2s; display: flex; align-items: center; gap: 8px; }
.dropdown-item:hover { background: var(--warm); }
.dropdown-item.danger { color: var(--rust); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1f2d 0%, #1a3a3a 40%, #0f2a20 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover;
  opacity: 0.35; filter: saturate(0.8);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.7) 100%); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto; padding: 0 5%;
  text-align: center; color: white; padding-top: 72px;
}
.hero-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(201,168,76,0.2); border: 1px solid var(--gold);
  color: var(--gold-light); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 0.95;
  margin-bottom: 1.5rem; letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===== SEARCH BAR ===== */
.search-section {
  background: white; padding: 2.5rem 5%;
  box-shadow: var(--shadow); position: relative; z-index: 10;
}
.search-bar {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem; align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); }
.search-field select, .search-field input {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
  color: var(--ink); background: var(--warm); transition: border-color 0.2s;
  outline: none;
}
.search-field select:focus, .search-field input:focus { border-color: var(--teal); }

/* ===== SECTIONS ===== */
section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 0.5rem; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.1; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--teal); }

/* ===== TOUR CARDS ===== */
.tours-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.tour-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,10,15,0.07);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; border: 1px solid var(--border);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
  position: relative; overflow: hidden; height: 220px;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tour-card:hover .card-img img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--teal); color: white;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
}
.card-featured { background: var(--gold); }
.card-price-tag {
  position: absolute; bottom: 14px; right: 14px;
  background: white; color: var(--ink);
  padding: 6px 14px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.card-price-tag span { color: var(--gold); }
.card-body { padding: 1.25rem; }
.card-location { font-size: 0.78rem; color: var(--text-dim); display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.2; }
.card-desc { font-size: 0.83rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 1rem; }
.card-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1rem; }
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.rating { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; font-weight: 600; color: var(--gold); }
.rating-count { color: var(--text-dim); font-weight: 400; font-size: 0.78rem; }
.icon { font-size: 1rem; }

/* ===== CATEGORY FILTERS ===== */
.filter-bar {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-chip {
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid var(--border); background: white;
  font-size: 0.83rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; color: var(--ink);
}
.filter-chip:hover, .filter-chip.active { background: var(--teal); border-color: var(--teal); color: white; }

/* Sort bar */
.sort-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.sort-label { font-size: 0.83rem; color: var(--text-dim); white-space: nowrap; }
.sort-select { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 50px; font-family: inherit; font-size: 0.83rem; outline: none; cursor: pointer; background: white; }
.result-count { margin-left: auto; font-size: 0.83rem; color: var(--text-dim); }

/* ===== MODAL / DETAIL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,10,15,0.65);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius);
  max-width: 900px; width: 100%; max-height: 90vh;
  overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: slideUp 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); font-size: 1.1rem; z-index: 10;
}
.modal-img { width: 100%; height: 320px; object-fit: cover; }
.modal-body { padding: 2rem; position: relative; }
.modal-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; }
.detail-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.detail-location { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1rem; }
.detail-desc { color: var(--ink); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-dim); }
.feature-item strong { color: var(--ink); }
.detail-includes h4, .detail-sidebar h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.include-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.include-list li { font-size: 0.85rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.include-list li::before { content: 'âœ“'; color: var(--teal); font-weight: 700; }

/* Booking sidebar */
.booking-sidebar {
  background: var(--warm); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--border);
  position: sticky; top: 20px;
}
.sidebar-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.sidebar-price small { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text-dim); font-weight: 400; }
.form-group { margin-bottom: 1rem; }
.form-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 6px; display: block; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
  outline: none; background: white; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--teal); }
.price-breakdown { margin: 1rem 0; padding: 1rem; background: white; border-radius: var(--radius-sm); }
.price-row { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
.price-total { font-weight: 700; font-size: 1rem; border-top: 1px solid var(--border); padding-top: 8px; margin-top: 8px; }

/* ===== EXPLORE ===== */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1rem; max-width: 1200px; margin: 0 auto; }
.explore-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.3s;
}
.explore-item:hover { transform: scale(1.02); }
.explore-item.large { grid-column: span 2; grid-row: span 2; }
.explore-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; display: block; }
.explore-item.large img { min-height: 420px; }
.explore-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.explore-label { color: white; }
.explore-label h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; }
.explore-label p { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== AUTH PAGES ===== */
.auth-container {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.auth-visual {
  background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=800&q=80') center/cover;
  position: relative; min-height: 600px;
}
.auth-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,107,0.8), rgba(10,10,15,0.6));
  display: flex; align-items: center; justify-content: center; padding: 3rem;
}
.auth-visual-content { color: white; text-align: center; }
.auth-visual-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; margin-bottom: 1rem; }
.auth-visual-content p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; }
.auth-form-side { display: flex; align-items: center; justify-content: center; padding: 3rem; background: white; }
.auth-form-inner { width: 100%; max-width: 420px; }
.auth-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 3px; color: var(--teal); margin-bottom: 0.5rem; }
.auth-logo span { color: var(--gold); }
.auth-subtitle { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 2rem; }
.auth-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; margin-bottom: 0.25rem; }
.auth-tabs { display: flex; gap: 0; margin-bottom: 2rem; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; }
.auth-tab { flex: 1; padding: 10px; text-align: center; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text-dim); border: none; background: none; }
.auth-tab.active { background: var(--teal); color: white; border-radius: 50px; }
.divider { text-align: center; margin: 1.5rem 0; position: relative; }
.divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border); }
.divider span { position: relative; background: white; padding: 0 1rem; color: var(--text-dim); font-size: 0.8rem; }
.social-btn {
  width: 100%; padding: 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.88rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: white; transition: background 0.2s; font-weight: 500;
}
.social-btn:hover { background: var(--warm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.error-msg { color: var(--rust); font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.success-msg { color: var(--teal); font-size: 0.85rem; text-align: center; margin-top: 1rem; display: none; }

/* ===== ADMIN PANEL ===== */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; padding-top: 72px; }
.admin-sidebar {
  background: var(--ink); color: white; padding: 2rem 0;
  position: sticky; top: 72px; height: calc(100vh - 72px); overflow-y: auto;
}
.admin-menu-title { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); padding: 0 1.5rem; margin-bottom: 0.75rem; margin-top: 1.5rem; }
.admin-menu-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 1.5rem; font-size: 0.85rem; cursor: pointer;
  transition: background 0.2s; border-left: 3px solid transparent; color: rgba(255,255,255,0.75);
}
.admin-menu-item:hover { background: rgba(255,255,255,0.06); color: white; }
.admin-menu-item.active { background: rgba(45,144,144,0.2); border-left-color: var(--teal-light); color: white; }
.admin-main { padding: 2rem; background: var(--warm); }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.admin-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border);
}
.stat-card-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 0.5rem; }
.stat-card-value { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; line-height: 1; }
.stat-card-change { font-size: 0.78rem; margin-top: 0.5rem; }
.stat-card-change.up { color: #22c55e; }
.stat-card-change.down { color: var(--rust); }
.admin-table-wrap { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--warm); padding: 12px 16px; text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); font-weight: 600; }
.admin-table td { padding: 14px 16px; border-top: 1px solid var(--border); font-size: 0.88rem; vertical-align: middle; }
.admin-table tr:hover td { background: var(--warm); }
.badge { display: inline-flex; padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-red { background: #fee2e2; color: #b91c1c; }
.badge-blue { background: #dbeafe; color: #1d4ed8; }
.action-btn { padding: 5px 12px; border-radius: 50px; border: 1.5px solid var(--border); font-size: 0.75rem; cursor: pointer; background: none; font-family: inherit; transition: all 0.2s; margin-right: 4px; }
.action-btn:hover { background: var(--teal); border-color: var(--teal); color: white; }
.action-btn.danger:hover { background: var(--rust); border-color: var(--rust); color: white; }
.admin-chart { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.5rem; margin-bottom: 1.5rem; }
.chart-bar-wrap { display: flex; align-items: flex-end; gap: 1rem; height: 120px; margin-top: 1rem; }
.chart-bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.chart-bar { width: 100%; background: var(--teal); border-radius: 4px 4px 0 0; transition: opacity 0.2s; }
.chart-bar:hover { opacity: 0.8; }
.chart-label { font-size: 0.7rem; color: var(--text-dim); }
.add-tour-form { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== PAYMENT ===== */
.payment-container { max-width: 900px; margin: 0 auto; padding: 100px 5% 60px; }
.payment-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
.payment-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; margin-bottom: 0.5rem; }
.payment-subtitle { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 2rem; }
.payment-methods { display: flex; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.payment-method {
  flex: 1; min-width: 120px; padding: 14px; border-radius: var(--radius-sm);
  border: 2px solid var(--border); cursor: pointer; text-align: center;
  transition: all 0.2s; background: white;
}
.payment-method.active { border-color: var(--teal); background: rgba(26,107,107,0.05); }
.payment-method-icon { font-size: 1.5rem; margin-bottom: 6px; }
.payment-method-label { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.payment-section-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.card-icons { display: flex; gap: 8px; margin-bottom: 1rem; }
.card-icon { padding: 4px 10px; border: 1px solid var(--border); border-radius: 4px; font-size: 0.75rem; font-weight: 700; }
.order-summary { background: var(--warm); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.order-summary h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.order-item { display: flex; gap: 1rem; margin-bottom: 1rem; }
.order-item-img { width: 70px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); }
.order-item-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.order-item-info p { font-size: 0.8rem; color: var(--text-dim); }
.price-line { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 8px; }
.total-line { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; border-top: 2px solid var(--border); padding-top: 12px; margin-top: 4px; }
.secure-badges { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.secure-badge { font-size: 0.72rem; color: var(--text-dim); display: flex; align-items: center; gap: 4px; }
.success-screen { text-align: center; padding: 3rem; }
.success-icon { width: 80px; height: 80px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; }
.success-screen h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 0.75rem; }
.success-screen p { color: var(--text-dim); margin-bottom: 2rem; }

/* ===== PROFILE ===== */
.profile-container { max-width: 1000px; margin: 0 auto; padding: 100px 5% 60px; }
.profile-header-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: var(--radius); padding: 2.5rem; color: white;
  display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem;
}
.profile-avatar { width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; font-weight: 700; border: 3px solid rgba(255,255,255,0.4); }
.profile-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; }
.profile-info p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.profile-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.5rem; }
.profile-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 1.25rem; }
.booking-history-item { display: flex; gap: 1rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.booking-history-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.booking-thumb { width: 60px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); }
.booking-info h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.booking-info p { font-size: 0.78rem; color: var(--text-dim); }

/* ===== FOOTER ===== */
footer {
  background: var(--ink); color: white; padding: 4rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; color: white; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 0.75rem; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.newsletter-form { display: flex; gap: 8px; margin-top: 1rem; }
.newsletter-input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; background: rgba(255,255,255,0.07); color: white; font-family: inherit; font-size: 0.85rem; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: white; border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; line-height: 1.7; color: var(--ink); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.88rem; }
.testimonial-trip { font-size: 0.78rem; color: var(--text-dim); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }

/* ===== WHYUS ===== */
.whyus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.why-card { text-align: center; padding: 2rem 1.5rem; }
.why-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(26,107,107,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; }
.why-card h3 { font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
.why-card p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.6; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .auth-container { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .modal-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .profile-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .explore-item.large { grid-column: span 2; }
}
@media (max-width: 600px) {
  .search-bar { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .tours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .profile-header-card { flex-direction: column; text-align: center; }
}

/* Toast */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--ink); color: white; padding: 12px 20px;
  border-radius: var(--radius-sm); font-size: 0.88rem;
  transform: translateY(20px); opacity: 0;
  transition: all 0.3s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--teal); }
.toast.error { background: var(--rust); }

/* Wishlist heart */
.wishlist-btn {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.2s;
  font-size: 1rem;
}
.wishlist-btn:hover { transform: scale(1.1); }
.wishlist-btn.liked { color: #ef4444; }
