@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold:       #f5a623;
  --gold-dark:  #d4891a;
  --gold-light: #fde9c0;
  --dark:       #1a1a1a;
  --dark-2:     #2d2d2d;
  --text:       #333333;
  --text-light: #666666;
  --border:     #e5e7eb;
  --bg:         #f9fafb;
  --white:      #ffffff;
  --success:    #16a34a;
  --danger:     #dc2626;
  --info:       #2563eb;
  --radius:     10px;
  --shadow:     0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Navigation ─────────────────────────────────────────────────────── */
.web-nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.nav-logo-text span {
  color: #9ca3af;
  font-size: 0.70rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(245,166,35,.15);
  color: var(--gold);
}

.btn-nav-book {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}

.btn-nav-book:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #3d2c00 100%);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 26px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s, transform 0.08s;
  letter-spacing: 0.02em;
}
.btn:hover:not(:disabled) { filter: brightness(0.9); text-decoration: none; }
.btn:active:not(:disabled) { transform: scale(0.97); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-primary { background: var(--gold);    color: var(--dark); }
.btn-dark    { background: var(--dark);    color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-success { background: var(--success); color: var(--white); }
.btn-danger  { background: var(--danger);  color: var(--white); }
.btn-light   { background: var(--bg);      color: var(--text);  border: 1.5px solid var(--border); }
.btn-sm  { padding: 7px 16px; font-size: 0.85rem; }
.btn-lg  { padding: 14px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ── Section layout ──────────────────────────────────────────────────── */
.section { padding: 64px 20px; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--dark); color: var(--white); }

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

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-head h2 span { color: var(--gold); }
.section-head p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.gold-line {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 16px;
}

/* ── Cards ───────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-body { padding: 24px; }

.card-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Grid ────────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── Feature cards ───────────────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  color: var(--gold-dark);
}

.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ── Photo strip ─────────────────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.photo-placeholder {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.85rem;
  gap: 8px;
  min-height: 180px;
  border: 2px dashed #374151;
}
.photo-placeholder i { font-size: 2rem; color: #4b5563; }
.photo-placeholder.tall { min-height: 220px; }

/* ── Rates table ─────────────────────────────────────────────────────── */
.rates-table { width: 100%; border-collapse: collapse; font-size: 0.90rem; }
.rates-table thead th {
  background: var(--dark);
  color: var(--gold);
  padding: 12px 14px;
  font-weight: 700;
  font-size: 0.80rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.rates-table tbody tr { border-bottom: 1px solid var(--border); }
.rates-table tbody tr:hover { background: #fffbf2; }
.rates-table tbody td { padding: 10px 14px; }
.rates-table .rate-val { font-family: monospace; font-size: 0.92rem; font-weight: 600; color: var(--dark); }
.rates-table .loc-name { font-weight: 600; }
.rates-table .loc-area { font-size: 0.78rem; color: var(--text-light); }

/* ── Forms ───────────────────────────────────────────────────────────── */
.form-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-card .form-head {
  background: var(--dark);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 28px 32px 24px;
  text-align: center;
}

.form-card .form-head img { height: 50px; margin-bottom: 12px; }
.form-card .form-head h2 { color: var(--white); font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.form-card .form-head p  { color: #9ca3af; font-size: 0.85rem; }

.form-body { padding: 32px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.18);
}

.form-control::placeholder { color: #9ca3af; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; height: 90px; }

.input-group { display: flex; gap: 8px; }
.input-group .form-control { flex: 1; }

.form-check { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; cursor: pointer; }
.form-check input { margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.form-check span { font-size: 0.88rem; color: var(--text-light); }

/* ── Alerts ──────────────────────────────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.90rem;
  margin-bottom: 16px;
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.alert i { flex-shrink: 0; margin-top: 1px; }
.alert-danger  { background: #fef2f2; border-color: #fca5a5; color: #b91c1c; }
.alert-success { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.alert-info    { background: #eff6ff; border-color: #93c5fd; color: #1d4ed8; }
.hidden { display: none !important; }

/* ── Booking card ────────────────────────────────────────────────────── */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}

.booking-card-head {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-ref { font-family: monospace; font-size: 0.88rem; color: var(--gold); font-weight: 700; }

.booking-status {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}
.status-pending   { background: #fef9c3; color: #854d0e; }
.status-confirmed { background: #dcfce7; color: #166534; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

.booking-card-body { padding: 16px 20px; }
.booking-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.booking-dt { font-size: 0.82rem; }
.booking-dt .bd-label { color: var(--text-light); font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; display: block; }
.booking-dt .bd-val   { font-weight: 600; margin-top: 2px; }
.booking-flight { background: #eff6ff; border-radius: 6px; padding: 10px 14px; font-size: 0.84rem; margin-bottom: 10px; color: var(--info); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.web-footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 56px 20px 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-brand img { height: 55px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; color: #6b7280; max-width: 280px; }
.footer-col h4 { color: var(--gold); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #6b7280; font-size: 0.87rem; text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid #374151;
  text-align: center;
  font-size: 0.82rem;
  color: #4b5563;
}

/* ── Stat badges ─────────────────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
}
.stat-item { padding: 28px 20px; text-align: center; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(0,0,0,.1); }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-lbl { font-size: 0.80rem; color: rgba(0,0,0,.65); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Radio pill group ────────────────────────────────────────────────── */
.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-label { cursor: pointer; }
.pill-label input { position: absolute; opacity: 0; width: 0; }
.pill-label span {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s;
  background: var(--white);
  user-select: none;
}
.pill-label input:checked + span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ── OTP input ───────────────────────────────────────────────────────── */
.otp-input {
  font-family: monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3em;
  height: 62px;
}

/* ── Toast ───────────────────────────────────────────────────────────── */
#web-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.web-toast-item {
  padding: 12px 18px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
  pointer-events: all;
  animation: toastIn .2s ease;
  border-left: 4px solid var(--gold);
  max-width: 340px;
}
.web-toast-item.t-success { border-left-color: var(--success); }
.web-toast-item.t-error   { border-left-color: var(--danger); }
@keyframes toastIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark-2); padding: 12px 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .photo-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .booking-detail-grid { grid-template-columns: repeat(2,1fr); }
  .hero { padding: 50px 20px 40px; }
  .section { padding: 44px 20px; }
  .form-card .form-body { padding: 24px; }
  .rates-table thead th { font-size: 0.72rem; padding: 10px 10px; }
  .rates-table tbody td { padding: 8px 10px; font-size: 0.84rem; }
}
