/* =========================================================
   MACH HOTEL — PREMIUM GLOBAL THEME (FINAL - CLEANED)
   Path: public/assets/css/theme.css
   Dark default + Light toggle
   ========================================================= */

/* =========================
   THEME TOKENS
   ========================= */
:root{
  --bg:#0b0f14;
  --bg2:#070a0e;
  --soft:#0f1620;

  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.10);
  --cardSolid:#101826;

  --border: rgba(255,255,255,.10);
  --border2: rgba(255,255,255,.14);

  --shadow-sm: 0 12px 40px rgba(0,0,0,.20);
  --shadow: 0 16px 60px rgba(0,0,0,.35);

  --text: rgba(255,255,255,.92);
  --text2: rgba(255,255,255,.78);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.58);

  --gold:#b8923b;
  --gold2:#b8923b;
  --btnTextDark:#141414;

  --inputBg: rgba(255,255,255,.08);
  --inputBorder: rgba(255,255,255,.14);
  --inputText: rgba(255,255,255,.92);

  --r-lg:18px;
  --r-md:14px;
  --r-pill:999px;
}

/* LIGHT MODE */
html[data-theme="light"]{
  --bg:#ffffff;
  --bg2:#f6f7fb;
  --soft:#f2f4f8;

  --card: rgba(13,18,26,.04);
  --card2: rgba(13,18,26,.06);
  --cardSolid:#ffffff;

  --border: rgba(13,18,26,.12);
  --border2: rgba(13,18,26,.16);

  --shadow-sm: 0 12px 40px rgba(13,18,26,.10);
  --shadow: 0 16px 50px rgba(13,18,26,.10);

  --text: rgba(13,18,26,.92);
  --text2: rgba(13,18,26,.74);
  --muted: rgba(13,18,26,.62);
  --muted2: rgba(13,18,26,.52);

  --inputBg: rgba(13,18,26,.04);
  --inputBorder: rgba(13,18,26,.14);
  --inputText: rgba(13,18,26,.92);
}

/* =========================
   BASE
   ========================= */
*{ font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

html, body{
  background: var(--bg);
  color: var(--text);
  max-width: 100%;
  overflow-x: hidden;
}

a{ color: inherit; }
a:hover{ color: var(--gold); }

.text-muted{ color: var(--muted) !important; }
.text-white-75{ color: var(--muted) !important; }
.text-white-50{ color: var(--muted2) !important; }
html[data-theme="light"] .text-white{ color: var(--text) !important; }

img, iframe{ max-width: 100%; }

:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(215,180,106,.30);
  border-radius: 10px;
}

/* =========================
   NAVBAR
   ========================= */
.nav-glass{
  background: rgba(10,14,20,.55);
  -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .nav-glass{
  background: rgba(255,255,255,.72);
}

.nav-glass .nav-link{ color: rgba(255,255,255,.78) !important; }
.nav-glass .nav-link.active{ color: rgba(255,255,255,.95) !important; }

html[data-theme="light"] .nav-glass .nav-link{ color: rgba(13,18,26,.72) !important; }
html[data-theme="light"] .nav-glass .nav-link.active{ color: rgba(13,18,26,.92) !important; }

.brand-logo{
  height:44px;width:44px;border-radius:50%;
  background:#fff;padding:4px;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

html[data-theme="light"] .brand-dot{ color: #b8923b !important; }
html[data-theme="dark"] .brand-dot{ color: #b8923b !important; }


.navbar-toggler{
  border-color: rgba(13,18,26,.25) !important;
}
html[data-theme="dark"] .navbar-toggler{
  border-color: rgba(255,255,255,.35) !important;
}
/* ✅ make the hamburger icon visible in both themes */
.navbar-toggler-icon{ filter: none; }
html[data-theme="dark"] .navbar-toggler-icon{ filter: invert(1) brightness(2); }

/* =========================
   BUTTONS
   ========================= */
.btn{ border-radius: var(--r-md) !important; }

.btn-gold{
  background: linear-gradient(135deg,var(--gold),var(--gold2));
  border:0;
  color:var(--btnTextDark);
  font-weight:900;
  letter-spacing:.25px;
  box-shadow:0 14px 34px rgba(215,180,106,.28);
}
.btn-gold:hover{ transform:translateY(-1px); }

.btn-outline-light{
  border-color: rgba(255,255,255,.55) !important;
}
html[data-theme="light"] .btn-outline-light{
  border-color: rgba(13,18,26,.18) !important;
  color: rgba(13,18,26,.88) !important;
}

/* =========================
   HERO
   ========================= */
.hero-lux{
  min-height:72vh;
  display:flex;
  align-items:center;
  border-radius:0 0 28px 28px;
  overflow:hidden;
}

.hero-lux,
.hero-lux *{
  color: rgba(255,255,255,.92);
}

html[data-theme="dark"] .hero-lux{
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(215,180,106,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.82)),
    url("/images/hero/mach_front_view.webp");
  background-size:cover;
  background-position:center;
}

html[data-theme="light"] .hero-lux{
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(215,180,106,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.45)),
    url("/images/hero/mach_front_view.webp");
  background-size:cover;
  background-position:center;
}

.badge-soft{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:.5rem .75rem;
}

.text-gold{
  color:#b8923b;
}
/* =========================
   CARDS (GLOBAL)
   ========================= */
.card,
.search-card,
.feature-card,
.room-card,
.glass-card{
  border-radius: var(--r-lg);
  border:1px solid var(--border);
  position:relative;
}

.search-card,
.room-card{
  background: var(--cardSolid);
  box-shadow: var(--shadow);
}

.feature-card{
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.glass-card{
  background: rgba(16,24,38,.55);
  -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);

}

.room-card{
  display:block;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}
.room-card:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 70px rgba(0,0,0,.26);
}

/* =========================
   ROOM THUMB (DDR / DSR)
   ========================= */
.room-thumb{
  height:220px;
  border-bottom:1px solid var(--border);
  background:
    radial-gradient(900px 340px at 25% 0%, rgba(215,180,106,.26), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.62)),
    url("/images/rooms/rooms.webp");
  background-size:cover;
  background-position:center;
  transition:transform .6s ease;
}
.room-card:hover .room-thumb{ transform:scale(1.03); }

.room-badge{
  position:absolute;
  top:12px;left:12px;
  background: rgba(10,14,20,.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  border:1px solid rgba(255,255,255,.14);
  padding:.35rem .6rem;
  border-radius:999px;
  font-weight:900;
}

/* =========================
   INPUTS
   ========================= */
.form-control,
.form-select{
  background: var(--inputBg) !important;
  border:1px solid var(--inputBorder) !important;
  color: var(--inputText) !important;
  border-radius: var(--r-md) !important;
}
.form-control::placeholder{ color:var(--muted2) !important; }

html[data-theme="light"] .form-control,
html[data-theme="light"] .form-select{
  background:#fff !important;
}

/* =========================
   GALLERY
   ========================= */
.gallery-tile{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  cursor:pointer;
}

.gallery-tile img{
  width:100%;
  height:160px;
  object-fit:cover;
  transition:transform .6s ease;
}
.gallery-tile:hover img{ transform:scale(1.08); }

.gallery-modal-img{
  width:100%;
  max-height:80vh;
  object-fit:contain;
  border-radius:16px;
}

/* Close button always clickable */
.gallery-close-btn{ z-index:1065; }

/* =========================
   FOOTER
   ========================= */
.footer-dark{
  background:#05070a;
  border-top:1px solid var(--border);
}
html[data-theme="light"] .footer-dark{ background:#fff; }

.footer-link{ color: rgba(255,255,255,.70); }
html[data-theme="light"] .footer-link{ color: rgba(13,18,26,.70); }

footer, .footer-dark{
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

/* =========================
   MOBILE BAR
   ========================= */
.mobile-sticky-bar{
  position:fixed;
  bottom:0;left:0;right:0;
  padding:.75rem 1rem;
  background: rgba(255,255,255,.96);
  border-top:1px solid rgba(0,0,0,.08);
  z-index:1050;
  margin: 0 !important;
}
html[data-theme="dark"] .mobile-sticky-bar{
  background: rgba(16,24,38,.92);
  border-top:1px solid rgba(255,255,255,.10);
}
@media(min-width:1200px){
  .mobile-sticky-bar{ display:none; }
}

/* If sticky bar exists, avoid covering buttons */
body{ padding-bottom: 0 !important; }
body.has-stickybar{ padding-bottom: 84px !important; }

/* Optional: use stable viewport height on mobile Safari */
.min-vh-100{ min-height: calc(var(--vh, 1vh) * 100) !important; }

/* =========================================================
   RECEPTION NAVBAR — CLEAN, NON-CLUTTER, ALWAYS READABLE
   ========================================================= */
.rx-nav .navbar-brand{ min-width: 0; }

.rx-brand-text{
  min-width: 0;
  max-width: 320px;
}
@media (min-width: 1200px){
  .rx-brand-text{ max-width: 360px; }
}

.rx-brand-title,
.rx-brand-sub,
.rx-brand-name{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html[data-theme="dark"] .rx-brand-name{ color: rgba(255,255,255,.92); }

.rx-role-badge{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
html[data-theme="light"] .rx-role-badge{
  background: rgba(13,18,26,.06);
  border: 1px solid rgba(13,18,26,.14);
  color: rgba(13,18,26,.92);
}

.rx-brand-sub{ color: rgba(255,255,255,.62); }
html[data-theme="light"] .rx-brand-sub{ color: rgba(13,18,26,.62); }

.rx-nav .nav-link{
  color: rgba(255,255,255,.78) !important;
  border-radius: 999px;
  padding: .55rem .85rem;
  font-weight: 900;
  letter-spacing: .1px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.rx-nav .nav-link:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
  color: rgba(255,255,255,.92) !important;
}
.rx-nav .nav-link.active{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

html[data-theme="light"] .rx-nav .nav-link{ color: rgba(13,18,26,.74) !important; }
html[data-theme="light"] .rx-nav .nav-link:hover{
  background: rgba(13,18,26,.06);
  border-color: rgba(13,18,26,.12);
  color: rgba(13,18,26,.92) !important;
}
html[data-theme="light"] .rx-nav .nav-link.active{
  background: rgba(13,18,26,.08);
  border-color: rgba(13,18,26,.12);
  color: rgba(13,18,26,.92) !important;
  box-shadow: 0 10px 26px rgba(13,18,26,.08);
}

.rx-actions{ flex-wrap: nowrap; }
@media (max-width: 991.98px){
  .rx-actions{
    margin-top: .5rem;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Dropdown menu premium + readable in both modes */
.rx-dd{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(16,24,38,.95);
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
}
html[data-theme="light"] .rx-dd{
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 60px rgba(13,18,26,.14);
}

.rx-dd .dropdown-item{
  font-weight: 800;
  color: rgba(255,255,255,.88);
  padding: .6rem .9rem;
}
.rx-dd .dropdown-item:hover{ background: rgba(255,255,255,.08); }
html[data-theme="light"] .rx-dd .dropdown-item{ color: rgba(13,18,26,.88); }
html[data-theme="light"] .rx-dd .dropdown-item:hover{ background: rgba(13,18,26,.06); }

.rx-dd-muted{ color: rgba(255,255,255,.65) !important; }
html[data-theme="light"] .rx-dd-muted{ color: rgba(13,18,26,.62) !important; }

.rx-dd .dropdown-divider{ border-color: rgba(255,255,255,.12); }
html[data-theme="light"] .rx-dd .dropdown-divider{ border-color: rgba(13,18,26,.12); }

@media (max-width: 991.98px){
  .rx-nav .navbar-collapse{ padding-top: .5rem; }
  .rx-nav .navbar-nav{ gap: .35rem; }
}

.rx-nav .btn-outline-danger{
  border-radius: 14px !important;
  font-weight: 900;
}

/* =========================================================
   GLOBAL FORM + DROPDOWN VISIBILITY FIX (DARK MODE)
   ========================================================= */
html[data-theme="dark"]{
  --bs-body-color: rgba(255,255,255,.92);
  --bs-secondary-color: rgba(255,255,255,.68);
  --bs-border-color: rgba(255,255,255,.14);
  --bs-body-bg: #0b0f14;
}

html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select,
html[data-theme="dark"] textarea.form-control{
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.92) !important;
}

html[data-theme="dark"] .form-control::placeholder,
html[data-theme="dark"] textarea.form-control::placeholder{
  color: rgba(255,255,255,.55) !important;
}

html[data-theme="dark"] .form-control:focus,
html[data-theme="dark"] .form-select:focus,
html[data-theme="dark"] textarea.form-control:focus{
  border-color: rgba(215,180,106,.55) !important;
  box-shadow: 0 0 0 .25rem rgba(215,180,106,.22) !important;
  background: rgba(255,255,255,.08) !important;
}

html[data-theme="dark"] select.form-select option{
  background: #0f172a;
  color: rgba(255,255,255,.92);
}
html[data-theme="dark"] select.form-select{ color-scheme: dark; }

html[data-theme="light"] .form-label{ color: #0f172a; }

html[data-theme="dark"] .input-group-text{
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.80) !important;
}

/* Bootstrap dropdown menus */
html[data-theme="dark"] .dropdown-menu{
  background: rgba(16,24,38,.96) !important;
  border-color: rgba(255,255,255,.14) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.35) !important;
}
html[data-theme="dark"] .dropdown-item{ color: rgba(255,255,255,.88) !important; }
html[data-theme="dark"] .dropdown-item:hover,
html[data-theme="dark"] .dropdown-item:focus{
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.95) !important;
}
html[data-theme="dark"] .dropdown-divider{ border-color: rgba(255,255,255,.12) !important; }
html[data-theme="dark"] .dropdown-item.disabled,
html[data-theme="dark"] .dropdown-item:disabled{
  color: rgba(255,255,255,.45) !important;
}

/* =========================================================
   GLOBAL TABLES — PREMIUM + READABLE (LIGHT/DARK)
   ========================================================= */
.table-premium-wrap,
.table-responsive{
  border-radius: 18px;
  overflow: hidden;
}

.table{
  color: var(--text) !important;
  border-color: var(--border) !important;
}

/* Cells + borders */
.table > :not(caption) > * > *{
  background-color: transparent !important;
  border-color: var(--border) !important;
  vertical-align: middle;
}

/* Header (sticky + glass) */
.table thead th{
  position: sticky;
  top: 0;
  z-index: 2;

  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text2) !important;

  background: rgba(16,24,38,.82) !important;
  background: rgba(15, 22, 32, 0.85); /* fallback */
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border) !important;
}
html[data-theme="light"] .table thead th{
  background: rgba(255,255,255,.92) !important;
  color: rgba(13,18,26,.72) !important;
}

.table tbody tr{ transition: background .12s ease, transform .12s ease; }

.table-striped > tbody > tr:nth-of-type(odd){
  background: rgba(255,255,255,.03) !important;
}
html[data-theme="light"] .table-striped > tbody > tr:nth-of-type(odd){
  background: rgba(13,18,26,.02) !important;
}

.table-hover > tbody > tr:hover{
  background: rgba(215,180,106,.08) !important;
}
html[data-theme="light"] .table-hover > tbody > tr:hover{
  background: rgba(215,180,106,.10) !important;
}

.table a{
  color: var(--text) !important;
  text-decoration: none;
}
.table a:hover{
  color: var(--gold) !important;
  text-decoration: underline;
}

.table .badge,
.table .rx-badge,
.table .badge-pill{
  border-radius: 999px;
}

/* =========================================================
   RECEPTION TABLES (rx-table / table-premium)
   ========================================================= */
.rx-table,
.table-premium{
  color: var(--text) !important;
}

.rx-table thead th,
.table-premium thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(16,24,38,.88) !important;
  -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);

  color: rgba(255,255,255,.88) !important;
  border-bottom: 1px solid var(--border) !important;
}
html[data-theme="light"] .rx-table thead th,
html[data-theme="light"] .table-premium thead th{
  background: rgba(255,255,255,.95) !important;
  color: rgba(13,18,26,.74) !important;
}

.rx-table tbody tr:hover,
.table-premium tbody tr:hover{
  background: rgba(215,180,106,.08) !important;
}
html[data-theme="light"] .rx-table tbody tr:hover,
html[data-theme="light"] .table-premium tbody tr:hover{
  background: rgba(215,180,106,.10) !important;
}

/* Table shell card look */
.table-wrap,
.rx-table-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cardSolid);
  box-shadow: var(--shadow);
}
html[data-theme="light"] .table-wrap,
html[data-theme="light"] .rx-table-card{
  background: #fff;
}

html[data-theme="dark"] .fw-semibold{
 color:#fff
}

html[data-theme="dark"] .rx-col-room{
 color:#fff
}

html[data-theme="dark"] .rx-col-status{
 color:#fff
}


html[data-theme="dark"] .btn-outline-dark{
 color:#fff
}


/* =========================================================
   GLOBAL TABLE SCROLL — MOBILE & DESKTOP (PREMIUM)
   ========================================================= */
.table-responsive,
.rx-table-responsive,
.table-scroll{
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
/* Smooth scrolling for iOS (safe fallback elsewhere) */
@supports (-webkit-overflow-scrolling: touch) {
  .your-scroll-container {
    -webkit-overflow-scrolling: touch;
  }
}

  max-width: 100%;
}

.table,
.rx-table{
  min-width: 820px;
}

@media (min-width: 992px){
  .table,
  .rx-table{ min-width: 100%; }
}

/* Scrollbar styling — premium */
.table-responsive::-webkit-scrollbar,
.rx-table-responsive::-webkit-scrollbar{ height: 10px; }

.table-responsive::-webkit-scrollbar-thumb,
.rx-table-responsive::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.16);
  border-radius: 999px;
}
html[data-theme="light"] .table-responsive::-webkit-scrollbar-thumb,
html[data-theme="light"] .rx-table-responsive::-webkit-scrollbar-thumb{
  background: rgba(13,18,26,.20);
}

/* Reception Navbar polish */
.rx-nav .navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 14px;
}
.rx-nav .navbar-toggler:focus { box-shadow: none; }

.rx-nav .nav-link {
  border-radius: 14px;
  padding: .55rem .75rem;
}
.rx-nav .nav-link.active {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.rx-nav .dropdown-menu.rx-dd {
  border-radius: 16px;
  overflow: hidden;
}


/* =========================================================
   FLASH MESSAGES / ALERTS — HIGH CONTRAST (LIGHT/DARK)
   ========================================================= */
.alert{
  border-radius: 16px !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
}

/* DARK MODE */
html[data-theme="dark"] .alert{
  background: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.92) !important;
  border-color: rgba(255,255,255,.14) !important;
}
html[data-theme="dark"] .alert-success{
  background: rgba(18,190,117,.16) !important;
  border-color: rgba(18,190,117,.34) !important;
  color: rgba(220,255,240,.95) !important;
}
html[data-theme="dark"] .alert-danger{
  background: rgba(255,77,79,.16) !important;
  border-color: rgba(255,77,79,.34) !important;
  color: rgba(255,230,230,.95) !important;
}
html[data-theme="dark"] .alert-warning{
  background: rgba(255,193,7,.18) !important;
  border-color: rgba(255,193,7,.36) !important;
  color: rgba(255,245,210,.96) !important;
}
html[data-theme="dark"] .alert-info{
  background: rgba(84,130,255,.16) !important;
  border-color: rgba(84,130,255,.34) !important;
  color: rgba(230,238,255,.95) !important;
}
html[data-theme="dark"] .alert a{
  color: rgba(255,255,255,.95) !important;
  text-decoration: underline;
}

/* LIGHT MODE */
html[data-theme="light"] .alert{
  background: rgba(13,18,26,.04) !important;
  color: rgba(13,18,26,.92) !important;
  border-color: rgba(13,18,26,.12) !important;
}
html[data-theme="light"] .alert-success{
  background: rgba(18,190,117,.10) !important;
  border-color: rgba(18,190,117,.22) !important;
}
html[data-theme="light"] .alert-danger{
  background: rgba(255,77,79,.10) !important;
  border-color: rgba(255,77,79,.22) !important;
}
html[data-theme="light"] .alert-warning{
  background: rgba(255,193,7,.12) !important;
  border-color: rgba(255,193,7,.26) !important;
}
html[data-theme="light"] .alert-info{
  background: rgba(84,130,255,.10) !important;
  border-color: rgba(84,130,255,.22) !important;
}

/* =========================================================
   CONTACT PAGE MAP POLISH
   ========================================================= */
.map-shell{
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.map-shell iframe{
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 576px){
  .map-shell,
  .map-shell iframe{ min-height: 340px; }
}

.map-overlay{
  position:absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  pointer-events: none;
}

.map-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.45rem .7rem;
  border-radius: 999px;
  background: rgba(10,14,20,.55);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

}
html[data-theme="light"] .map-chip{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(13,18,26,.12);
  color: rgba(13,18,26,.90);
}

/* Contact card: prevent mobile overflow/cropping */
.contact-card{ overflow: visible; }

/* =========================================================
   HOME CARDS — PREMIUM POP (FAST, GPU-FRIENDLY)
   (DEDUPED: kept ONE authoritative version)
   ========================================================= */
.search-card,
.feature-card,
.room-card,
.glass-card{
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
}

.search-card::before,
.feature-card::before,
.room-card::before,
.glass-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  pointer-events:none;
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(215,180,106,.18), transparent 55%),
    radial-gradient(700px 240px at 80% 0%, rgba(84,130,255,.12), transparent 55%);
  opacity: .55;
  filter: blur(6px);
  transform: translateZ(0);
}

.search-card::after,
.feature-card::after,
.room-card::after,
.glass-card::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width: 65%;
  height: 160%;
  pointer-events:none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.10) 45%, transparent 75%);
  opacity: .0;
  transform: rotate(18deg);
  transition: opacity .18s ease, transform .45s ease;
}

@media (hover:hover) and (pointer:fine){
  .search-card:hover,
  .feature-card:hover,
  .glass-card:hover{
    transform: translateY(-3px);
    border-color: rgba(215,180,106,.32);
    box-shadow: 0 22px 70px rgba(0,0,0,.28);
    filter: saturate(1.02);
  }

  .room-card:hover{
    transform: translateY(-4px);
    border-color: rgba(215,180,106,.34);
    box-shadow: 0 26px 80px rgba(0,0,0,.30);
  }

  .search-card:hover::after,
  .feature-card:hover::after,
  .room-card:hover::after,
  .glass-card:hover::after{
    opacity: .85;
    transform: translateX(140%) rotate(18deg);
  }

  .feature-card i,
  .search-card i{
    transition: transform .18s ease, filter .18s ease;
  }
  .feature-card:hover i,
  .search-card:hover i{
    transform: translateY(-1px) scale(1.04);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.20));
  }
}

@media (prefers-reduced-motion: reduce){
  .search-card,
  .feature-card,
  .room-card,
  .glass-card{ transition: none !important; }
  .search-card::after,
  .feature-card::after,
  .room-card::after,
  .glass-card::after{ display:none !important; }
}

html[data-theme="light"] .search-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .room-card,
html[data-theme="light"] .glass-card{
  border-color: rgba(13,18,26,.14);
}

/* =========================================================
   MOBILE: CLASSY STATIC PREMIUM (NO ANIMATIONS NEEDED)
   ========================================================= */
@media (max-width: 576px){
  .search-card, .feature-card, .room-card, .glass-card{
    border-color: rgba(215,180,106,.16);
    box-shadow: 0 14px 44px rgba(0,0,0,.22);
  }

  html[data-theme="light"] .search-card,
  html[data-theme="light"] .feature-card,
  html[data-theme="light"] .room-card,
  html[data-theme="light"] .glass-card{
    box-shadow: 0 14px 44px rgba(13,18,26,.10);
    border-color: rgba(13,18,26,.14);
  }

  .card-kicker{ font-size: .72rem; }
  .card-titlex{ font-size: 1.02rem; }
  .card-metax{ font-size: .90rem; }

  .card-icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}

/* =========================================================
   GOLDEN UNIVERSAL ACCENT — GLOBAL POLISH (SAFE ADD-ON)
   Purpose: make gold feel intentional everywhere
   No layout changes. No overrides of working logic.
   ========================================================= */

/* ACTIVE / CURRENT STATES */
.nav-link.active,
.page-item.active .page-link,
.list-group-item.active{
  color: var(--gold) !important;
  background: rgba(215,180,106,.12) !important;
  border-color: rgba(215,180,106,.28) !important;
}

/* HOVER INTENT (links, icons, subtle CTAs) */
a:hover,
a:focus-visible{
  text-decoration: none;
}

/* ICONS THAT MATTER */
i.text-primary,
.icon-accent,
.feature-card i,
.search-card i{
  color: var(--gold);
}

/* FORM FOCUS — GOLD = INTERACTION FEEDBACK */
.form-control:focus,
.form-select:focus,
textarea:focus{
  border-color: rgba(215,180,106,.55) !important;
  box-shadow: 0 0 0 .25rem rgba(215,180,106,.22) !important;
}

/* BADGES / STATUS PILLS */
.badge.bg-primary,
.badge-gold,
.status-gold{
  background: linear-gradient(135deg,var(--gold),var(--gold2)) !important;
  color: var(--btnTextDark) !important;
  font-weight: 900;
  border: none;
}

/* TABLE HIGHLIGHTS (important rows / actions) */
.table-hover tbody tr:hover td:first-child{
  color: var(--gold);
  font-weight: 700;
}

/* PAGINATION */
.page-link{
  color: var(--text);
  border-radius: 12px;
}
.page-link:hover{
  color: var(--gold);
  background: rgba(215,180,106,.10);
}
.page-item.active .page-link{
  background: linear-gradient(135deg,var(--gold),var(--gold2)) !important;
  color: var(--btnTextDark) !important;
  border: none;
}

/* DROPDOWN SELECTED ITEM */
.dropdown-item.active,
.dropdown-item:active{
  background: rgba(215,180,106,.18) !important;
  color: var(--gold) !important;
  font-weight: 800;
}

/* SUBTLE GOLD SEPARATOR (HEADINGS / SECTIONS) */
.section-title::after,
.divider-gold{
  content:"";
  display:block;
  width:48px;
  height:3px;
  margin-top:.5rem;
  border-radius:999px;
  background: linear-gradient(90deg,var(--gold),transparent);
}

/* SCROLLBAR ACCENT (DESKTOP ONLY, PREMIUM FEEL) */
@media (hover:hover){
  ::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg,var(--gold),var(--gold2));
  }
}

/* ============================
   Flatpickr Premium Skin
   ============================ */
.flatpickr-calendar{
  border: 1px solid var(--border);
  background: rgba(18, 23, 34, .96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  border-radius: 18px;
  overflow: hidden;
}
.flatpickr-months{
  border-bottom: 1px solid var(--border);
}
.flatpickr-current-month,
.flatpickr-weekday,
.flatpickr-day{
  color: rgba(255,255,255,.92);
}
.flatpickr-day:hover{
  background: rgba(255,215,128,.18);
  border-color: rgba(255,215,128,.35);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange{
  background: rgba(255,215,128,.35);
  border-color: rgba(255,215,128,.75);
  color: #fff;
}
.flatpickr-day.disabled,
.flatpickr-day.prevMonthDay.disabled,
.flatpickr-day.nextMonthDay.disabled{
  opacity: .25;
  cursor: not-allowed;
}
.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm{
  color: rgba(255,255,255,.9);
}


/* =========================
   PREMIUM FOOTER (MACH HOTEL)
   ========================= */

.footer-dark{
  position: relative;
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(214,167,94,.18), transparent 55%),
    radial-gradient(900px 420px at 95% 0%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.08));
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-brand-name{
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;
}

.footer-muted{
  color: rgba(255,255,255,.62) !important;
}

.footer-title{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .6rem;
  letter-spacing: .2px;
}

.footer-list li{
  margin-bottom: .55rem;
  line-height: 1.25rem;
}
.footer-list li:last-child{ margin-bottom: 0; }

.footer-link{
  color: rgba(255,255,255,.70);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-link:hover{
  color: rgba(255,255,255,.95);
  opacity: 1;
  transform: translateY(-1px);
}

/* ✅ FIX: brand dot visibility */
.brand-dot{
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe6b5, #d6a75e 55%, #8a6a2b 100%);
  box-shadow:
    0 0 0 3px rgba(214,167,94,.16),
    0 10px 22px rgba(0,0,0,.35);
  flex: 0 0 auto;
}

/* Icon pills */
.icon-pill{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-pill:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(214,167,94,.35);
}

/* CTA button normalize inside footer */
.footer-cta{
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

/* Trust card (glass) */
.footer-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

/* Help button */
.footer-help{
  border-radius: 12px;
  padding: .55rem .8rem;
}

/* Divider */
.footer-hr{
  border-color: rgba(255,255,255,.12) !important;
  opacity: 1;
}

/* Bottom row: premium + responsive */
.footer-bottom{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}

.footer-quote{
  justify-self: start;
  opacity: .85;
}

.footer-staff{
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.footer-copy{
  justify-self: end;
  opacity: .85;
}

.dot-sep{
  opacity: .55;
}

/* Mobile */
@media (max-width: 767.98px){
  .footer-bottom{
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .footer-staff{ justify-self: start; }
  .footer-copy{ justify-self: start; }
}


/* =========================
   FOOTER — LIGHT MODE FIX
   ========================= */

[data-theme="light"] .footer-dark{
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(214,167,94,.10), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6f7f9);
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Text */
[data-theme="light"] .footer-dark,
[data-theme="light"] .footer-dark .footer-brand-name{
  color: #0b0f14;
}

[data-theme="light"] .footer-muted{
  color: rgba(0,0,0,.60) !important;
}

[data-theme="light"] .footer-title{
  color: #0b0f14;
}

[data-theme="light"] .footer-link{
  color: rgba(0,0,0,.65);
}
[data-theme="light"] .footer-link:hover{
  color: #0b0f14;
}

/* Brand dot (still gold, but softer) */
[data-theme="light"] .brand-dot{
  box-shadow:
    0 0 0 3px rgba(214,167,94,.18),
    0 8px 18px rgba(0,0,0,.15);
}

/* Icon pills */
[data-theme="light"] .icon-pill{
  color: #0b0f14;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
[data-theme="light"] .icon-pill:hover{
  background: rgba(214,167,94,.18);
  border-color: rgba(214,167,94,.45);
}

/* Glass card */
[data-theme="light"] .footer-card{
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
[data-theme="light"] .footer-card *{
  color: #0b0f14;
}

/* Staff pill */
[data-theme="light"] .footer-staff{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.12);
}

/* Divider */
[data-theme="light"] .footer-hr{
  border-color: rgba(0,0,0,.10) !important;
}

