/* ============================================================
   ROYAL STAY — Hotels & Resorts
   Shared stylesheet
   ============================================================ */

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

/* ---------- Tokens ---------- */
:root {
  --navy: #0a1e3c;
  --navy-2: #0d2a52;
  --navy-3: #123567;
  --gold: #e5c170;
  --gold-dark: #cfa24f;
  --gold-soft: #f8eeda;
  --bg: #f6f6f4;
  --white: #ffffff;
  --text: #16233a;
  --muted: #65728a;
  --border: #e6e8ee;
  --shadow: 0 12px 32px rgba(10, 30, 60, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 30, 60, 0.16);
  --radius: 14px;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.serif, h1, h2, h3, .room-card-title {
  font-family: var(--serif);
  color: var(--navy);
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.bg-light { background: var(--bg); }
.section.bg-white { background: var(--white); }
.section.bg-navy { background: var(--navy); color: #dbe4f3; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; line-height: 1.15; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head p { color: var(--muted); max-width: 560px; margin-top: 8px; }

.view-all {
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  transition: gap .2s ease;
}
.view-all:hover { gap: 13px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  transition: all .22s ease;
  line-height: 1.2;
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }

.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(229, 193, 112, 0.4); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(229, 193, 112, 0.5); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-wa { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35); }
.btn-wa:hover { background: #1eb95a; transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(4, 12, 28, 0.35);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #d9b25e);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--serif);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.14em;
}
.brand-text small {
  color: var(--gold);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  font-weight: 600;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav .nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  padding: 26px 14px;
  position: relative;
  transition: color .2s;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav .nav-link:hover { color: #fff; }
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .nav-link.active { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
  .nav-actions { position: relative; }
.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  transition: color .2s;
}
.login-link:hover { color: var(--gold); }

.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { display: block; }

  /* Header user menu */
  .user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    color: var(--text);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    overflow: hidden;
    display: none;
    z-index: 1300;
  }
  .user-menu.open { display: block; }
  .user-menu .um-item {
    display: block;
    padding: 10px 14px;
    font-weight: 600;
    color: inherit;
    text-align: left;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
  }
  .user-menu .um-item:hover { background: var(--bg); }
  .user-menu .um-logout { color: var(--navy); }
  .user-menu-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .um-greet { color: rgba(255,255,255,0.92); }


/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-2) 55%, #16407e 100%);
  color: #fff;
  padding: 74px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -140px; top: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,193,112,.22), transparent 70%);
}
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  color: #fff;
  font-weight: 700;
  position: relative;
}
.page-hero p { color: rgba(255,255,255,0.78); max-width: 620px; margin-top: 12px; position: relative; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--gold); margin-bottom: 14px; position: relative; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hotel.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,14,32,.92) 0%, rgba(5,14,32,.68) 45%, rgba(5,14,32,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 190px;
  max-width: 640px;
}
.hero-content .eyebrow { color: var(--gold); }
.hero-content h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 30px; max-width: 460px; }

/* ---------- Search widget ---------- */
.search-wrap { position: relative; z-index: 5; margin-top: -108px; }
.search-widget {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr auto;
  align-items: stretch;
  padding: 10px;
  gap: 0;
}
.sw-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 22px;
  position: relative;
}
.sw-field + .sw-field::before {
  content: '';
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 1px;
  background: var(--border);
}
.sw-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.sw-field label svg { color: var(--gold-dark); }
.sw-field input[type="date"] {
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.sw-field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }

.sw-select-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  text-align: left;
  width: 100%;
}
.sw-select-btn .chev { margin-left: auto; color: var(--gold-dark); transition: transform .2s; }
.sw-select-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

.sw-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 14px; right: 14px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 16px;
  display: none;
  z-index: 60;
}
.sw-dropdown.open { display: block; }
.stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.stepper-row + .stepper-row { border-top: 1px solid var(--border); }
.stepper-row .sr-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.stepper-row .sr-label small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }
.stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stepper button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  line-height: 1;
}
.stepper button:hover { border-color: var(--gold); background: var(--gold-soft); }
.stepper .val { min-width: 22px; text-align: center; font-weight: 700; font-size: 15px; }

.btn-search { padding: 16px 28px; font-size: 15px; border-radius: 14px; }

/* ---------- Search recap ---------- */
.recap-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.recap-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.recap-chip {
  display: none;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--muted);
  box-shadow: 0 4px 14px rgba(10,30,60,.06);
}
.recap-chip.show { display: inline-flex; }
.recap-chip svg { color: var(--gold-dark); }
.recap-chip strong { color: var(--navy); }
.recap-count { font-size: 14px; color: var(--muted); }
.recap-count strong { color: var(--navy); font-family: var(--serif); font-size: 20px; }

/* ---------- Room detail page ---------- */
.room-detail-page { padding: 56px 0 84px; background: var(--bg); }
.room-detail-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 34px;
  align-items: start;
}
.room-detail-main {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.rd-gallery img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.rd-info { padding: 30px 34px 34px; }
.rd-info h1 { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.rd-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  margin: 22px 0;
}
.rd-meta-item { display: flex; align-items: center; gap: 11px; color: var(--gold-dark); }
.rd-meta-item svg { flex: 0 0 auto; }
.rd-meta-item div { display: flex; flex-direction: column; line-height: 1.3; }
.rd-meta-item small { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.rd-meta-item strong { font-size: 14px; color: var(--navy); }
.rd-sub { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.rd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}
.rd-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
}
.rd-features svg { color: var(--gold-dark); flex: 0 0 auto; }
.rd-price-box {
  background: var(--bg);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
}
.similar-title { margin-top: 56px; margin-bottom: 26px; font-size: 26px; font-weight: 700; }

/* ---------- Room cards ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.rooms-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.room-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.room-card-title { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.room-card-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.room-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.room-card-meta svg { color: var(--gold-dark); flex: 0 0 auto; }

.room-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.room-price { display: flex; align-items: baseline; gap: 4px; line-height: 1.1; }
.room-price strong { font-family: var(--serif); font-size: 24px; color: var(--navy); }
.room-price span { font-size: 12.5px; color: var(--muted); }
.room-card-foot .btn { padding: 10px 20px; font-size: 13.5px; }

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.why-item { text-align: center; padding: 28px 16px; }
.why-icon {
  width: 74px; height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(229,193,112,.4);
}
.why-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 13.5px; color: var(--muted); max-width: 210px; margin-inline: auto; }

/* ---------- Amenities strip ---------- */
.amenity-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.amenity-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .22s ease;
}
.amenity-tile:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.amenity-tile .at-icon {
  width: 48px; height: 48px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-tile h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
.amenity-tile p { font-size: 13px; color: var(--muted); }

/* ---------- Offers ---------- */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offer-card:hover .offer-img img { transform: scale(1.06); }
.offer-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  padding: 6px 13px;
  border-radius: 999px;
}
.offer-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.offer-body h3 { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.offer-body p { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.offer-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.offer-price strong { font-family: var(--serif); font-size: 22px; color: var(--navy); }
.offer-price .was { color: var(--muted); text-decoration: line-through; font-size: 14px; margin-left: 6px; }
.offer-price small { display: block; color: var(--muted); font-size: 12px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,60,.55), transparent 55%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gi-label {
  position: absolute;
  left: 16px; bottom: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s;
}
.gallery-item:hover .gi-label { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 10, 24, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lb-btn:hover { background: var(--gold); color: var(--navy); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 22px;
  font-family: var(--serif);
  font-size: 90px;
  color: var(--gold-soft);
  line-height: 1;
}
.stars { display: flex; gap: 3px; color: var(--gold); }
.testi-card blockquote { font-size: 14.5px; color: var(--muted); flex: 1; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.testi-author strong { display: block; font-size: 14.5px; color: var(--navy); }
.testi-author small { color: var(--muted); font-size: 12.5px; }

/* ---------- Map / location ---------- */
.map-section { padding: 84px 0; background: var(--bg); }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}
.map-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-card .eyebrow { margin-bottom: 0; }
.map-card h2 { font-size: 28px; font-weight: 700; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ir-icon {
  width: 42px; height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-row h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
.info-row p, .info-row a { font-size: 13.5px; color: var(--muted); }
.info-row a:hover { color: var(--gold-dark); }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  background: #eef1f6;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img .exp-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: var(--serif);
  box-shadow: var(--shadow-lg);
}
.about-img .exp-badge strong { display: block; font-size: 22px; }
.about-img .exp-badge small { font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.7); }
.about-copy h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; margin-bottom: 16px; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--navy);
  line-height: 1.1;
}
.stat-card small { color: var(--muted); font-size: 13px; font-weight: 500; }
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.value-card .why-icon { margin: 0 0 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  left: -120px; bottom: -160px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,193,112,.25), transparent 70%);
}
.cta-banner h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 26px; }
.cta-banner .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: #071428; color: #b9c4d8; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 44px;
  padding-bottom: 46px;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { font-size: 13.5px; margin: 18px 0 20px; max-width: 300px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cdd6e6;
  transition: all .2s;
}
.socials a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 14px; color: #b9c4d8; transition: color .2s, padding-left .2s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; font-size: 13.5px; align-items: flex-start; }
.footer-contact svg { color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.footer-contact a:hover { color: var(--gold); }

.newsletter p { font-size: 13.5px; margin-bottom: 16px; }
.newsletter form { display: flex; background: rgba(255,255,255,.08); border-radius: 999px; padding: 5px; }
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 13.5px;
  padding: 8px 14px;
  min-width: 0;
}
.newsletter input::placeholder { color: #8fa0bd; }
.newsletter button {
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .2s;
}
.newsletter button:hover { background: var(--gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8fa0bd;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-field label .req { color: #c0392b; }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 15px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(229,193,112,.22);
}
.form-note { font-size: 12.5px; color: var(--muted); }

/* ---------- Steps indicator ---------- */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 34px auto 0;
  max-width: 860px;
  padding: 0 10px;
}
.step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; text-align: center; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: var(--border);
}
.step.done:not(:last-child)::after { background: var(--gold); }
.step .step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all .25s;
}
.step.active .step-dot { border-color: var(--gold); background: var(--gold); color: var(--navy); box-shadow: 0 6px 16px rgba(229,193,112,.45); }
.step.done .step-dot { border-color: var(--gold); background: var(--gold-soft); color: var(--navy); }
.step .step-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 9px; line-height: 1.3; max-width: 96px; }
.step.active .step-label { color: var(--navy); }
.step.done .step-label { color: var(--navy); }

/* ---------- Booking layout ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 34px;
  align-items: start;
}
.panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.panel h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.panel h3 { font-size: 17px; font-weight: 700; margin-bottom: 14px; }

.summary-panel { position: sticky; top: 96px; }
.summary-room { display: flex; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.summary-room img { width: 92px; height: 74px; object-fit: cover; border-radius: 10px; }
.summary-room h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); }
.summary-room p { font-size: 12.5px; color: var(--muted); }
.sum-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0;
}
.sum-line strong { color: var(--text); font-weight: 600; }
.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 2px solid var(--navy);
  margin-top: 12px;
  padding-top: 16px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.sum-total strong { font-family: var(--serif); font-size: 26px; }
.sum-note { font-size: 12px; color: var(--muted); margin-top: 12px; display: flex; gap: 8px; align-items: flex-start; }
.sum-note svg { flex: 0 0 auto; margin-top: 1px; }

.pay-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.pay-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all .2s;
}
.pay-option:hover { border-color: var(--gold); }
.pay-option.selected { border-color: var(--gold); background: var(--gold-soft); }
.pay-option input { margin-top: 3px; accent-color: var(--navy); }
.pay-option strong { display: block; font-size: 14.5px; color: var(--navy); }
.pay-option small { font-size: 12.5px; color: var(--muted); }

/* ---------- Confirmation ---------- */
.confirm-wrap { max-width: 760px; margin-inline: auto; }
.confirm-hero { text-align: center; padding: 26px 0 10px; }
.confirm-icon {
  width: 92px; height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fce6a, #1ea950);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(46, 204, 113, .4);
}
.confirm-hero h1 { font-size: clamp(26px, 3.4vw, 36px); }
.confirm-hero p { color: var(--muted); margin-top: 10px; }
.confirm-ref {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-soft);
  border: 1px dashed var(--gold-dark);
  color: var(--navy);
  font-weight: 700;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .08em;
  padding: 10px 26px;
  border-radius: 12px;
  margin-top: 18px;
}
.confirm-details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 34px;
  padding: 30px;
}
.confirm-details h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
.cd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.cd-item { border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.cd-item small { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.cd-item strong { font-size: 15px; color: var(--navy); }
.confirm-actions { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 34px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform .2s;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card .cc-icon {
  width: 46px; height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--muted); }
.contact-card a:hover { color: var(--gold-dark); }
.contact-card .cc-wa a { color: #128c4a; font-weight: 600; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--navy);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.2);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { color: var(--gold); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 26px; } .mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 26px; }
.text-center { text-align: center; }
.lead { color: var(--muted); }
.badge-gold {
  display: inline-flex;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity-tiles, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-layout, .contact-grid, .map-grid { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
}

@media (max-width: 960px) {
  /* Slide-in sidebar navigation */
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 85vw);
    background: linear-gradient(180deg, var(--navy) 0%, #071a38 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: 104px 20px calc(36px + env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.25,.8,.35,1);
    box-shadow: -24px 0 70px rgba(0,0,0,.45);
    z-index: 950;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav .nav-link {
    width: 100%;
    padding: 15px 16px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: background .2s ease, color .2s ease;
  }
  .main-nav .nav-link::after { display: none; }
  .main-nav .nav-link::before {
    content: '';
    width: 3px; height: 20px;
    border-radius: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity .2s ease;
  }
  .main-nav .nav-link:hover { background: rgba(255,255,255,.07); color: #fff; }
  .main-nav .nav-link.active { background: rgba(229,193,112,.12); color: var(--gold); }
  .main-nav .nav-link.active::before { opacity: 1; }

  .btn-book { display: none; }
  .nav-cta-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    width: 100%;
  }
  .nav-cta-mobile .btn { width: 100%; }
  .nav-login-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,.22);
    transition: border-color .2s, color .2s;
  }
  .nav-login-mobile:hover { border-color: var(--gold); color: var(--gold); }

  .nav-toggle { display: block; z-index: 960; }
  .nav-toggle svg line { transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
  body.menu-open .nav-toggle svg line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .nav-toggle svg line:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle svg line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }

  .login-link { display: inline-flex; }
  .nav-overlay {
    /* Keep the overlay BELOW the header (z-index 900): the drawer lives inside
       the header's stacking context, so the overlay must not cover it. */
    position: fixed; inset: 0;
    background: rgba(4,10,24,.55);
    backdrop-filter: blur(2px);
    z-index: 880;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
  .search-widget { grid-template-columns: 1fr 1fr; }
  .search-widget .sw-field:nth-child(2)::before { display: none; }
  .btn-search { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { min-height: 500px; }
  .search-wrap { margin-top: -90px; }
  .search-widget { grid-template-columns: 1fr; }
  .sw-field + .sw-field::before { display: none; }
  .sw-field { padding: 12px 16px; }
  .rooms-grid, .rooms-grid.cols-3, .amenity-tiles, .gallery-grid,
  .offers-grid, .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-item { padding: 20px 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .steps { gap: 4px; }
  .step .step-label { font-size: 10.5px; }
  .cd-grid { grid-template-columns: 1fr; }
  .confirm-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .panel { padding: 24px 20px; }
  .map-card { padding: 26px 22px; }
  .rd-features { grid-template-columns: 1fr; }
  .nav-wrap { min-height: 64px; }
  .brand-mark { width: 40px; height: 40px; font-size: 17px; }
  .brand-text strong { font-size: 15.5px; }
  .brand-text small { font-size: 8.5px; }
  .nav-toggle svg { width: 24px; height: 24px; }
  .main-nav { padding-top: 84px; }
}

/* ---------- Guest Auth Pages ---------- */
.guest-auth-section { padding: 56px 0 84px; }
.guest-auth-card {
  width: min(980px, 100%);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
.guest-auth-aside {
  background: linear-gradient(160deg, #0a1e3c 0%, #123567 100%);
  color: #fff;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.guest-auth-aside::after {
  content: '';
  position: absolute;
  right: -90px; bottom: -90px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,193,112,.28), transparent 68%);
}
.guest-auth-aside .brand { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; position: relative; z-index: 1; }
.guest-auth-aside h1 { color: #fff; font-size: 30px; font-weight: 700; line-height: 1.2; position: relative; z-index: 1; }
.guest-auth-aside h1 em { font-style: italic; color: var(--gold); }
.guest-auth-aside > p { color: rgba(255,255,255,.72); font-size: 14px; margin: 12px 0 26px; position: relative; z-index: 1; }
.guest-auth-aside .chip-list { display: flex; flex-direction: column; gap: 12px; margin-top: auto; position: relative; z-index: 1; }
.guest-auth-aside .chip-list li { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(255,255,255,.85); }
.guest-auth-aside .chip-list svg { color: var(--gold); flex: 0 0 auto; }
.guest-auth-form-side { padding: 40px 42px; }
.guest-auth-brand-mobile { display: none; }
.guest-auth-form-side h2 { font-size: 26px; font-weight: 700; }
.guest-auth-form-side > p.sub { color: var(--muted); font-size: 14px; margin: 6px 0 24px; }
.auth-links { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--muted); }
.auth-links a { color: var(--navy); font-weight: 700; }
.auth-links a:hover { color: var(--gold-dark); }
.auth-foot { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--muted); }
.auth-foot a { color: var(--navy); font-weight: 700; }
.auth-foot a:hover { color: var(--gold-dark); }

@media (max-width: 760px) {
  .guest-auth-card { grid-template-columns: 1fr; }
  .guest-auth-aside { display: block; }
  .guest-auth-form-side { padding: 34px 26px; }
  .guest-auth-brand-mobile { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
}

/* ---------- Guest Login / Register Pages ---------- */
.guest-login-wrap,
.guest-register-wrap {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.guest-login-card,
.guest-register-card {
  padding: 40px 42px;
}
.glc-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
}
.glc-header .brand-mark { width: 44px; height: 44px; border-radius: 11px; flex: 0 0 auto; }
.glc-header h2 { font-size: 26px; font-weight: 700; }
.glc-header .sub { color: var(--muted); font-size: 14px; margin-top: 2px; }
.glc-footer { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--muted); }
.glc-footer a { color: var(--navy); font-weight: 700; }
.glc-footer a:hover { color: var(--gold-dark); }

.guest-login-aside,
.guest-register-aside {
  background: linear-gradient(160deg, #0a1e3c 0%, #123567 100%);
  color: #fff;
  padding: 44px 38px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.guest-login-aside::after,
.guest-register-aside::after {
  content: ''; position: absolute; right: -90px; bottom: -90px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,193,112,.28), transparent 68%);
}
.guest-login-aside .brand,
.guest-register-aside .brand { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; position: relative; z-index: 1; }
.guest-login-aside h1,
.guest-register-aside h1 { color: #fff; font-size: 30px; font-weight: 700; line-height: 1.2; position: relative; z-index: 1; }
.guest-login-aside h1 em,
.guest-register-aside h1 em { font-style: italic; color: var(--gold); }
.guest-login-aside > p,
.guest-register-aside > p { color: rgba(255,255,255,.72); font-size: 14px; margin: 12px 0 26px; position: relative; z-index: 1; }
.guest-login-aside .chip-list,
.guest-register-aside .chip-list { display: flex; flex-direction: column; gap: 12px; margin-top: auto; position: relative; z-index: 1; }
.guest-login-aside .chip-list li,
.guest-register-aside .chip-list li { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(255,255,255,.85); }
.guest-login-aside .chip-list svg,
.guest-register-aside .chip-list svg { color: var(--gold); flex: 0 0 auto; }

@media (max-width: 768px) {
  .guest-login-wrap,
  .guest-register-wrap { grid-template-columns: 1fr; }
  .guest-login-aside,
  .guest-register-aside { display: block; }
  .guest-login-card,
  .guest-register-card { padding: 34px 26px; }
}

/* ---------- Guest Dashboard ---------- */
.guest-dashboard-section { padding: 56px 0 84px; background: var(--bg); }
.guest-dash-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px;
}
.guest-dash-header h1 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; }
.gdh-left p { color: var(--muted); margin-top: 6px; }
.g-kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.g-kpi {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; display: flex; gap: 14px; align-items: center;
  box-shadow: 0 1px 2px rgba(10,30,60,.03);
}
.gk-ico {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.gk-ico.ic-gold { background: var(--gold-soft); color: var(--gold-dark); }
.gk-ico.ic-green { background: var(--green-bg); color: var(--green); }
.gk-ico.ic-navy { background: #e6eefb; color: var(--navy-3); }
.g-kpi strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--navy); line-height: 1.1; }
.g-kpi span { font-size: 12px; color: var(--muted); font-weight: 500; }

.g-tabs { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.g-tab {
  background: #fff; border: 1.5px solid var(--border); color: var(--navy); font-weight: 600; font-size: 13.5px;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.g-tab:hover { border-color: var(--gold); }
.g-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.g-bookings { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.g-booking-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(10,30,60,.03); display: grid; grid-template-columns: 200px 1fr; overflow: hidden;
}
.gbc-img { aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.gbc-img img { width: 100%; height: 100%; object-fit: cover; }
.gbc-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.gbc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.gbc-head h4 { font-size: 18px; font-weight: 700; }
.gbc-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.gbc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.gbc-price { font-family: var(--serif); font-size: 20px; color: var(--navy); }
.gbc-pay { font-size: 12.5px; color: var(--muted); }

.g-empty {
  text-align: center; padding: 56px 20px; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.g-empty h4 { font-size: 18px; color: var(--navy); }
.g-empty p { font-size: 14px; max-width: 400px; }

.g-profile-panel .panel { max-width: 800px; }
.g-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gp-item { border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.gp-item:last-child { border-bottom: none; }
.gp-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.gp-item strong { font-size: 14px; color: var(--navy); }

.find-result-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 22px; margin-top: 18px;
}
.find-result-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.find-result-card .badge { margin-left: 10px; }

@media (max-width: 768px) {
  .g-kpi-grid { grid-template-columns: 1fr; }
  .g-booking-card { grid-template-columns: 1fr; }
  .gbc-img { aspect-ratio: 16/9; max-height: 220px; }
  .g-profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .guest-dash-header { flex-direction: column; align-items: flex-start; }
  .gbc-head { flex-direction: column; align-items: flex-start; }
  .gbc-foot { flex-direction: column; align-items: flex-start; }
}