/* ==============================================
   PREMIUM ENTERPRISE CSS — LUXURY TRAVEL PLATFORM
   Navy × Gold × Refined Elegance
   v2.0 — Enterprise Edition
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ==============================================
   DESIGN TOKENS
   ============================================== */

:root {
  /* Core Palette */
  --navy-deep:       #06111E;
  --navy-base:       #0B1C2D;
  --navy-mid:        #0F2236;
  --navy-surface:    #142840;
  --navy-elevated:   #1A3550;

  /* Gold System */
  --gold-dim:        #8A7030;
  --gold-base:       #C9A84C;
  --gold-bright:     #D4AF37;
  --gold-light:      #E8CC6A;
  --gold-glow:       rgba(212, 175, 55, 0.18);
  --gold-glow-sm:    rgba(212, 175, 55, 0.08);

  /* Neutral & Text */
  --text-primary:    #F0EAD6;
  --text-secondary:  #9AABBF;
  --text-muted:      #5F7A94;
  --text-inverse:    #06111E;

  /* Semantic */
  --success:         #3DAA73;
  --error:           #C0392B;
  --info:            #3498DB;

  /* Borders */
  --border-subtle:   rgba(212, 175, 55, 0.12);
  --border-mid:      rgba(212, 175, 55, 0.25);
  --border-strong:   rgba(212, 175, 55, 0.50);

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.35);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.50);
  --shadow-gold:  0 4px 20px rgba(212,175,55,0.20);

  /* Radii */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --radius-pill:  999px;

  /* Spacing */
  --space-1:  4px;  --space-2:  8px;   --space-3:  12px;
  --space-4:  16px; --space-5:  20px;  --space-6:  24px;
  --space-8:  32px; --space-10: 40px;  --space-12: 48px;
  --space-16: 64px; --space-20: 80px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', Arial, sans-serif;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:     140ms;
  --dur-base:     240ms;
  --dur-slow:     400ms;
}


/* ==============================================
   RESET & BASE
   ============================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  background: var(--navy-base);
  color: var(--text-primary);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212,175,55,0.06) 0%, transparent 70%);
  min-height: 100vh;
}

::selection { background: var(--gold-glow); color: var(--gold-light); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}


/* ==============================================
   NAVBAR — Premium Glassmorphism
   ============================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 22, 37, 0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 var(--space-8);
  height: 68px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo::before {
  content: '◆';
  font-size: 14px;
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-menu a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}

.nav-menu a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-menu a.active {
  color: var(--gold-bright);
}

/* ==============================================
   LINK gold
   ============================================== */

/* Primary Gold */

.link-gold {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.35);
  text-underline-offset: 3px;
  transition: color var(--dur-fast), text-decoration-color var(--dur-fast);
}

.link-gold:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-bright);
}

.link-gold:visited {
  color: var(--gold-dim);
}

/* ==============================================
   BUTTONS — Premium System
   ============================================== */

/* Primary Gold */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease),
              filter var(--dur-base) var(--ease);
  box-shadow: 0 2px 12px rgba(212,175,55,0.30);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.20), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), 0 8px 24px rgba(212,175,55,0.25);
  filter: brightness(1.06);
}

.btn-gold:hover::before { opacity: 1; }

.btn-gold:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-gold:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Ghost Variant */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-bright);
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all var(--dur-base) var(--ease);
}

.btn-outline:hover {
  background: var(--gold-glow-sm);
  border-color: var(--border-strong);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* Ghost Subtle */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.14);
}

/* Size Modifiers */
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-block { width: 100%; }


/* ==============================================
   INPUT FIELDS — Enterprise Grade
   ============================================== */

.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.input-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.input::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.input:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.input:focus {
  border-color: var(--gold-bright);
  background: rgba(212,175,55,0.04);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

/* Input with Icon */
.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .input {
  padding-left: 42px;
}

.input-icon-wrap .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 16px;
}

/* Date Input */
.input[type="date"],
.input[type="datetime-local"] {
  color-scheme: dark;
}

/* Select */
select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%235F7A94'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Textarea */
textarea.input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Validation States */
.input.is-valid   { border-color: var(--success); }
.input.is-invalid { border-color: var(--error);   }
.input.is-valid:focus   { box-shadow: 0 0 0 3px rgba(61,170,115,0.15); }
.input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(192,57,43,0.15);  }

.input-helper {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.input-helper.error { color: var(--error); }
.input-helper.success { color: var(--success); }


/* ==============================================
   HERO — Luxury Grade
   ============================================== */

.hero {
  position: relative;
  padding: var(--space-20) var(--space-6);
  text-align: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 60%, var(--navy-base) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212,175,55,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(212,175,55,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: var(--gold-glow-sm);
  border: 1px solid var(--border-subtle);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}


/* ==============================================
   HERO SEARCH BAR — Premium
   ============================================== */

.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px var(--space-5);
  max-width: 680px;
  margin: 0 auto;
  gap: var(--space-3);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.hero-search:focus-within {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(212,175,55,0.08);
}

.hero-search input {
  flex: 1;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
}

.hero-search input::placeholder {
  color: var(--text-muted);
}

.hero-search .search-divider {
  width: 1px;
  height: 24px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

.hero-search .btn-gold {
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  white-space: nowrap;
}


/* ==============================================
   CARDS — Property & Room
   ============================================== */

/* Base Card */
.card {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-mid);
  border-color: var(--border-mid);
}

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.property-card {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-mid);
  border-color: var(--border-mid);
}

.property-image {
  width: 100%;
  height: 210px;
  background: var(--navy-mid);
  overflow: hidden;
  position: relative;
}

.property-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,17,30,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.property-card:hover .property-img {
  transform: scale(1.04);
}

.property-content {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.property-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.property-content p {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.price {
  margin-top: var(--space-3);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-bright);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-period {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}


/* ==============================================
   ROOM CARDS — Premium
   ============================================== */

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.room-card {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-mid);
  border-color: var(--border-mid);
}

.room-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--navy-mid);
}

.room-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,17,30,0.55) 0%, transparent 55%);
  pointer-events: none;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.room-card:hover .room-img { transform: scale(1.04); }

.promo-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
  color: var(--text-inverse);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(212,175,55,0.35);
  z-index: 5;
}

.room-content {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.room-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.room-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ==============================================
   PRICE DISPLAY
   ============================================== */

.price-block {
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-promo {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-bright);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-normal {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
}

.price-promo .price-period,
.price-normal .price-period {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: rgba(61,170,115,0.10);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
}


/* ==============================================
   PROPERTY DETAIL HEADER
   ============================================== */

.property-header {
  margin-bottom: var(--space-8);
}

.property-header-inner {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  flex-wrap: wrap;
}

.property-main-img {
  width: 460px;
  height: 300px;
  object-fit: cover;
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.property-header-info h1 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.property-header-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ==============================================
   BOOKING BOX — Premium
   ============================================== */

.booking-box {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

.booking-box .section-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--space-5);
}

.booking-box .input-group {
  margin-bottom: var(--space-4);
}

.booking-box .btn-gold {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
}


/* ==============================================
   ROOM DETAIL
   ============================================== */

.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.room-detail-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}


/* ==============================================
   MODAL — Premium
   ============================================== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 17, 30, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal.is-open { display: flex; }

.modal-content {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  max-width: 580px;
  width: 90%;
  margin: 0 auto;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  max-height: 85vh;
  overflow: auto;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-mid);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  transition: all var(--dur-fast);
}

.modal-close:hover {
  background: rgba(255,255,255,0.10);
  color: var(--text-primary);
}

.rules-content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  white-space: pre-line;
  margin: var(--space-4) 0;
}

.agreement-box {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--gold-glow-sm);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.agreement-label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

/* Custom Checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all var(--dur-fast);
  margin-top: 2px;
}

input[type="checkbox"]:checked {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: 2px solid var(--text-inverse);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.20);
}


/* ==============================================
   SECTION TYPOGRAPHY
   ============================================== */

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.65;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  margin: var(--space-3) 0 var(--space-6);
}


/* ==============================================
   TAGS / CHIPS
   ============================================== */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}

.tag-gold {
  border-color: var(--border-mid);
  color: var(--gold-bright);
  background: var(--gold-glow-sm);
}


/* ==============================================
   RATING STARS
   ============================================== */

.rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
}

.stars {
  color: var(--gold-bright);
  letter-spacing: 1px;
  font-size: 13px;
}

.rating-score {
  font-weight: 600;
  color: var(--text-primary);
}

.rating-count {
  color: var(--text-muted);
}


/* ==============================================
   SIDEBAR — Admin Dashboard
   ============================================== */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background: var(--navy-deep);
  border-right: 1px solid var(--border-subtle);
  padding-top: var(--space-5);
  transition: left var(--dur-base) var(--ease);
  z-index: 1000;
}

.sidebar-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px var(--space-5);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease);
}

.sidebar a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold-dim);
}

.sidebar a.active {
  color: var(--gold-bright);
  background: var(--gold-glow-sm);
  border-left-color: var(--gold-bright);
}


/* ==============================================
   MAIN CONTENT (with sidebar)
   ============================================== */

.main-content {
  margin-left: 240px;
  padding: var(--space-8) var(--space-8);
}


/* ==============================================
   MOBILE TOPBAR
   ============================================== */

.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: rgba(9,22,37,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 var(--space-4);
  z-index: 1001;
  align-items: center;
}

.mobile-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #D4AF37 !important;
  border-radius: 2px;
  transition: all 240ms ease;
}

/* ==============================================
   FOOTER
   ============================================== */

.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  padding: var(--space-8) var(--space-6);
  margin-top: var(--space-12);
}

.footer p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-gold {
  color: var(--gold-dim);
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: var(--space-2);
}


/* ==============================================
   TOAST / NOTIFICATION
   ============================================== */

.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--navy-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  min-width: 280px;
  animation: slideInToast var(--dur-base) var(--ease-spring);
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--error);   }
.toast.gold    { border-left: 3px solid var(--gold-bright); }

@keyframes slideInToast {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0);    }
}


/* ==============================================
   SCROLLBAR
   ============================================== */

::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: var(--navy-mid); }
::-webkit-scrollbar-thumb  { background: var(--navy-elevated); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ==============================================
   LOGIN PAGE
   ============================================== */

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.login-box {
  background: var(--navy-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212,175,55,0.05);
}

.login-brand {
  text-align: center;
  margin-bottom: var(--space-8);
}

.login-brand .logo {
  font-size: 28px;
  justify-content: center;
}

.login-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: var(--space-2);
}

.login-footer {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 14px;
}

.alert-box {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: var(--space-5);
  border-left: 3px solid;
}

.alert-box.success {
  background: rgba(61,170,115,0.10);
  border-color: var(--success);
  color: #6fcf97;
}

.alert-box.error {
  background: rgba(192,57,43,0.10);
  border-color: var(--error);
  color: #e07070;
}


/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
  .main-content {
    padding: 0 !important;
    padding-top: calc(var(--topbar-h) +6px) !important;
  }

 

  .login-box {
    padding: var(--space-6) var(--space-5) !important;
    margin: var(--space-4) auto;
  }
}
@media (max-width: 768px) {
  .navbar        { padding: 0 var(--space-4); }
  .nav-menu      { display: none; }

  .hero          { padding: var(--space-12) var(--space-4); }

  .hero-search {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    gap: var(--space-3);
  }

  .hero-search .search-divider { display: none; }
  .hero-search input { width: 100%; }
  .hero-search .btn-gold { width: 100%; }

  .property-header-inner { flex-direction: column; }
  .property-main-img     { width: 100%; height: 240px; }

  .room-detail-grid { grid-template-columns: 1fr; }

  .sidebar { left: -240px; }
  .sidebar.active { left: 0; }

  .main-content {
    margin-left: 0;
    padding: var(--space-8) var(--space-4);
    padding-top: calc(56px + var(--space-6));
  }

  .mobile-topbar { display: flex; }

  .container { padding: 0 var(--space-4); }

  .modal-content {
    border-radius: var(--radius-lg);
  }

  .toast-container {
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
  }

  .toast { min-width: unset; }
}