/* ============================================================
   KratisPremium — Master Stylesheet
   Matched exactly to header.php & footer.php HTML structure
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --gold:         #C8953A;
  --gold-light:   #E8B96A;
  --gold-dark:    #9A6E28;
  --gold-dim:     rgba(200,149,58,0.22);
  --navy:         #0D1B2A;
  --blue:         #1E3A5F;

  --bg-primary:   #FFFFFF;
  --bg-secondary: #F4F7FB;
  --bg-card:      #FFFFFF;

  --text-primary:   #0D1B2A;
  --text-secondary: #3D5166;
  --text-muted:     #7A8FA6;

  --border:       #DDE4EE;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
  --shadow-gold:  0 4px 20px rgba(200,149,58,0.28);

  --input-bg:     #FFFFFF;
  --input-border: #C8D3E0;

  --success: #10B981;
  --warning: #F59E0B;
  --danger:  #EF4444;
  --info:    #3B82F6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  --navbar-h:   70px;
  --container-w: 1280px;
  --gutter:      clamp(1rem, 4vw, 2rem);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
  --bg-primary:   #07111E;
  --bg-secondary: #0C1828;
  --bg-card:      #0F1E2F;
  --text-primary:   #EEF2FF;
  --text-secondary: #9AB0C8;
  --text-muted:     #526070;
  --border:       #1A2D42;
  --input-bg:     #0F1E2F;
  --input-border: #1A2D42;
  --shadow-md:    0 4px 16px rgba(0,0,0,0.45);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.65);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── SITE MAIN ───────────────────────────────────────────── */
.site-main {
  min-height: calc(100vh - var(--navbar-h));
  padding-top: var(--navbar-h);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,149,58,0.45); color: var(--navy); }
.btn--navy        { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover  { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--outline     { background: transparent; border-color: var(--border); color: var(--text-primary); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--danger      { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn--danger:hover { opacity: 0.85; color: #fff; }
.btn--success     { background: rgba(16,185,129,0.12); color: var(--success); border-color: rgba(16,185,129,0.3); }
.btn--success:hover { background: var(--success); color: #fff; }
.btn--lg  { padding: 0.85rem 2rem; font-size: 1rem; }
.btn--sm  { padding: 0.42rem 0.95rem; font-size: 0.8rem; }
.btn--xs  { padding: 0.28rem 0.6rem;  font-size: 0.72rem; border-radius: var(--radius-sm); }
.btn--full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img        { height: 38px; width: auto; }
.nav-logo-text       { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  background: rgba(200,149,58,0.15);
  color: var(--gold);
}
.navbar.scrolled .nav-link           { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active    { color: var(--gold); background: rgba(200,149,58,0.1); }
.nav-arrow { font-size: 0.9rem; opacity: 0.6; }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 200;
  list-style: none;
  margin: 0;
}
.nav-dropdown--right { left: auto; right: 0; transform: none; }
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 0.25rem);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
}
.nav-dropdown-item:hover               { background: rgba(200,149,58,0.08); color: var(--gold); }
.nav-dropdown-item i                   { font-size: 1rem; color: var(--gold); width: 18px; flex-shrink: 0; }
.nav-dropdown-item--gold               { color: var(--gold); font-weight: 600; }
.nav-dropdown-item--danger             { color: var(--danger); }
.nav-dropdown-item--danger:hover       { background: rgba(239,68,68,0.08); color: var(--danger); }
.nav-dropdown-item--notif              { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.notif-title                           { font-size: 0.82rem; font-weight: 600; }
.notif-time                            { font-size: 0.72rem; color: var(--text-muted); }
.nav-dropdown-header {
  padding: 0.5rem 0.85rem 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.nav-dropdown-footer {
  border-top: 1px solid var(--border);
  padding: 0.4rem 0.85rem 0.3rem;
  text-align: center;
}
.nav-dropdown-footer a { font-size: 0.8rem; color: var(--gold); text-decoration: none; }
.nav-dropdown-empty { padding: 0.75rem 0.85rem; font-size: 0.82rem; color: var(--text-muted); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 0.3rem 0; }
.nav-dropdown-user-info { padding: 0.75rem 0.85rem; border-bottom: 1px solid var(--border); margin-bottom: 0.3rem; }
.nav-dropdown-user-info strong { display: block; font-size: 0.88rem; }
.nav-dropdown-user-info span   { font-size: 0.75rem; color: var(--text-muted); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-icon-btn:hover { background: rgba(200,149,58,0.2); border-color: var(--gold); color: var(--gold); }
.navbar.scrolled .nav-icon-btn { color: var(--text-secondary); background: var(--bg-secondary); border-color: var(--border); }
.notif-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 17px; height: 17px;
  background: var(--danger);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
/* User button */
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem 0.3rem 0.3rem;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
}
.nav-user-btn:hover { border-color: var(--gold); color: var(--gold); }
.navbar.scrolled .nav-user-btn { color: var(--text-secondary); background: var(--bg-secondary); border-color: var(--border); }
.nav-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-user-name { font-size: 0.82rem; }
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text-primary); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 290px;
  margin: 0.75rem 0 1.1rem;
}
.footer-socials {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-payments { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-payment-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.footer-col__title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
/* Contact row */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item i { color: var(--gold); font-size: 1rem; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ─── CHATBOT ─────────────────────────────────────────────── */
.chatbot-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 800;
  cursor: pointer;
  border: none;
  transition: transform var(--transition);
}
.chatbot-fab:hover { transform: scale(1.1); }
.chatbot-window {
  position: fixed;
  bottom: 5.25rem; right: 1.75rem;
  width: 330px; height: 460px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 800;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot-window.open { display: flex; }
.chatbot-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header-left { display: flex; align-items: center; gap: 0.6rem; }
.chatbot-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(200,149,58,0.2);
  border: 1px solid rgba(200,149,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.chatbot-header strong { display: block; font-size: 0.85rem; color: #fff; }
.chatbot-header span   { font-size: 0.68rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.3rem; }
.chatbot-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); display: inline-block; }
.chatbot-close { color: rgba(255,255,255,0.55); font-size: 1.05rem; cursor: pointer; padding: 0.2rem; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 0.85rem; display: flex; flex-direction: column; gap: 0.55rem; }
.chat-msg {
  max-width: 82%;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.55;
}
.chat-msg--bot  { background: var(--bg-secondary); border: 1px solid var(--border); align-self: flex-start; }
.chat-msg--user { background: var(--gold); color: var(--navy); font-weight: 600; align-self: flex-end; }
.chatbot-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 0.85rem 0.6rem;
}
.chatbot-quick-btn {
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.chatbot-quick-btn:hover { border-color: var(--gold); color: var(--gold); }
.chatbot-input-row {
  padding: 0.65rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.45rem;
}
.chatbot-input-row input {
  flex: 1;
  padding: 0.5rem 0.85rem;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-pill);
  background: var(--input-bg);
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
}
.chatbot-input-row input:focus { border-color: var(--gold); }
.chatbot-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* ─── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 5.25rem; left: 1.75rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1.05rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 700;
  transition: all var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ─── PWA BANNER ──────────────────────────────────────────── */
.pwa-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 0.85rem var(--gutter);
  display: none;
  align-items: center;
  gap: 1rem;
  z-index: 700;
  box-shadow: var(--shadow-lg);
}
.pwa-banner.show { display: flex; }
.pwa-banner__icon { width: 40px; height: 40px; border-radius: var(--radius-sm); flex-shrink: 0; }
.pwa-banner__text { flex: 1; }
.pwa-banner__text strong { display: block; font-size: 0.9rem; }
.pwa-banner__text span   { font-size: 0.78rem; color: var(--text-muted); }
.pwa-banner__actions { display: flex; gap: 0.5rem; }

/* ─── ALERTS ──────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: 1.1rem;
  border: 1px solid transparent;
}
.alert--success { background: rgba(16,185,129,0.08);  border-color: rgba(16,185,129,0.25);  color: #059669; }
.alert--danger  { background: rgba(239,68,68,0.08);   border-color: rgba(239,68,68,0.25);   color: #dc2626; }
.alert--warning { background: rgba(245,158,11,0.08);  border-color: rgba(245,158,11,0.25);  color: #d97706; }
.alert--info    { background: rgba(59,130,246,0.08);  border-color: rgba(59,130,246,0.25);  color: #2563eb; }
.alert ul { padding-left: 1.1rem; margin: 0; }
.alert a  { color: inherit; text-decoration: underline; }

/* ─── STATUS BADGES ───────────────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: capitalize;
}
.status-badge--confirmed,
.status-badge--active,
.status-badge--paid,
.status-badge--published { background: rgba(16,185,129,0.12);  color: #059669; }
.status-badge--pending,
.status-badge--inactive  { background: rgba(245,158,11,0.12);  color: #d97706; }
.status-badge--cancelled,
.status-badge--failed    { background: rgba(239,68,68,0.12);   color: #dc2626; }
.status-badge--completed { background: rgba(59,130,246,0.12);  color: #2563eb; }

/* ─── FORMS ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.38rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-md);
  background: var(--input-bg);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group--checkboxes { justify-content: flex-end; }
.form-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.input-password { position: relative; }
.input-password input { padding-right: 3rem; }
.pw-toggle {
  position: absolute;
  right: 0.8rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-muted); font-size: 1rem; cursor: pointer;
}
.pw-toggle:hover { color: var(--gold); }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.checkbox-label input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.img-preview { max-width: 100px; border-radius: var(--radius-sm); margin-top: 0.5rem; }
.code-textarea { font-family: monospace; font-size: 0.85rem; }

/* ─── SECTION / LAYOUT UTILITIES ──────────────────────────── */
.section      { padding: 5rem 0; }
.section--alt { background: var(--bg-secondary); }
.section-header { margin-bottom: 2.5rem; }
.section-header.text-center { text-align: center; }
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-header p { color: var(--text-muted); margin-top: 0.65rem; max-width: 540px; }
.section-header.text-center p { margin-inline: auto; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); font-size: 0.85rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #122540 60%, var(--blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-h);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,149,58,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(200,149,58,0.15);
  border: 1px solid rgba(200,149,58,0.3);
  border-radius: var(--radius-pill);
  padding: 0.38rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.68); margin-bottom: 2.25rem; max-width: 500px; line-height: 1.7; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-stats { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num   { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold); display: block; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center;
}
.page-hero--flights { background: linear-gradient(135deg, #091825 0%, #1a3a5c 100%); }
.page-hero--hotels  { background: linear-gradient(135deg, #150a28 0%, #2d1969 100%); }
.page-hero--tours   { background: linear-gradient(135deg, #082018 0%, #1a5c3a 100%); }
.page-hero--blog    { background: linear-gradient(135deg, #1a0808 0%, #5c1a1a 100%); }
.page-hero--about,
.page-hero--contact,
.page-hero--legal   { background: linear-gradient(135deg, var(--navy) 0%, #162535 100%); }
.page-hero__title { font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 3.25rem); color: #fff; margin-bottom: 0.65rem; }
.page-hero__sub   { color: rgba(255,255,255,0.6); font-size: 1rem; }

/* ─── SEARCH BOX ──────────────────────────────────────────── */
.search-box {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 2rem;
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 0.5rem;
  overflow-x: auto;
}
.search-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  border-left: none; border-right: none; border-top: none;
  white-space: nowrap;
  transition: all var(--transition);
}
.search-tab.active, .search-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }
.search-panel { display: none; padding: 1.5rem; }
.search-panel.active { display: block; }
.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 0.32rem; }
.search-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.search-field input,
.search-field select {
  padding: 0.68rem 0.95rem;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-md);
  background: var(--input-bg);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color var(--transition);
}
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--gold); }
.swap-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold); font-size: 0.95rem;
  align-self: flex-end; flex-shrink: 0;
  transition: all var(--transition);
}
.swap-btn:hover { background: var(--gold); color: var(--navy); }

/* ─── SEARCH REFINE BAR ───────────────────────────────────── */
.search-refine {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: var(--navbar-h);
  z-index: 90;
  box-shadow: var(--shadow-sm);
}
.refine-form { display: flex; flex-direction: column; gap: 0.6rem; }
.refine-grid { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: flex-end; }
.refine-field { display: flex; flex-direction: column; gap: 0.28rem; flex: 1; min-width: 120px; }
.refine-field--wide { flex: 2; min-width: 190px; }
.refine-field label {
  font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 0.28rem;
}
.refine-field input,
.refine-field select {
  padding: 0.58rem 0.85rem;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-md);
  background: var(--input-bg);
  color: var(--text-primary);
  font-size: 0.855rem;
  font-family: inherit;
  transition: border-color var(--transition);
}
.refine-field input:focus, .refine-field select:focus { outline: none; border-color: var(--gold); }
.trip-toggle { display: flex; gap: 1rem; }
.trip-toggle label { display: flex; align-items: center; gap: 0.38rem; cursor: pointer; font-size: 0.85rem; color: var(--text-muted); }
.hidden { display: none !important; }

/* ─── RESULTS LAYOUT ──────────────────────────────────────── */
.results-layout {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 2rem;
  padding: 2rem 0 3rem;
  align-items: start;
}
.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  padding: 0.65rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.results-count { font-size: 0.875rem; color: var(--text-muted); }
.results-count strong { color: var(--text-primary); font-size: 1rem; }
.results-count em     { color: var(--gold); font-style: normal; }

/* ─── FILTERS SIDEBAR ─────────────────────────────────────── */
.filters-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  position: sticky;
  top: calc(var(--navbar-h) + 80px);
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.filters-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.filters-header h3 { font-size: 0.92rem; font-weight: 700; }
.filters-close { display: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); background: none; border: none; }
.filter-group { margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--border); }
.filter-group:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.65rem; }
.filter-group select { width: 100%; padding: 0.58rem 0.85rem; border: 1.5px solid var(--input-border); border-radius: var(--radius-md); background: var(--input-bg); color: var(--text-primary); font-family: inherit; }
.price-range { width: 100%; accent-color: var(--gold); cursor: pointer; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.38rem; }

/* ─── FLIGHT CARDS ────────────────────────────────────────── */
.flight-results { display: flex; flex-direction: column; gap: 1rem; }
.flight-card-full {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  transition: all var(--transition);
}
.flight-card-full:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.flight-card-full__airline { display: flex; align-items: center; gap: 0.7rem; }
.airline-logo {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--gold); flex-shrink: 0;
}
.airline-info strong { display: block; font-weight: 700; font-size: 0.875rem; }
.airline-info span   { font-size: 0.75rem; color: var(--text-muted); }
.flight-class-badge {
  display: inline-block; margin-top: 0.28rem;
  padding: 0.15rem 0.5rem;
  background: rgba(200,149,58,0.1); color: var(--gold);
  border-radius: var(--radius-pill); font-size: 0.68rem; font-weight: 600;
}
.flight-card-full__route { display: flex; align-items: center; gap: 0.85rem; justify-content: center; }
.route-point  { text-align: center; min-width: 75px; }
.route-time   { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; }
.route-city   { font-size: 0.82rem; font-weight: 600; }
.route-date   { font-size: 0.7rem; color: var(--text-muted); }
.route-line   { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.22rem; }
.route-duration { font-size: 0.7rem; color: var(--text-muted); }
.route-path   { width: 100%; display: flex; align-items: center; gap: 4px; }
.route-path::before,
.route-path::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.route-path i  { color: var(--gold); font-size: 0.95rem; }
.route-stops  { font-size: 0.65rem; color: var(--success); font-weight: 600; }
.flight-card-full__price { text-align: right; }
.price-main  { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--gold); }
.price-sub, .price-from, .price-total, .price-pp { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.seats-left, .urgency { font-size: 0.7rem; color: var(--warning); display: flex; align-items: center; gap: 0.2rem; margin-bottom: 0.4rem; }

/* ─── HOTEL CARDS ─────────────────────────────────────────── */
.hotel-results { display: flex; flex-direction: column; gap: 1rem; }
.hotel-card-full {
  display: grid;
  grid-template-columns: 210px 1fr 175px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.hotel-card-full:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hotel-card-full__image { position: relative; min-height: 190px; }
.hotel-card-full__image img { width: 100%; height: 100%; object-fit: cover; }
.hotel-card-full__image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); font-size: 2.5rem; color: var(--text-muted); }
.wishlist-btn {
  position: absolute; top: 0.65rem; right: 0.65rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.42); border: none;
  color: #fff; cursor: pointer; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.wishlist-btn:hover, .wishlist-btn.saved { background: var(--gold); color: var(--navy); }
.hotel-card-full__info { padding: 1.2rem; }
.hotel-stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 0.28rem; }
.hotel-card-full__info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.28rem; }
.hotel-card-full__info h3 a:hover { color: var(--gold); }
.hotel-location { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.28rem; margin-bottom: 0.45rem; }
.hotel-rating   { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.45rem; }
.rating-badge   { background: var(--gold); color: var(--navy); font-weight: 800; font-size: 0.8rem; padding: 0.18rem 0.48rem; border-radius: var(--radius-sm); }
.rating-label   { font-size: 0.75rem; color: var(--text-muted); }
.hotel-amenities { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.45rem; }
.amenity-tag { font-size: 0.68rem; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 0.15rem 0.5rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.2rem; }
.hotel-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.hotel-card-full__price { padding: 1.2rem; border-left: 1px solid var(--border); display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 0.3rem; }

/* ─── TOUR CARDS ──────────────────────────────────────────── */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 1.25rem; }
.tour-card-full { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.tour-card-full:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tour-card-full__image { position: relative; height: 195px; }
.tour-card-full__image img { width: 100%; height: 100%; object-fit: cover; }
.tour-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); font-size: 3rem; color: var(--text-muted); }
.tour-badge { position: absolute; top: 0.65rem; left: 0.65rem; background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: var(--radius-pill); }
.tour-badge--lg, .tour-badge--overlay { font-size: 0.8rem; padding: 0.32rem 0.8rem; }
.tour-card-full__body { padding: 1.05rem; flex: 1; }
.tour-card-full__body h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.45rem; }
.tour-card-full__body h3 a:hover { color: var(--gold); }
.tour-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.55rem; }
.tour-meta span { font-size: 0.7rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.22rem; }
.tour-card-full__body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.55rem; }
.tour-highlights span { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.28rem; }
.tour-highlights i { color: var(--gold); }
.tour-card-full__footer { padding: 0.82rem 1.05rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.tour-price { display: flex; align-items: baseline; gap: 0.28rem; }
.tour-price strong { font-size: 1.05rem; color: var(--gold); font-family: var(--font-display); }
.price-pp { font-size: 0.7rem; color: var(--text-muted); }

/* ─── EMPTY STATE ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 3.5rem 2rem; }
.empty-state__icon { font-size: 3.5rem; color: var(--text-muted); margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.empty-state p  { color: var(--text-muted); margin-bottom: 1.4rem; }

/* ─── PAGINATION ──────────────────────────────────────────── */
.pagination { display: flex; gap: 0.38rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.page-btn { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ─── DETAIL LAYOUT ───────────────────────────────────────── */
.detail-layout { display: grid; grid-template-columns: 1fr 345px; gap: 2.5rem; padding: 2rem 0 3rem; align-items: start; }
.detail-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.65rem; margin-bottom: 1.4rem; }
.detail-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.15rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border); }
.detail-card h3 { font-size: 0.92rem; font-weight: 700; margin: 0.9rem 0 0.65rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.1rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold); }

/* Flight detail specific */
.flight-detail-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.airline-info-lg { display: flex; align-items: center; gap: 0.9rem; }
.airline-logo-lg { width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--bg-secondary); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.85rem; color: var(--gold); }
.airline-info-lg h1 { font-size: 1.3rem; }
.airline-info-lg p  { font-size: 0.82rem; color: var(--text-muted); }
.flight-route-detail { display: flex; align-items: center; gap: 1.75rem; justify-content: center; padding: 1.4rem 0; }
.route-point-lg { text-align: center; }
.time-lg   { font-family: var(--font-display); font-size: 2.35rem; font-weight: 700; }
.city-lg   { font-size: 1rem; font-weight: 700; }
.date-lg   { color: var(--text-muted); font-size: 0.8rem; }
.airport-sm { font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; }
.route-visual { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
.route-duration-lg { font-size: 0.78rem; color: var(--text-muted); }
.route-line-visual { width: 100%; display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.dashed-line { flex: 1; border-top: 2px dashed var(--border); }
.plane-icon { color: var(--gold); font-size: 1.2rem; }
.class-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.class-option { border: 2px solid var(--border); border-radius: var(--radius-md); padding: 0.95rem; cursor: pointer; text-align: center; transition: all var(--transition); }
.class-option input { display: none; }
.class-option.active { border-color: var(--gold); background: rgba(200,149,58,0.05); }
.class-option__icon  { font-size: 1.4rem; color: var(--text-muted); margin-bottom: 0.38rem; }
.class-option.active .class-option__icon { color: var(--gold); }
.class-option__name  { font-size: 0.85rem; font-weight: 600; }
.class-option__price { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.18rem; }
.details-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 0.9rem; }
.detail-item { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 0.8rem 0.95rem; }
.detail-item span { font-size: 0.7rem; color: var(--text-muted); display: block; margin-bottom: 0.22rem; }
.detail-item strong { font-size: 0.88rem; }
.passenger-selector { display: flex; align-items: center; gap: 0.9rem; }
.passenger-selector button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all var(--transition); }
.passenger-selector button:hover { border-color: var(--gold); color: var(--gold); }
.passenger-selector > span { font-size: 1.2rem; font-weight: 700; min-width: 28px; text-align: center; }

/* Hotel detail */
.hotel-detail-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.4rem; flex-wrap: wrap; gap: 1rem; }
.hotel-stars-lg { color: var(--gold); margin-bottom: 0.28rem; }
.hotel-detail-header h1 { font-size: 1.65rem; }
.hotel-location-lg { display: flex; align-items: center; gap: 0.38rem; color: var(--text-muted); font-size: 0.85rem; margin-top: 0.38rem; }
.rating-circle { background: var(--gold); color: var(--navy); border-radius: var(--radius-md); padding: 0.8rem 1rem; text-align: center; flex-shrink: 0; }
.rating-num { font-size: 1.75rem; font-weight: 900; line-height: 1; }
.rating-lbl { font-size: 0.66rem; font-weight: 700; }
.hotel-gallery { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.4rem; }
.gallery-main img { width: 100%; max-height: 400px; object-fit: cover; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 0.65rem; margin-top: 0.65rem; }
.amenity-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--text-secondary); }
.amenity-item i { color: var(--gold); }
.rooms-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.1rem; }
.stay-info { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.stay-info span { display: flex; align-items: center; gap: 0.28rem; font-size: 0.75rem; color: var(--text-muted); background: var(--bg-secondary); padding: 0.28rem 0.65rem; border-radius: var(--radius-pill); }
.rooms-list { display: flex; flex-direction: column; gap: 1.1rem; }
.room-card { display: grid; grid-template-columns: 170px 1fr auto; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--bg-secondary); transition: border-color var(--transition); }
.room-card:hover { border-color: var(--gold-dim); }
.room-card__image img, .room-img-placeholder { width: 100%; height: 100%; min-height: 135px; object-fit: cover; }
.room-img-placeholder { display: flex; align-items: center; justify-content: center; background: var(--bg-card); font-size: 2.5rem; color: var(--text-muted); }
.room-card__info { padding: 0.95rem; }
.room-card__info h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.45rem; }
.room-features { display: flex; flex-wrap: wrap; gap: 0.42rem; margin-bottom: 0.52rem; }
.room-features span { font-size: 0.7rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.2rem; }
.room-card__info p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.45rem; }
.room-amenities span { font-size: 0.68rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.18rem; }
.room-card__price { padding: 0.95rem; border-left: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.38rem; min-width: 145px; }
.room-price-night { font-size: 1.15rem; font-weight: 800; color: var(--gold); }
.room-price-night span { font-size: 0.7rem; color: var(--text-muted); }
.room-price-total { font-size: 0.75rem; color: var(--text-muted); }

/* Tour detail */
.tour-detail-hero { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 1.4rem; max-height: 440px; }
.tour-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-detail-hero__overlay { position: absolute; bottom: 1rem; left: 1rem; }
.tour-detail-header h1 { font-size: 1.8rem; margin-bottom: 0.7rem; }
.tour-meta-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tour-meta-row span { display: flex; align-items: center; gap: 0.28rem; font-size: 0.8rem; color: var(--text-muted); background: var(--bg-secondary); padding: 0.32rem 0.75rem; border-radius: var(--radius-pill); }
.highlights-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.highlights-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.875rem; }
.highlights-list i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }
.itinerary-list { display: flex; flex-direction: column; gap: 0.7rem; }
.itinerary-day { display: flex; gap: 0.9rem; }
.itinerary-day__num { background: var(--gold); color: var(--navy); font-weight: 800; font-size: 0.7rem; padding: 0.28rem 0.6rem; border-radius: var(--radius-sm); flex-shrink: 0; white-space: nowrap; align-self: flex-start; }
.itinerary-day__content { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; padding-top: 0.18rem; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.includes-col h4 { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.42rem; }
.includes-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.includes-col li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--text-muted); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.related-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); text-decoration: none; color: inherit; transition: all var(--transition); }
.related-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.related-card img { width: 100%; height: 95px; object-fit: cover; }
.related-card__body { padding: 0.7rem; }
.related-card__body h4 { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.18rem; }
.related-card__body div { font-size: 0.72rem; color: var(--gold); }

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews-summary { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.reviews-score   { font-family: var(--font-display); font-size: 2.85rem; font-weight: 900; color: var(--gold); }
.reviews-label   { font-weight: 700; }
.reviews-count   { font-size: 0.75rem; color: var(--text-muted); }
.reviews-list    { display: flex; flex-direction: column; gap: 1.1rem; }
.review-item { padding: 0.95rem; background: var(--bg-secondary); border-radius: var(--radius-md); }
.review-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.65rem; flex-wrap: wrap; }
.reviewer-avatar img, .reviewer-avatar .avatar-initials { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.review-header strong { display: block; font-size: 0.85rem; }
.review-header .review-date { margin-left: auto; font-size: 0.7rem; color: var(--text-muted); }
.stars { color: var(--gold); }
.review-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── BOOKING WIDGET ──────────────────────────────────────── */
.booking-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.sticky-widget { position: sticky; top: calc(var(--navbar-h) + 1.25rem); }
.booking-widget__header { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 1.4rem; }
.bw-price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.bw-price span { font-size: 0.95rem; color: rgba(255,255,255,0.45); }
.bw-sub      { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.12rem; }
.bw-original { font-size: 0.85rem; color: rgba(255,255,255,0.32); text-decoration: line-through; }
.bw-saving   { color: var(--success); font-size: 0.8rem; font-weight: 600; }
.booking-widget__body { padding: 1.2rem; }
.bw-row { display: flex; justify-content: space-between; align-items: center; padding: 0.52rem 0; border-bottom: 1px solid var(--border); font-size: 0.855rem; color: var(--text-muted); }
.bw-row--total { border-bottom: none; padding-top: 0.8rem; font-size: 0.92rem; color: var(--text-primary); }
.bw-field { margin-bottom: 0.8rem; }
.bw-field label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); display: block; margin-bottom: 0.28rem; }
.bw-field input { width: 100%; padding: 0.58rem 0.85rem; border: 1.5px solid var(--input-border); border-radius: var(--radius-md); background: var(--input-bg); color: var(--text-primary); font-family: inherit; }
.booking-widget__footer { padding: 0.95rem 1.2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.42rem; }
.bw-guarantee { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.38rem; }
.bw-guarantee i { color: var(--gold); }
.info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem; margin-top: 1.1rem; }
.info-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.42rem; }
.info-rows { display: flex; flex-direction: column; gap: 0.52rem; }
.info-row  { display: flex; justify-content: space-between; font-size: 0.82rem; }
.info-row span { color: var(--text-muted); }
.share-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem; margin-top: 1.1rem; }
.share-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.7rem; }
.share-buttons { display: flex; gap: 0.45rem; }
.share-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-secondary); color: var(--text-primary); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; text-decoration: none; cursor: pointer; transition: all var(--transition); }
.share-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ─── BOOKING PAGE ────────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1fr 345px; gap: 2.5rem; padding: 2rem 0 3rem; align-items: start; }
.booking-title { font-family: var(--font-display); font-size: 1.65rem; margin-bottom: 1.4rem; }
.booking-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 1.1rem; overflow: hidden; }
.booking-step__header { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.4rem; border-bottom: 1px solid var(--border); background: var(--bg-secondary); }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; flex-shrink: 0; }
.booking-step__header h2 { font-size: 0.92rem; font-weight: 700; }
.booking-step__body { padding: 1.4rem; }
.payment-methods { display: flex; flex-direction: column; gap: 0.7rem; }
.payment-option { display: block; border: 2px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition); }
.payment-option input { display: none; }
.payment-option.active { border-color: var(--gold); }
.payment-option__content { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1.1rem; }
.payment-option__content > div { flex: 1; }
.payment-option__content strong { display: block; font-size: 0.85rem; }
.payment-option__content span   { font-size: 0.72rem; color: var(--text-muted); }
.fw-logo { width: 34px; height: 34px; border-radius: var(--radius-sm); background: #f5a623; color: #fff; font-weight: 900; font-size: 0.72rem; display: flex; align-items: center; justify-content: center; }
.check-icon { color: var(--gold); font-size: 1.15rem; opacity: 0; transition: opacity var(--transition); }
.payment-option.active .check-icon { opacity: 1; }
.secure-note { display: flex; align-items: center; gap: 0.45rem; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.9rem; }
.secure-note i { color: var(--gold); }
.terms-check { display: flex; flex-direction: column; gap: 0.65rem; }
.booking-sidebar { position: sticky; top: calc(var(--navbar-h) + 1.25rem); }
.order-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.4rem; }
.order-summary h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border); }
.summary-type { display: flex; align-items: center; gap: 0.32rem; font-size: 0.65rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.22rem; }
.summary-item-header h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.28rem; }
.summary-detail { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.12rem; }
.summary-lines { border-top: 1px solid var(--border); padding-top: 0.9rem; display: flex; flex-direction: column; gap: 0.52rem; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }
.summary-line--total { font-size: 0.92rem; color: var(--text-primary); padding-top: 0.45rem; border-top: 1px solid var(--border); }
.summary-guarantees { margin-top: 1rem; border-top: 1px solid var(--border); padding-top: 0.9rem; display: flex; flex-direction: column; gap: 0.42rem; }
.summary-guarantees div { display: flex; align-items: center; gap: 0.42rem; font-size: 0.72rem; color: var(--text-muted); }
.summary-guarantees i { color: var(--gold); }

/* ─── CONFIRM / SUCCESS ───────────────────────────────────── */
.confirm-layout { display: flex; justify-content: center; padding: 3rem var(--gutter); }
.confirm-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.4rem; max-width: 520px; width: 100%; }
.confirm-header { text-align: center; margin-bottom: 1.9rem; }
.confirm-icon { width: 68px; height: 68px; border-radius: 50%; background: rgba(200,149,58,0.1); border: 2px solid rgba(200,149,58,0.28); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: var(--gold); margin: 0 auto 0.9rem; }
.confirm-header h1 { font-size: 1.45rem; margin-bottom: 0.38rem; }
.confirm-header p  { color: var(--text-muted); font-size: 0.85rem; }
.ref-code { font-family: monospace; color: var(--gold); letter-spacing: 2px; }
.confirm-amount { text-align: center; margin-bottom: 1.4rem; }
.confirm-amount span { font-size: 0.8rem; color: var(--text-muted); display: block; }
.confirm-amount strong { font-family: var(--font-display); font-size: 2.35rem; font-weight: 900; color: var(--gold); }
.confirm-details { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 0.95rem; margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: 0.52rem; }
.confirm-detail-row { display: flex; justify-content: space-between; font-size: 0.82rem; }
.confirm-detail-row span { color: var(--text-muted); }
.payment-action { margin-top: 1.4rem; }
.payment-note { text-align: center; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.7rem; display: flex; align-items: center; justify-content: center; gap: 0.38rem; }
.status-pending   { color: var(--warning); }
.status-confirmed { color: var(--success); }
.confirm-footer { display: flex; gap: 0.7rem; justify-content: center; margin-top: 1.9rem; flex-wrap: wrap; }
.success-card { text-align: center; }
.success-circle { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, #059669, #10b981); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: #fff; margin: 0 auto 1.4rem; animation: scaleIn 0.4s cubic-bezier(.175,.885,.32,1.275); }
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.booking-ref-box { display: flex; align-items: center; gap: 0.9rem; justify-content: center; flex-wrap: wrap; background: var(--bg-secondary); border-radius: var(--radius-md); padding: 0.95rem 1.4rem; margin: 1.4rem 0; }
.success-actions { display: flex; gap: 0.9rem; justify-content: center; margin: 1.9rem 0; flex-wrap: wrap; }
.success-note { background: var(--bg-secondary); padding: 0.95rem; border-radius: var(--radius-sm); font-size: 0.82rem; }

/* ─── BLOG ────────────────────────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; padding: 2rem 0 3rem; }
.blog-search { display: flex; gap: 0.45rem; margin-bottom: 1.65rem; }
.blog-search input { flex: 1; padding: 0.68rem 0.95rem; border: 1.5px solid var(--input-border); border-radius: var(--radius-md); background: var(--input-bg); color: var(--text-primary); font-family: inherit; outline: none; }
.blog-search input:focus { border-color: var(--gold); }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 1.9rem; }
.blog-featured__img { min-height: 250px; }
.blog-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__body { padding: 1.9rem; display: flex; flex-direction: column; justify-content: center; }
.blog-cat-badge { background: var(--gold); color: var(--navy); font-size: 0.66rem; font-weight: 700; padding: 0.2rem 0.62rem; border-radius: var(--radius-pill); display: inline-block; margin-bottom: 0.7rem; }
.blog-cat-badge--overlay { position: absolute; top: 0.65rem; left: 0.65rem; }
.blog-featured__body h2 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.blog-featured__body h2 a:hover { color: var(--gold); }
.blog-featured__body p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.65; margin-bottom: 0.9rem; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; font-size: 0.73rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.blog-meta span { display: flex; align-items: center; gap: 0.28rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.15rem; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__img { position: relative; height: 180px; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); font-size: 2.5rem; color: var(--text-muted); }
.blog-card__body { padding: 1.05rem; }
.blog-card__body h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.45rem; }
.blog-card__body h3 a:hover { color: var(--gold); }
.blog-card__body p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.5rem; }
.blog-sidebar .blog-widget, .blog-post-sidebar .blog-widget {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem; margin-bottom: 1.1rem;
}
.blog-widget h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.9rem; }
.cat-list, .dest-list { display: flex; flex-direction: column; gap: 0.32rem; }
.cat-link, .dest-link { display: flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.55rem; border-radius: var(--radius-sm); text-decoration: none; font-size: 0.82rem; color: var(--text-secondary); transition: all var(--transition); }
.cat-link:hover, .dest-link:hover, .cat-link.active { background: rgba(200,149,58,0.08); color: var(--gold); }
.blog-widget--cta { background: linear-gradient(135deg, var(--navy), var(--blue)) !important; text-align: center; }
.blog-widget--cta i { font-size: 1.9rem; color: var(--gold); display: block; margin-bottom: 0.45rem; }
.blog-widget--cta h4 { color: #fff; text-transform: none; letter-spacing: 0; font-size: 0.88rem; }
.blog-widget--cta p  { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.7rem; }

/* Blog post */
.blog-post-layout { display: grid; grid-template-columns: 1fr 265px; gap: 2.5rem; padding: 2rem 0 3rem; align-items: start; }
.post-category { margin-bottom: 0.55rem; }
.post-category a { background: rgba(200,149,58,0.1); color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: var(--radius-pill); text-decoration: none; }
.post-title { font-family: var(--font-display); font-size: clamp(1.55rem, 4vw, 2.35rem); line-height: 1.22; margin-bottom: 1.15rem; }
.post-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.9rem; padding: 0.9rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.65rem; }
.author-info { display: flex; align-items: center; gap: 0.7rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-info strong { display: block; font-size: 0.85rem; }
.author-info span   { font-size: 0.72rem; color: var(--text-muted); }
.post-meta-stats { display: flex; gap: 0.9rem; }
.post-meta-stats span { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--text-muted); }
.post-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.9rem; }
.post-hero-img img { width: 100%; max-height: 460px; object-fit: cover; }
.post-content { font-size: 0.95rem; line-height: 1.88; color: var(--text-secondary); }
.post-content h2, .post-content h3 { color: var(--text-primary); margin: 1.9rem 0 0.8rem; }
.post-content p  { margin-bottom: 1.15rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.15rem; }
.post-content li { margin-bottom: 0.38rem; }
.post-content img { max-width: 100%; border-radius: var(--radius-md); margin: 0.9rem 0; }
.post-content blockquote { border-left: 4px solid var(--gold); padding: 0.8rem 1.4rem; background: var(--bg-secondary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.4rem 0; font-style: italic; color: var(--text-muted); }
.post-share { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; padding: 1.4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 1.9rem 0; }
.post-share > span { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.comments-section h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.15rem; }
.comment-item { display: grid; grid-template-columns: 42px 1fr; gap: 0.9rem; margin-bottom: 1.15rem; }
.comment-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.comment-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.45rem; flex-wrap: wrap; }
.comment-header strong { font-size: 0.85rem; }
.comment-header > span { font-size: 0.7rem; color: var(--text-muted); margin-left: auto; }
.comment-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }
.comment-form-wrap { margin-top: 1.9rem; padding-top: 1.9rem; border-top: 1px solid var(--border); }
.comment-form-wrap h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 1.15rem; }
.related-posts { display: flex; flex-direction: column; gap: 0.7rem; }
.related-post { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; transition: color var(--transition); }
.related-post:hover { color: var(--gold); }
.related-post img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.related-post strong { display: block; font-size: 0.8rem; margin-bottom: 0.18rem; }
.related-post span   { font-size: 0.7rem; color: var(--text-muted); }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 355px 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.45rem; margin-bottom: 0.7rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.65rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: 1.65rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-detail__icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: rgba(200,149,58,0.1); border: 1px solid rgba(200,149,58,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--gold); flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.85rem; margin-bottom: 0.18rem; }
.contact-detail span  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }
.contact-socials { display: flex; gap: 0.6rem; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-secondary); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 1rem; text-decoration: none; transition: all var(--transition); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.9rem; }
.contact-form h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.4rem; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 0.9rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: border-color var(--transition); }
.faq-item:hover { border-color: var(--gold-dim); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 0.95rem 1.15rem; font-weight: 600; font-size: 0.875rem; }
.faq-q i { transition: transform var(--transition); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; font-size: 0.82rem; color: var(--text-muted); padding: 0 1.15rem; transition: all 0.3s ease; line-height: 1.7; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.15rem 0.95rem; }

/* ─── ABOUT ───────────────────────────────────────────────── */
.about-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-intro__text h2 { font-family: var(--font-display); font-size: clamp(1.65rem, 3.5vw, 2.4rem); margin-bottom: 0.9rem; }
.about-intro__text p { color: var(--text-muted); margin-bottom: 0.9rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1.65rem; }
.about-stat { padding: 0.95rem; background: var(--bg-secondary); border-radius: var(--radius-md); border: 1px solid var(--border); }
.about-stat strong { display: block; font-family: var(--font-display); font-size: 1.65rem; font-weight: 900; color: var(--gold); }
.about-stat span   { font-size: 0.75rem; color: var(--text-muted); }
.about-image-stack { position: relative; height: 330px; }
.about-image-card { position: absolute; background: var(--bg-card); border: 1px solid var(--gold-dim); border-radius: var(--radius-lg); padding: 1.4rem; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; box-shadow: var(--shadow-lg); }
.about-image-card i { font-size: 2.35rem; color: var(--gold); }
.about-image-card span { font-weight: 700; font-size: 0.85rem; }
.about-image-card--main   { top: 20px; left: 20px; width: 195px; }
.about-image-card--accent { top: 100px; right: 0; width: 178px; animation: floatAnim 4s ease-in-out infinite; }
.about-image-card--sm     { bottom: 40px; left: 55px; width: 152px; animation: floatAnim 4s ease-in-out infinite 1.2s; }
@keyframes floatAnim { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.mission-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.9rem; text-align: center; }
.mission-card__icon { font-size: 2.35rem; color: var(--gold); margin-bottom: 0.9rem; }
.mission-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.mission-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 1.15rem; }
.why-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.4rem; }
.why-item i  { font-size: 1.65rem; color: var(--gold); display: block; margin-bottom: 0.65rem; }
.why-item h4 { font-weight: 700; margin-bottom: 0.38rem; }
.why-item p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.9rem; text-align: center; }
.team-card__avatar { width: 76px; height: 76px; border-radius: 50%; background: rgba(200,149,58,0.1); border: 2px solid rgba(200,149,58,0.28); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: var(--gold); margin: 0 auto 0.9rem; }
.team-card h4  { font-weight: 700; margin-bottom: 0.18rem; }
.team-card span { font-size: 0.75rem; color: var(--gold); display: block; margin-bottom: 0.45rem; }
.team-card p   { font-size: 0.8rem; color: var(--text-muted); }
.about-cta { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: var(--radius-xl); padding: 3.5rem 2rem; text-align: center; }
.about-cta h2 { font-family: var(--font-display); font-size: 1.9rem; color: #fff; margin-bottom: 0.7rem; }
.about-cta p  { color: rgba(255,255,255,0.62); margin-bottom: 1.9rem; font-size: 1rem; }
.cta-buttons  { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ─── LEGAL ───────────────────────────────────────────────── */
.legal-layout { display: grid; grid-template-columns: 205px 1fr; gap: 3rem; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--navbar-h) + 1.25rem); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem; }
.legal-toc h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.8rem; }
.legal-toc nav { display: flex; flex-direction: column; gap: 0.32rem; }
.legal-toc a { font-size: 0.8rem; color: var(--text-secondary); text-decoration: none; padding: 0.28rem 0.48rem; border-radius: var(--radius-sm); transition: all var(--transition); }
.legal-toc a:hover { color: var(--gold); background: rgba(200,149,58,0.08); }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; margin: 1.9rem 0 0.7rem; }
.legal-content h3 { font-size: 0.92rem; font-weight: 700; margin: 1.15rem 0 0.45rem; color: var(--text-secondary); }
.legal-content p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.7rem; font-size: 0.875rem; }
.legal-content ul { padding-left: 1.5rem; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 0.9rem; }
.legal-content li { margin-bottom: 0.38rem; line-height: 1.7; }
.legal-content address { font-style: normal; line-height: 1.8; color: var(--text-muted); font-size: 0.875rem; }
.legal-cta { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 1.2rem; margin-top: 1.9rem; text-align: center; font-size: 0.875rem; color: var(--text-muted); }

/* ─── AUTH ────────────────────────────────────────────────── */
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-panel--left { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 3rem; display: flex; align-items: center; }
.auth-panel__content { max-width: 390px; }
.auth-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-bottom: 2.35rem; }
.auth-logo img  { height: 38px; }
.auth-logo span { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--gold); }
.auth-panel__content h2 { font-family: var(--font-display); font-size: 1.9rem; color: #fff; margin-bottom: 0.7rem; }
.auth-panel__content p  { color: rgba(255,255,255,0.58); line-height: 1.7; margin-bottom: 1.9rem; }
.auth-features { display: flex; flex-direction: column; gap: 0.7rem; }
.auth-feature { display: flex; align-items: center; gap: 0.7rem; }
.auth-feature i    { color: var(--gold); font-size: 1rem; }
.auth-feature span { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.auth-panel--right { display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--bg-primary); }
.auth-form-wrap { width: 100%; max-width: 410px; }
.auth-form-wrap h2 { font-family: var(--font-display); font-size: 1.65rem; margin-bottom: 0.38rem; }
.auth-form-wrap > p { color: var(--text-muted); margin-bottom: 1.9rem; font-size: 0.875rem; }
.auth-links { display: flex; justify-content: space-between; margin-top: 1.4rem; font-size: 0.82rem; }
.auth-links a { color: var(--text-muted); display: flex; align-items: center; gap: 0.28rem; }
.auth-links a:hover { color: var(--gold); }
.auth-divider { display: flex; align-items: center; gap: 0.9rem; margin: 1.15rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 0.75rem; color: var(--text-muted); }
.google-btn { display: flex; align-items: center; justify-content: center; gap: 0.7rem; width: 100%; padding: 0.72rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: var(--bg-secondary); color: var(--text-primary); font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.google-btn:hover { border-color: var(--gold); color: var(--text-primary); }

/* ─── DASHBOARD ───────────────────────────────────────────── */
.dashboard-layout { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - var(--navbar-h)); }
.dashboard-sidebar { background: var(--bg-card); border-right: 1px solid var(--border); padding: 1.4rem; display: flex; flex-direction: column; gap: 1.4rem; position: sticky; top: var(--navbar-h); height: calc(100vh - var(--navbar-h)); overflow-y: auto; }
.dash-user { display: flex; align-items: center; gap: 0.7rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--border); }
.dash-user__info strong { display: block; font-size: 0.875rem; font-weight: 700; }
.dash-user__info span   { font-size: 0.72rem; color: var(--text-muted); }
.avatar-initials { display: flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; flex-shrink: 0; }
.avatar-initials--sm { width: 30px; height: 30px; font-size: 0.72rem; }
.avatar-initials--lg { width: 46px; height: 46px; font-size: 0.95rem; }
.avatar-initials--xl { width: 76px; height: 76px; font-size: 1.65rem; }
.avatar-initials--admin { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.avatar-initials--agent { background: linear-gradient(135deg, #667eea, #764ba2); }
.dash-nav { display: flex; flex-direction: column; gap: 0.18rem; }
.dash-nav__group { margin-bottom: 0.45rem; }
.dash-nav__group-label { font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); padding: 0.42rem 0.72rem 0.18rem; }
.dash-nav__item { display: flex; align-items: center; gap: 0.65rem; padding: 0.55rem 0.8rem; border-radius: var(--radius-md); text-decoration: none; color: var(--text-secondary); font-size: 0.84rem; font-weight: 500; transition: all var(--transition); }
.dash-nav__item i { font-size: 0.95rem; width: 17px; text-align: center; flex-shrink: 0; }
.dash-nav__item:hover, .dash-nav__item.active { background: rgba(200,149,58,0.1); color: var(--gold); }
.dash-nav__item--danger { color: var(--danger); margin-top: 0.45rem; }
.dash-nav__item--danger:hover { background: rgba(239,68,68,0.08); color: var(--danger); }
.dashboard-main { padding: 1.9rem; overflow: auto; }
.dash-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.9rem; flex-wrap: wrap; gap: 0.9rem; }
.dash-header h1 { font-family: var(--font-display); font-size: 1.55rem; }
.dash-header p   { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.18rem; }
.dash-header-actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.9rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.15rem; display: flex; align-items: center; gap: 0.9rem; }
.stat-card__icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.stat-card__icon--blue   { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.stat-card__icon--green  { background: rgba(16,185,129,0.12);  color: #10b981; }
.stat-card__icon--gold   { background: rgba(200,149,58,0.12);  color: var(--gold); }
.stat-card__icon--red    { background: rgba(239,68,68,0.12);   color: #ef4444; }
.stat-card__icon--purple { background: rgba(139,92,246,0.12);  color: #8b5cf6; }
.stat-card__icon--orange { background: rgba(249,115,22,0.12);  color: #f97316; }
.stat-card__icon--sky    { background: rgba(14,165,233,0.12);  color: #0ea5e9; }
.stat-card__icon--teal   { background: rgba(20,184,166,0.12);  color: #14b8a6; }
.stat-card__num { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; }
.stat-card__lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.08rem; }
.dash-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 1.4rem; }
.dash-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.4rem; }
.dash-card__header { display: flex; align-items: center; justify-content: space-between; padding: 0.95rem 1.15rem; border-bottom: 1px solid var(--border); }
.dash-card__header h3 { font-size: 0.88rem; font-weight: 700; }
.link { font-size: 0.75rem; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 0.18rem; }
.empty-dash { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; padding: 2.35rem; color: var(--text-muted); font-size: 0.82rem; text-align: center; }
.empty-dash i { font-size: 1.9rem; }
.mini-bookings { padding: 0.7rem 1.15rem; display: flex; flex-direction: column; gap: 0.52rem; }
.mini-booking { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem; border-radius: var(--radius-sm); background: var(--bg-secondary); }
.mini-booking__icon { width: 30px; height: 30px; border-radius: var(--radius-sm); background: rgba(200,149,58,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.92rem; flex-shrink: 0; }
.mini-booking__info { flex: 1; }
.mini-booking__info strong { display: block; font-size: 0.78rem; font-weight: 700; }
.mini-booking__info span   { font-size: 0.7rem; color: var(--text-muted); }
.notifications-mini { padding: 0.7rem 1.15rem; display: flex; flex-direction: column; gap: 0.45rem; }
.notif-mini { display: flex; gap: 0.7rem; padding: 0.52rem; border-radius: var(--radius-sm); }
.notif-mini.unread { background: rgba(200,149,58,0.05); }
.notif-mini__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.32rem; }
.notif-mini__content strong { display: block; font-size: 0.78rem; font-weight: 700; }
.notif-mini__content p    { font-size: 0.72rem; color: var(--text-muted); }
.notif-mini__content span { font-size: 0.68rem; color: var(--text-muted); }
.quick-actions { padding: 1.15rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.quick-action { display: flex; flex-direction: column; align-items: center; gap: 0.52rem; padding: 1rem 0.7rem; border-radius: var(--radius-md); background: var(--bg-secondary); border: 1px solid var(--border); text-decoration: none; color: var(--text-secondary); font-size: 0.75rem; font-weight: 600; text-align: center; transition: all var(--transition); }
.quick-action:hover { background: rgba(200,149,58,0.1); border-color: var(--gold-dim); color: var(--gold); }
.quick-action i { font-size: 1.45rem; color: var(--gold); }

/* Admin tables */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table thead th { padding: 0.75rem 0.95rem; text-align: left; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.75px; color: var(--text-muted); border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table tbody td { padding: 0.8rem 0.95rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: rgba(200,149,58,0.03); }
.admin-table code { font-family: monospace; font-size: 0.72rem; background: var(--bg-secondary); padding: 0.12rem 0.38rem; border-radius: var(--radius-sm); color: var(--gold); }
.action-btns { display: flex; gap: 0.38rem; }
.user-cell  { display: flex; align-items: center; gap: 0.55rem; }
.user-avatar-sm { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.table-img-name { display: flex; align-items: center; gap: 0.6rem; }
.table-thumb { width: 42px; height: 42px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.row-unread { font-weight: 600; }
.unread-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
.role-badge { display: inline-block; padding: 0.15rem 0.52rem; border-radius: var(--radius-pill); font-size: 0.68rem; font-weight: 700; }
.role-badge--user  { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.role-badge--agent { background: rgba(139,92,246,0.1);  color: #8b5cf6; }
.role-badge--admin { background: rgba(200,149,58,0.1);  color: var(--gold); }
.table-filters { display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.1rem; }
.table-filters input, .table-filters select { padding: 0.55rem 0.85rem; border: 1.5px solid var(--input-border); border-radius: var(--radius-md); background: var(--input-bg); color: var(--text-primary); font-family: inherit; }
.table-filters input { flex: 1; min-width: 190px; }
.filter-tabs { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.filter-tab { padding: 0.42rem 0.92rem; border-radius: var(--radius-pill); border: 1.5px solid var(--border); font-size: 0.78rem; font-weight: 600; text-decoration: none; color: var(--text-muted); transition: all var(--transition); }
.filter-tab:hover, .filter-tab.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.period-selector { display: flex; gap: 0.45rem; }

/* Bookings list */
.bookings-list { display: flex; flex-direction: column; gap: 0.9rem; }
.booking-row { display: grid; grid-template-columns: 46px 1fr auto auto auto; gap: 0.9rem; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.95rem 1.15rem; }
.booking-row__icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: rgba(200,149,58,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); }
.booking-ref { font-family: monospace; font-weight: 700; font-size: 0.8rem; color: var(--gold); }
.booking-type { font-size: 0.75rem; font-weight: 600; margin-bottom: 0.18rem; }
.booking-traveler, .booking-date { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.25rem; }
.booking-row__amount .amount { font-weight: 700; font-size: 0.92rem; }
.booking-row__amount .pay-method { font-size: 0.7rem; color: var(--text-muted); }
.booking-row__actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }

/* Wishlist */
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1.15rem; }
.wishlist-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.wishlist-card__img { height: 175px; position: relative; }
.wishlist-card__img img { width: 100%; height: 100%; object-fit: cover; }
.wi-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); font-size: 3rem; color: var(--text-muted); }
.wishlist-type-badge { position: absolute; top: 0.65rem; right: 0.65rem; background: rgba(0,0,0,0.52); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: var(--radius-pill); }
.wishlist-card__body { padding: 1.05rem; }
.stars-mini { color: var(--gold); font-size: 0.78rem; margin-bottom: 0.22rem; }
.wishlist-card__body h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.28rem; }
.wishlist-card__body p  { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.38rem; display: flex; align-items: center; gap: 0.28rem; }
.wishlist-price { font-weight: 700; color: var(--gold); font-size: 0.88rem; margin-bottom: 0.7rem; }
.wishlist-card__actions { display: flex; gap: 0.45rem; }

/* Profile */
.profile-avatar-section { display: flex; align-items: center; gap: 1.4rem; margin-bottom: 1.65rem; }
.profile-avatar-wrap { position: relative; }
.profile-avatar-wrap img, .profile-avatar-wrap .avatar-initials { width: 86px; height: 86px; border-radius: 50%; border: 3px solid var(--gold); }
.avatar-change-btn { position: absolute; bottom: 0; right: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.75rem; border: 2px solid var(--bg-card); }

/* Agent */
.referral-card__body { display: grid; grid-template-columns: 52px 1fr; gap: 1.15rem; padding: 1.4rem; align-items: start; }
.referral-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(200,149,58,0.1); border: 1px solid var(--gold-dim); display: flex; align-items: center; justify-content: center; font-size: 1.65rem; color: var(--gold); }
.referral-card__body h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.28rem; }
.referral-card__body p  { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.referral-link-wrap { display: flex; gap: 0.45rem; margin-bottom: 0.7rem; }
.referral-link-wrap input { flex: 1; padding: 0.55rem 0.8rem; border: 1.5px solid var(--input-border); border-radius: var(--radius-md); background: var(--input-bg); color: var(--text-primary); font-family: monospace; font-size: 0.78rem; }
.referral-share { display: flex; gap: 0.45rem; }
.commission-summary { padding: 1.15rem; }
.cs-row { display: flex; justify-content: space-between; align-items: center; padding: 0.62rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.cs-row--total { border-bottom: none; font-size: 0.92rem; }
.cs-note { margin-top: 0.7rem; font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.28rem; }
.agent-perks-row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.4rem; }
.agent-perk { display: flex; align-items: center; gap: 0.45rem; background: rgba(255,255,255,0.08); padding: 0.52rem 1.15rem; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.82); }
.agent-perk i { color: var(--gold); }

/* Payments */
.method-breakdown { padding: 0.45rem 1.15rem; display: flex; flex-direction: column; gap: 0.45rem; }
.method-row { display: flex; align-items: center; gap: 0.9rem; padding: 0.7rem; border-radius: var(--radius-md); background: var(--bg-secondary); }
.method-icon { font-size: 1.45rem; }
.method-info { flex: 1; }
.method-info strong { display: block; font-size: 0.85rem; }
.method-info span   { font-size: 0.72rem; color: var(--text-muted); }
.method-amount { font-weight: 800; font-size: 0.92rem; color: var(--gold); }
.top-list { padding: 0.45rem 1.15rem; display: flex; flex-direction: column; gap: 0.45rem; }
.top-list__item { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem; border-radius: var(--radius-sm); background: var(--bg-secondary); }
.top-rank { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; font-size: 0.72rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.top-info strong { display: block; font-size: 0.82rem; }
.top-info span   { font-size: 0.7rem; color: var(--text-muted); }
.revenue-chart-wrap { padding: 1.15rem; }

/* Contact messages */
.message-meta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0.7rem; background: var(--bg-secondary); border-radius: var(--radius-md); padding: 0.95rem; margin-bottom: 1.15rem; }
.message-meta-grid > div { font-size: 0.82rem; }
.message-meta-grid span  { display: block; font-size: 0.68rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.18rem; }
.message-body { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 1.15rem; line-height: 1.8; font-size: 0.875rem; border-left: 3px solid var(--gold); margin-bottom: 1.15rem; }
.reply-form-wrap { border-top: 1px solid var(--border); padding: 1.15rem; }
.reply-form-wrap h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.9rem; }

/* Toast */
.toast-container { position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.55rem; pointer-events: none; }
.toast { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.8rem 1.05rem; box-shadow: var(--shadow-lg); font-size: 0.855rem; min-width: 250px; max-width: 340px; display: flex; align-items: center; gap: 0.6rem; pointer-events: auto; animation: slideRight 0.22s ease; }
.toast--success { border-left: 3px solid var(--success); }
.toast--danger  { border-left: 3px solid var(--danger); }
.toast--info    { border-left: 3px solid var(--info); }
.toast--warning { border-left: 3px solid var(--warning); }
@keyframes slideRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Utilities */
.hidden  { display: none !important; }
.spin    { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.reveal  { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1199px) {
  .results-layout { grid-template-columns: 240px 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hotel-card-full { grid-template-columns: 190px 1fr 165px; }
}

@media (max-width: 991px) {
  /* Navbar mobile */
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--navbar-h); left: 0; right: 0; bottom: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1.4rem;
    gap: 0.18rem;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
    list-style: none;
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--text-primary); padding: 0.7rem 0.95rem; }
  .nav-dropdown {
    position: static;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none;
    background: var(--bg-secondary);
    transform: none;
    padding: 0.22rem 0.45rem;
    margin-top: 0.22rem;
    display: none;
  }
  .nav-has-dropdown.open > .nav-dropdown { display: block; }
  .nav-toggle { display: flex; }

  /* Filters */
  .filters-sidebar {
    position: fixed;
    top: 0; left: -100%;
    height: 100vh; width: 290px;
    z-index: 1001;
    transition: left 0.3s;
    border-radius: 0;
  }
  .filters-sidebar.active { left: 0; box-shadow: 4px 0 32px rgba(0,0,0,0.5); }
  .filters-close { display: flex; }

  /* Layouts */
  .results-layout { grid-template-columns: 1fr; }
  .detail-layout, .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .blog-layout, .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar, .blog-post-sidebar { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .about-intro__grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 200px; margin-top: 1.4rem; }
  .mission-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid-2 { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-panel--left { display: none; }

  /* Cards */
  .flight-card-full { grid-template-columns: 1fr; gap: 1rem; }
  .hotel-card-full { grid-template-columns: 1fr; }
  .hotel-card-full__image { height: 195px; }
  .hotel-card-full__price { border-left: none; border-top: 1px solid var(--border); flex-direction: row; justify-content: space-between; align-items: center; }
  .class-options { grid-template-columns: 1fr; }
  .room-card { grid-template-columns: 1fr; }
  .room-card__price { border-left: none; border-top: 1px solid var(--border); flex-direction: row; justify-content: space-between; }
  .includes-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 767px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 46px 1fr; }
  .booking-row__amount, .booking-row__status, .booking-row__actions { grid-column: 2; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid, .team-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.4rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .filter-tabs { gap: 0.3rem; }
  .filter-tab { padding: 0.35rem 0.7rem; font-size: 0.72rem; }
  .nav-actions .btn { display: none; }
  .nav-actions .btn:last-of-type { display: inline-flex; }
}
