/* =====================================================================
   HOTEL KIRTHIKAA PALACE — Modern Professional Design System v2
   Single-hue palette: deep indigo/navy fading to light — one consistent
   brand color used everywhere (nav, buttons, hero, cards), with only
   small, standard semantic colors (green/red/amber) for status badges.
   Variable NAMES are kept identical to the previous stylesheet so every
   .php file (which references var(--teal-deep), var(--saffron), etc.
   inline) keeps working without any logic/markup changes.
   ===================================================================== */

:root {
  /* ---- Core brand ramp: deep heritage emerald, dark -> light ---- */
  --brand-950: #061512;
  --brand-900: #0D2621;
  --brand-800: #123830;
  --brand-700: #1A4B40;
  --brand-600: #235F50;
  --brand-500: #2F7A64;
  --brand-400: #C6793F;   /* warm copper — the "pop" accent, distinct hue from the ramp */
  --brand-300: #E0A268;
  --brand-200: #F0CDA0;
  --brand-100: #FBEAD3;
  --brand-50:  #FDF8F0;

  /* ---- Legacy variable names, remapped onto the palette above ----
     (kept so existing inline styles across the codebase still work) */
  --terracotta: #B23B2E;        /* semantic danger/wine accent */
  --terracotta-light: #D65C4A;
  --terracotta-dark: #7A2419;

  --forest: var(--brand-900);            /* primary dark surface */
  --forest-light: var(--brand-700);
  --forest-dark: var(--brand-950);

  --ochre: var(--brand-400);             /* copper accent (was gold) */
  --ochre-light: var(--brand-300);
  --ochre-dark: #A85F2A;

  --cream: #FBF7F0;              /* warm ivory page background */
  --cream-dark: #F3ECDC;
  --sand: #E9DFC9;
  --sand-dark: #D6C6A2;

  --ink: #1B241F;
  --ink-soft: #5C6860;
  --white: #FFFFFF;

  /* Accent Colors */
  --sage: #2F6E5E;               /* info teal-green */
  --blush: var(--brand-400);
  --gold: var(--brand-400);

  /* Admin-panel aliases (admin.css references these names) */
  --teal-deep: var(--forest);
  --teal-bright: var(--sage);
  --saffron: var(--brand-400);
  --maroon: var(--terracotta);

  /* Semantic status colors */
  --success: #1E7A4C;
  --success-bg: #E4F3E9;
  --danger: #B23B2E;
  --danger-bg: #FBEAE6;
  --warning: #A5680A;
  --warning-bg: #FCF0DA;
  --info: #2F6E5E;
  --info-bg: #E8F3EE;

  /* Design Tokens — architectural, sharp-cornered, heritage feel */
  --radius-lg: 2px;
  --radius-md: 2px;
  --radius-sm: 2px;
  --radius-pill: 999px;

  --shadow-soft: 0 1px 3px rgba(27, 36, 31, 0.08);
  --shadow-card: 0 1px 2px rgba(27,36,31,.06), 0 8px 24px rgba(27,36,31,.07);
  --shadow-hover: 0 18px 40px rgba(27, 36, 31, 0.18);
  --shadow-elevated: 0 30px 70px rgba(6, 21, 18, 0.34);

  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
}

/* =====================================================================
   BOOTSTRAP COLOR OVERRIDES
   ===================================================================== */
.btn-primary {
  background-color: var(--brand-900);
  border-color: var(--brand-900);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--brand-800);
  border-color: var(--brand-800);
  color: var(--white);
}

.btn-warning {
  background-color: var(--brand-400);
  border-color: var(--brand-400);
  color: var(--white);
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:not(:disabled):not(.disabled):active {
  background-color: var(--ochre-dark);
  border-color: var(--ochre-dark);
  color: var(--white);
}

.btn-info {
  background-color: var(--white);
  border-color: var(--brand-900);
  color: var(--brand-900);
}
.btn-info:hover, .btn-info:focus, .btn-info:not(:disabled):not(.disabled):active {
  background-color: var(--brand-900);
  border-color: var(--brand-900);
  color: var(--white);
}

.btn-outline-primary {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand-900);
}

.btn-outline-danger {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline-danger:hover, .btn-outline-danger:focus {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.badge-primary { background-color: var(--brand-100); color: var(--brand-800); }
.badge-secondary { background-color: #EDEFF6; color: #5B6478; }
.badge-success { background-color: var(--success-bg); color: var(--success); }
.badge-danger { background-color: var(--danger-bg); color: var(--danger); }
.badge-warning { background-color: var(--warning-bg); color: var(--warning); }
.badge-info { background-color: var(--info-bg); color: var(--info); }

.alert-success { background-color: var(--success-bg); color: var(--success); border-color: #C7E9D8; }
.alert-danger { background-color: var(--danger-bg); color: var(--danger); border-color: #F1CDD3; }
.alert-warning { background-color: var(--warning-bg); color: var(--warning); border-color: #F3DFB4; }
.alert-info { background-color: var(--info-bg); color: var(--info); border-color: #C9DBFB; }

.thead-dark th {
  background-color: var(--brand-900);
  color: var(--white);
  border-color: var(--brand-900);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  white-space: nowrap;
}

.table-hover tbody tr:hover {
  background-color: var(--brand-50);
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(91, 110, 245, 0.03);
}
.table td, .table th {
  vertical-align: middle;
  padding: .85rem .9rem;
}

.btn, .form-control, .alert, .badge:not(.badge-pill), .page-link {
  border-radius: var(--radius-sm) !important;
}
.badge { padding: .4em .75em; font-weight: 600; letter-spacing: .01em; }
.thead-dark th:first-child { border-top-left-radius: var(--radius-sm); }
.thead-dark th:last-child { border-top-right-radius: var(--radius-sm); }

/* =====================================================================
   RESET & BASE
   ===================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p {
  margin-bottom: 1em;
  color: var(--ink-soft);
}

/* =====================================================================
   CONTAINER & SECTION
   ===================================================================== */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--cream-dark);
}

/* =====================================================================
   TYPOGRAPHY UTILITIES
   ===================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand-400);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-400);
  display: inline-block;
}

.eyebrow-centered {
  justify-content: center;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head h2 {
  color: var(--brand-900);
  margin-bottom: 10px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-muted {
  color: var(--ink-soft) !important;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: .62rem 1.3rem;
  border-width: 1.5px;
}
.btn-sm { padding: .4rem .9rem; font-size: .82rem; }
.btn i { margin-right: 4px; }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 38, 33, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--brand-400);
  box-shadow: 0 1px 0 rgba(0,0,0,.15);
}

.navbar .container {
  display: flex;

  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0;
  white-space: nowrap;
}
.brand:hover{
  color: var(--brand-300);
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-400);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-300);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  position: relative;
  padding: 6px 2px;
}
.nav-links a:hover{
  
  text-decoration: none;
}
.nav-links a i { font-size: .95rem; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-400);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  
}



.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--brand-950);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    box-shadow: var(--shadow-elevated);
    transform: translateY(-130%);
    opacity: 0;
    transition: var(--transition-smooth);
    max-height: calc(100vh - 68px);
    overflow: auto;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: var(--radius-sm);
    font-size: .92rem;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(255,255,255,.06);
    text-decoration: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn span {
    display: none;
  }
  .nav-cta .btn {
    padding: .55rem .7rem;
  }
  .nav-cta .btn i { margin-right: 0; }
}

@media (max-width: 420px) {
  .brand { font-size: 1.05rem; }
  .brand-mark { width: 34px; height: 34px; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 85% -10%, rgba(198,121,63,.30), transparent 55%),
    linear-gradient(165deg, var(--brand-950), var(--brand-900) 55%, var(--brand-800));
  color: var(--white);
  overflow: hidden;
  padding: 64px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 75%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 16px 0;
}

.hero-eyebrow {
  color: var(--brand-300);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-400);
  display: inline-block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(95deg, var(--brand-300), var(--brand-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.hero-stats div span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(255,255,255,.12);
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,21,18,.55), transparent 55%);
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  color: var(--white);
}

.hero-badge .rating {
  color: var(--brand-300);
  font-weight: 700;
}

.hero-bottom {
  margin-top: 52px;
}

/* Quick Search Bar */
.search-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: end;
  transform: translateY(46px);
  position: relative;
  z-index: 10;
  border: 1px solid var(--sand);
}

.search-card > div {
  min-width: 0;
}

.search-card label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.search-card input,
.search-card select {
  width: 100%;
}

.search-card .btn {
  padding: 12px 22px;
  white-space: nowrap;
}

/* Mobile Hero */
@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-photo { order: -1; }
  .hero-photo img {
    height: 260px;
  }

  .search-card {
    grid-template-columns: 1fr 1fr;
    transform: none;
    margin-top: 28px;
    padding: 22px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stats div strong {
    font-size: 1.4rem;
  }
}

@media (max-width: 520px) {
  .search-card {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 48px; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
}

/* =====================================================================
   FORM CONTROLS — inputs & selects
   One consistent, accessible style used everywhere: search bar, filter
   bars, and modal/auth forms. Fixes cramped selects where the option
   text collided with the native arrow.
   ===================================================================== */
input.form-control,
select.form-control,
textarea.form-control,
.form-group input,
.form-group select,
.form-group textarea,
.search-card input,
.search-card select {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background-color: var(--white);
  transition: var(--transition-smooth);
  line-height: 1.4;
}

textarea.form-control,
.form-group textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

select.form-control,
.form-group select,
.search-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23616B84' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 13px;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

select.form-control option,
.form-group select option,
.search-card select option {
  color: var(--ink);
  background: var(--white);
  padding: 8px;
}

input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.search-card input:focus,
.search-card select:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: 0 0 0 4px rgba(91, 110, 245, 0.14);
  background-color: var(--white);
}

input.form-control::placeholder,
.form-group input::placeholder,
.search-card input::placeholder {
  color: #9AA2B8;
}

label {
  color: var(--ink);
}

/* =====================================================================
   ROOM CARDS / GRIDS
   ===================================================================== */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-200);
}

.room-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--cream-dark);
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.room-card:hover .room-card-img img {
  transform: scale(1.06);
}

.room-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13,38,33,.78);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-weight: 600;
  font-size: 0.68rem;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.room-card-price {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--brand-900);
  color: var(--white);
  padding: 10px 18px;
  border-top-left-radius: var(--radius-md);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.room-card-price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  opacity: 0.7;
}

.room-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-body h3 {
  color: var(--brand-900);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.room-card-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 16px;
}

.amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 18px;
}

.amenity-chip {
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-transform: capitalize;
  border: 1px solid var(--brand-100);
}

/* =====================================================================
   FEATURES / AMENITIES
   ===================================================================== */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-200);
}

.feature-item .icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  background: linear-gradient(155deg, var(--brand-900), var(--brand-700));
  color: var(--brand-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}

.feature-item:hover .icon {
  transform: scale(1.08) rotate(-4deg);
}

.feature-item h4 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand);
  border-left: 3px solid var(--brand-400);
}

.testimonial-card .stars {
  color: var(--brand-400);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
}

.testimonial-card .author span {
  font-size: 0.83rem;
  color: var(--ink-soft);
}

/* =====================================================================
   NEARBY PLACES
   ===================================================================== */
.place-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 640px) {
  .place-list {
    grid-template-columns: 1fr;
  }
}

.place-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.place-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-200);
}

.place-item strong {
  font-weight: 600;
  color: var(--ink);
  font-size: .94rem;
}

.place-item span,
.place-item .distance {
  color: var(--brand-500);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--brand-950);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 24px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-400), var(--brand-700));
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer .grid {
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 36px;
}

@media (max-width: 900px) {
  .footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer .grid {
    grid-template-columns: 1fr;
  }
}

.footer a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 2.2;
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--brand-300);
  padding-left: 4px;
}

.footer .social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition-smooth);
  font-size: 1.05rem;
}

.footer .social-links a:hover {
  background: var(--brand-400);
  color: var(--white);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =====================================================================
   FOOTER MAP EMBED
   ===================================================================== */
.footer-map {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map h4 {
  margin-bottom: 16px;
}

.footer-map-frame {
  position: relative;
  width: 100%;
  padding-top: 33%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  filter: grayscale(45%) contrast(1.05) brightness(.95);
  transition: var(--transition-smooth);
}

.footer-map-frame:hover {
  filter: grayscale(0%) contrast(1) brightness(1);
}

.footer-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .footer-map-frame {
    padding-top: 65%;
  }
}

/* =====================================================================
   FORMS / AUTH
   ===================================================================== */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px 60px;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.auth-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,21,18,0.90), rgba(13,38,33,0.80));
  backdrop-filter: blur(2px);
  z-index: 0;
}

.auth-card {
  background: var(--white);
  max-width: 460px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: 44px 40px;
  position: relative;
  z-index: 1;
  animation: authFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.auth-close:hover {
  background: var(--brand-900);
  color: var(--white);
  border-color: var(--brand-900);
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .auth-close {
    top: 12px;
    right: 12px;
  }
  .auth-card {
    padding: 40px 24px 30px;
    border-radius: var(--radius-md);
  }
}

.auth-card h2 {
  color: var(--brand-900);
  margin-bottom: 8px;
}

.auth-card .subtitle {
  color: var(--ink-soft);
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.83rem;
  margin-bottom: 7px;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 16px;
  text-align: center;
}

.form-hint a {
  color: var(--brand-400);
  font-weight: 600;
}

.form-hint a:hover {
  text-decoration: underline;
}

/* =====================================================================
   PAGE HEADER
   ===================================================================== */
.page-hero {
  background:
    radial-gradient(circle at 90% 0%, rgba(198,121,63,.28), transparent 55%),
    linear-gradient(155deg, var(--brand-950), var(--brand-900));
  color: var(--white);
  padding: 52px 0 44px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-400), var(--brand-700));
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--brand-300);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* =====================================================================
   BOOKING SUMMARY
   ===================================================================== */
.summary-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand);
  padding: 26px;
}

.summary-card h3 {
  color: var(--brand-900);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--sand);
  font-size: 0.92rem;
}

.summary-row.total {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-900);
  padding-top: 16px;
}

.summary-row span:first-child {
  color: var(--ink-soft);
}

/* =====================================================================
   TABLES
   ===================================================================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
}
.table-wrap .table { margin-bottom: 0; }

/* =====================================================================
   UTILITY CLASSES
   ===================================================================== */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.w-100 { width: 100%; }
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand);
  padding: 24px;
}

/* =====================================================================
   ATTRACTIONS
   ===================================================================== */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 720px) {
  .attraction-grid { grid-template-columns: 1fr; }
}

.attraction-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-200);
}

.attraction-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, var(--brand-900), var(--brand-700));
  color: var(--brand-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.attraction-body { flex: 1; min-width: 0; }

.attraction-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.attraction-top h4 {
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}

.attraction-distance {
  color: var(--brand-500);
  font-weight: 700;
  font-size: 0.76rem;
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.attraction-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  font-family: inherit;
}

.faq-q i {
  color: var(--brand-500);
  transition: var(--transition-smooth);
  flex: 0 0 auto;
}

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-item.open .faq-a { max-height: 320px; }

.faq-a p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =====================================================================
   ATTRACTIONS — "journey trail" layout (attractions.php)
   A vertical route from the hotel outward, stops ordered by distance —
   the content is genuinely sequential, so a trail/timeline treatment
   reflects it rather than decorating it.
   ===================================================================== */
.trail-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.trail-stat-chip {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand-200);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.trail-wrap {
  position: relative;
  max-width: 960px;
  margin: 52px auto 0;
}

.trail-origin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}

.trail-origin-marker {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--brand-500), var(--brand-800));
  color: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 24px rgba(52, 68, 138, .28);
}

.trail-origin-text { text-align: left; }

.trail-origin-label {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.trail-origin-text h4 {
  margin: 1px 0 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.attraction-trail {
  position: relative;
  padding-top: 18px;
}

.attraction-trail::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 30px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, var(--brand-200) 0 6px, transparent 6px 13px);
  z-index: 0;
}

.trail-row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  column-gap: 26px;
  padding: 20px 0;
}

.trail-marker {
  grid-column: 2;
  justify-self: center;
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--brand-400);
  color: var(--brand-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.1;
  box-shadow: 0 0 0 6px var(--cream);
}

.trail-marker span {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.trail-card {
  grid-column: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: right;
  flex-direction: row-reverse;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.trail-row:nth-child(even) .trail-card {
  grid-column: 3;
  text-align: left;
  flex-direction: row;
}

.trail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-200);
}

.trail-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.trail-card h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: var(--ink);
}

.trail-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .trail-wrap { margin-top: 40px; }
  .trail-origin { justify-content: flex-start; padding-left: 2px; }
  .attraction-trail::before { left: 26px; }
  .trail-row { grid-template-columns: 52px 1fr; column-gap: 16px; padding: 12px 0; }
  .trail-marker {
    grid-column: 1;
    width: 42px;
    height: 42px;
    font-size: 0.76rem;
  }
  .trail-marker span { font-size: 0.48rem; }
  .trail-row:nth-child(odd) .trail-card,
  .trail-row:nth-child(even) .trail-card {
    grid-column: 2;
    text-align: left;
    flex-direction: row;
  }
}

/* =====================================================================
   FAQ — editorial index layout (faq.php)
   ===================================================================== */
.faq-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-aside { position: sticky; top: 110px; }

.faq-aside h2 {
  margin: 8px 0 12px;
  font-size: 1.6rem;
  color: var(--ink);
}

.faq-aside p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 260px;
}

.faq-index { border-top: 1px solid var(--sand); }

.faq-row {
  border-bottom: 1px solid var(--sand);
  transition: var(--transition-smooth);
}

.faq-row.open { background: linear-gradient(to right, var(--brand-50), transparent 55%); }

.faq-row-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  text-align: left;
}

.faq-row.open .faq-row-q { color: var(--brand-600); }

.faq-toggle {
  flex: 0 0 auto;
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--brand-500);
  transition: var(--transition-smooth);
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-row.open .faq-toggle::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq-row-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-row.open .faq-row-a { max-height: 320px; }

.faq-row-a p {
  margin: 0;
  padding: 0 6px 24px;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .faq-shell { grid-template-columns: 1fr; gap: 12px; }
  .faq-aside { position: static; }
  .faq-aside p { max-width: none; }
}
.divider {
  height: 1px;
  background: var(--sand);
  margin: 24px 0;
}
.text-left { text-align: left; }
.text-right { text-align: right; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* =====================================================================
   PAGINATION
   ===================================================================== */
.pagination {
  margin-top: 26px;
  flex-wrap: wrap;
}
.page-link {
  color: var(--brand-900);
  border-color: var(--sand);
}
.page-item.active .page-link {
  background-color: var(--brand-900);
  border-color: var(--brand-900);
  color: var(--white);
}
.page-link:hover {
  color: var(--brand-700);
  background-color: var(--brand-50);
}

/* =====================================================================
   ROOFLINE DIVIDERS & SECTION VARIANTS
   ===================================================================== */
.roofline,
.roofline-alt {
  height: 3px;
  width: 56px;
  margin: 0 auto;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-400), transparent);
}

.roofline-alt {
  margin: 0;
  background: linear-gradient(90deg, var(--brand-400), transparent);
}

.section-sand {
  background: var(--cream-dark);
}

.section-invert {
  background: linear-gradient(155deg, var(--brand-950), var(--brand-800));
  color: rgba(255,255,255,.82);
}
.section-invert h2 { color: var(--white); }
.section-invert p { color: rgba(255,255,255,.68); }

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =====================================================================
   RESPONSIVE FINE-TUNING
   ===================================================================== */
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .container { padding: 0 18px; }
  h1 { line-height: 1.15; }
  .page-hero { padding: 40px 0 34px; }
  table.table { font-size: .86rem; }
}
