/* ============================================================
   The O2 Hotels & Restaurant - Premium CSS
   ============================================================ */

:root {
  --primary: #0a0a0a;
  --secondary: #141414;
  --accent: #e8800a;
  --accent-light: #f5a342;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --light-gray: #e8e8e8;
  --gray: #888888;
  --dark-gray: #333333;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  animation: pulse 1.5s ease-in-out infinite;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 4px;
}
.preloader-bar {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  animation: loadBar 2s ease-in-out;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 55px; width: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 10px;
}
.nav-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  padding: 8px 14px; position: relative; transition: var(--transition);
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px; background: var(--accent);
  transform: translateX(-50%); transition: width 0.3s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 60%; }
.nav-track-btn {
  background: rgba(139,92,246,0.12) !important;
  color: #a78bfa !important;
  border: 1px solid rgba(139,92,246,0.3) !important;
  padding: 10px 16px !important;
  border-radius: 4px !important;
  display: flex !important; align-items: center !important; gap: 6px !important;
  transition: all 0.3s !important;
}
.nav-track-btn:hover, .nav-track-btn.active { background: #8b5cf6 !important; color: #fff !important; border-color: #8b5cf6 !important; }
.nav-track-btn::after { display: none !important; }

.nav-rst-btn {
  background: rgba(34,197,94,0.12) !important;
  color: #22c55e !important;
  border: 1px solid rgba(34,197,94,0.3) !important;
  padding: 10px 18px !important;
  border-radius: 4px !important;
  display: flex !important; align-items: center !important; gap: 6px !important;
  transition: all 0.3s !important;
}
.nav-rst-btn:hover, .nav-rst-btn.active { background: #22c55e !important; color: #000 !important; border-color: #22c55e !important; }
.nav-rst-btn::after { display: none !important; }
.nav-book-btn {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  letter-spacing: 1px !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition) !important;
}
.nav-book-btn:hover { background: var(--accent-light) !important; transform: translateY(-2px); }
.nav-book-btn::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 25px; height: 2px; background: var(--white);
  transition: var(--transition); display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
}
.swiper-hero { width: 100%; height: 100%; }
.swiper-hero .swiper-slide {
  position: relative; overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%
  );
}
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 120px 180px; /* extra bottom padding so text doesn't hide behind booking bar */
  max-width: 800px;
}
.slide-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px; margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s ease 0.3s;
}
.swiper-slide-active .slide-badge { opacity: 1; transform: translateY(0); }
.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s ease 0.5s;
}
.swiper-slide-active .slide-title { opacity: 1; transform: translateY(0); }
.slide-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 500px; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s ease 0.7s;
}
.swiper-slide-active .slide-subtitle { opacity: 1; transform: translateY(0); }
.slide-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 40px;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: var(--transition);
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s ease 0.9s, background 0.3s ease, transform 0.3s ease;
}
.swiper-slide-active .slide-btn { opacity: 1; transform: translateY(0); }
.slide-btn:hover { background: var(--accent-light); transform: translateY(-3px) !important; }

.hero-scroll-indicator {
  position: absolute; bottom: 16px; right: 40px; z-index: 25;
  display: flex; flex-direction: row; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); animation: bounce 2s infinite;
}
.scroll-line {
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

.swiper-hero-pagination .swiper-pagination-bullet {
  width: 30px; height: 3px; border-radius: 0;
  background: rgba(255,255,255,0.4); opacity: 1;
  transition: var(--transition);
}
.swiper-hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent); width: 60px;
}
.swiper-hero-pagination {
  bottom: 16px !important; left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important; text-align: center;
  display: flex; gap: 6px;
}

/* Hero navigation arrows */
.swiper-hero-prev,
.swiper-hero-next {
  position: absolute; top: 50%; z-index: 50;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.25s;
  user-select: none;
}
.swiper-hero-prev { left: 20px; }
.swiper-hero-next { right: 20px; }
.swiper-hero-prev:hover,
.swiper-hero-next:hover { background: var(--accent); border-color: var(--accent); }
.swiper-hero-prev.swiper-button-disabled,
.swiper-hero-next.swiper-button-disabled { opacity: 0.3; pointer-events: none; }

/* ============================================================
   HERO BOOKING BAR
   ============================================================ */
.hero-booking-bar {
  position: relative;
  z-index: 30;
  width: 92%; max-width: 1100px;
  margin: -120px auto 0;
}
.hero-booking-inner {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232,128,10,0.35);
  border-top: 2px solid var(--accent);
  padding: 10px 22px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.hero-booking-title {
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.hero-booking-fields {
  display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap;
}

/* Shared booking field styles */
.booking-field { flex: 1; min-width: 140px; }
.booking-field label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 5px;
}
.booking-field input,
.booking-field select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 8px 12px;
  font-family: var(--font-body); font-size: 13px;
  outline: none; transition: var(--transition);
  border-radius: var(--radius);
  -webkit-appearance: none;
}
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--accent);
  background: rgba(232,128,10,0.06);
}
.booking-field select,
.rf-field select { color-scheme: dark; }
.booking-field select option,
.rf-field select option { background: #1a1a1a; color: #fff; }
/* +/- counter in hero booking bar */
.bar-counter {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); overflow: hidden; height: 34px;
}
.bar-counter button {
  width: 32px; height: 100%; background: transparent; border: none;
  color: #fff; font-size: 18px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bar-counter button:hover { background: rgba(232,128,10,0.25); color: var(--accent); }
.bar-counter span { flex:1; text-align:center; font-size:13px; font-weight:700; color:#fff; min-width:28px; }

.booking-submit {
  background: var(--accent);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 8px 26px; font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%);
  transition: var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.booking-submit:hover { background: var(--accent-light); transform: translateY(-2px); }

/* ============================================================
   SECTION STYLES
   ============================================================ */
section { padding: 100px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px; position: relative;
  padding: 0 20px;
}
.section-tag::before,
.section-tag::after {
  content: ''; position: absolute; top: 50%;
  width: 30px; height: 1px; background: var(--accent);
}
.section-tag::before { left: -30px; }
.section-tag::after { right: -30px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}
.section-title span { color: var(--accent); }
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 16px auto; border-radius: 2px;
}
.section-subtitle {
  font-size: 1rem; color: var(--gray);
  max-width: 600px; margin: 0 auto;
}
.section-left .section-title,
.section-left .section-tag,
.section-left .section-line { text-align: left; margin-left: 0; }
.section-left .section-tag::before { display: none; }

/* ============================================================
   ROOMS SECTION
   ============================================================ */
#rooms { background: var(--primary); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---- Base Card ---- */
.room-card {
  background: var(--secondary);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border-color: rgba(232,128,10,0.3);
}

/* ---- Featured (middle) card ---- */
.room-card--featured {
  border-color: rgba(232,128,10,0.35);
  box-shadow: 0 8px 40px rgba(232,128,10,0.1);
}
.room-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 36px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(232,128,10,0.3);
}
.room-featured-badge {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  background: var(--accent);
  color: #fff; font-size: 9px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100%{box-shadow:0 0 0 0 rgba(232,128,10,0.5);}
  50%{box-shadow:0 0 0 8px rgba(232,128,10,0);}
}

/* ---- Photo ---- */
.room-img-wrap {
  overflow: hidden; height: 280px; position: relative;
}
.room-card--featured .room-img-wrap { height: 310px; }
.room-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.room-card:hover .room-img-wrap img { transform: scale(1.07); }

/* Placeholder when no image */
.room-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#1a1a2e,#0f2044);
  display: flex; align-items: center; justify-content: center;
}
.room-img-placeholder i {
  font-size: 3.5rem; color: rgba(232,128,10,0.2);
}

/* Shine sweep on hover */
.room-img-shine {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.06) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.room-card:hover .room-img-shine { transform: translateX(100%); }

/* Bottom gradient on photo */
.room-img-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--secondary), transparent);
  pointer-events: none;
}

/* View Details hover label */
.room-hover-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,0.35);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.room-hover-label i { font-size: 14px; }
.room-card:hover .room-hover-label { opacity: 1; }

/* ---- Card Body ---- */
.room-card-body {
  padding: 18px 22px 20px;
}

/* Bed type pill */
.room-type-tag {
  display: inline-block; margin-bottom: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  border-bottom: 1px solid rgba(232,128,10,0.4);
  padding-bottom: 3px;
}

/* Line 1: Name */
.room-name {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 600; line-height: 1.2;
  color: var(--white); margin-bottom: 8px;
  transition: color 0.3s ease;
}
.room-card:hover .room-name { color: var(--accent-light); }

/* Line 2: Size + capacity */
.room-desc {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--gray); margin-bottom: 16px;
}
.room-desc i { color: rgba(232,128,10,0.6); font-size: 10px; }
.room-desc-dot { color: rgba(255,255,255,0.2); }

/* Price + Book */
.room-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.room-price { display: flex; align-items: baseline; gap: 4px; }
.room-price-label {
  font-size: 10px; color: var(--gray);
  letter-spacing: 1px; text-transform: uppercase;
}
.room-price-value {
  font-family: var(--font-head);
  font-size: 1.5rem; color: var(--accent); font-weight: 700; line-height: 1;
}
.room-price-night { font-size: 11px; color: var(--gray); }

.room-book-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid rgba(232,128,10,0.5);
  color: var(--accent);
  padding: 9px 18px; font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-body); flex-shrink: 0;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.room-book-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 0;
}
.room-book-btn:hover::before { transform: translateX(0); }
.room-book-btn span, .room-book-btn i { position: relative; z-index: 1; }
.room-book-btn:hover { color: var(--white); border-color: var(--accent); }
.room-book-btn i { font-size: 9px; transition: transform 0.3s ease; }
.room-book-btn:hover i { transform: translateX(4px); }

/* ---- Animated left accent line ---- */
.room-card-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.room-card:hover .room-card-line { transform: scaleY(1); }

/* Featured card always has line */
.room-card--featured .room-card-line { transform: scaleY(1); opacity: 0.5; }
.room-card--featured:hover .room-card-line { opacity: 1; }

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

/* ============================================================
   SERVICES SECTION — Premium Animated Cards
   ============================================================ */
#services {
  background: #f5f5f5;
  position: relative;
}

/* Grid — flex so last row centers automatically */
.svc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.svc-card {
  width: calc(25% - 16px);
  min-width: 220px;
  flex-shrink: 0;
}

/* ---- Card ---- */
.svc-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 38px 24px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

/* Orange fill wave from bottom on hover */
.svc-card::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0; right: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #f5a342 100%);
  border-radius: 60% 60% 0 0 / 30px 30px 0 0;
  transition: bottom 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 0;
}
.svc-card:hover::before { bottom: 0; border-radius: 0; }

/* Remove old after pseudo */
.svc-card::after { display: none; }

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(232,128,10,0.25);
  border-color: rgba(232,128,10,0.4);
}

/* Icon circle */
.svc-icon-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(232,128,10,0.1);
  border: 2px solid rgba(232,128,10,0.2);
  margin-bottom: 22px;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  z-index: 1;
}
.svc-icon-box::after { display: none !important; }
.svc-card:hover .svc-icon-box {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.1) rotate(-5deg);
}

/* Icon */
.svc-icon-box i {
  font-size: 34px;
  color: var(--accent);
  transition: color 0.35s ease, transform 0.4s ease;
  z-index: 1;
  position: relative;
}
.svc-card:hover .svc-icon-box i {
  color: #ffffff;
  transform: scale(1.1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

/* Glow — remove (replaced by fill) */
.svc-icon-glow { display: none; }

/* Title */
.svc-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  position: relative; z-index: 1;
  transition: color 0.35s ease;
}
.svc-card:hover .svc-title { color: #ffffff; }

/* Description */
.svc-desc {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: color 0.35s ease;
}
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.85); }

/* View Details link */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,128,10,0.08);
  border: 1px solid rgba(232,128,10,0.25);
  padding: 7px 18px;
  border-radius: 50px;
  position: relative; z-index: 1;
  transition: all 0.35s ease;
}
.svc-link i { font-size: 9px; transition: transform 0.35s ease; }
.svc-card:hover .svc-link {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.svc-card:hover .svc-link i { transform: translateX(5px); }

@media (max-width: 992px) {
  .svc-card { width: calc(50% - 12px); min-width: 0; }
}
@media (max-width: 576px) {
  .svc-card { width: calc(50% - 10px); min-width: 0; padding: 26px 16px 22px; border-radius: 12px; }
  .svc-icon-box { width: 64px; height: 64px; }
  .svc-icon-box i { font-size: 26px; }
  .svc-title { font-size: 0.95rem; }
}

/* ============================================================
   ABOUT / FEATURES SECTION
   ============================================================ */
#about { background: var(--primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images {
  position: relative; height: 600px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover;
  border: 4px solid var(--secondary);
}
.about-img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary);
}
.about-years {
  position: absolute; top: 50%; left: 65%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  width: 120px; height: 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; z-index: 10;
}
.about-years-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-years-text { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.about-text .section-header { text-align: left; margin-bottom: 30px; }
.about-text .section-line { margin-left: 0; }
.about-desc { color: var(--gray); margin-bottom: 30px; font-size: 0.95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.about-feat-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.feat-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(232,128,10,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon i { color: var(--accent); font-size: 16px; }
.feat-text h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.feat-text p { font-size: 0.8rem; color: var(--gray); }
.about-stats {
  display: flex; gap: 40px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head); font-size: 2.5rem;
  color: var(--accent); font-weight: 700;
}
.stat-label { font-size: 12px; color: var(--gray); letter-spacing: 1px; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery { background: var(--secondary); }
.gallery-filter {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 50px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray); padding: 8px 24px;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent); background: rgba(232,128,10,0.08);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
  transition: var(--transition);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(232,128,10,0.3); }
.gallery-zoom {
  color: var(--white); font-size: 2rem;
  opacity: 0; transform: scale(0.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.97);
  align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img, #lightbox video { max-width: 90vw; max-height: 90vh; object-fit: contain; }
#lightbox-close {
  position: absolute; top: 20px; right: 20px;
  color: var(--white); font-size: 2rem; cursor: pointer;
  width: 50px; height: 50px; display: flex; align-items: center;
  justify-content: center; background: rgba(255,255,255,0.1);
  transition: var(--transition);
}
#lightbox-close:hover { background: var(--accent); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--primary); }
.testimonials-bg {
  position: relative; overflow: hidden;
  padding: 80px 0;
}
.swiper-testimonials { padding: 20px 0 60px !important; }
.testimonial-card {
  background: var(--secondary);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px; position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(232,128,10,0.2);
  transform: translateY(-5px);
}
.testimonial-quote {
  font-size: 4rem; line-height: 1;
  color: var(--accent); opacity: 0.3;
  font-family: var(--font-head);
  position: absolute; top: 20px; right: 30px;
}
.testimonial-stars { color: var(--gold); margin-bottom: 20px; }
.testimonial-text {
  color: rgba(255,255,255,0.75); font-size: 0.95rem;
  font-style: italic; line-height: 1.8; margin-bottom: 25px;
}
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar {
  width: 55px; height: 55px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--accent);
  background: rgba(232,128,10,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.5rem; color: var(--accent);
  overflow: hidden;
}
.author-info .name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.author-info .designation { font-size: 0.8rem; color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand img { height: 50px; margin-bottom: 20px; }
.footer-about { color: var(--gray); font-size: 0.875rem; line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 14px;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--white); margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--gray); font-size: 0.875rem;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1rem; }
.footer-contact li {
  display: flex; gap: 14px;
  color: var(--gray); font-size: 0.875rem;
  margin-bottom: 16px; align-items: flex-start;
}
.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: var(--gray); transition: var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 15px;
}
.footer-copy { color: var(--gray); font-size: 0.8rem; }
.footer-copy span { color: var(--accent); }
.footer-made { color: var(--gray); font-size: 0.8rem; }

/* ============================================================
   BOOKING MODAL — Premium Redesign
   ============================================================ */
#bookingModal {
  display: none; position: fixed; inset: 0; z-index: 8000;
  align-items: center; justify-content: center;
  padding: 20px;
}
#bookingModal.active { display: flex; }

/* Dark blurred overlay */
.bm-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  animation: bmOverlayIn 0.3s ease;
}
@keyframes bmOverlayIn { from{opacity:0;} to{opacity:1;} }

/* Main box — zoom in from center */
.bm-box {
  position: relative; z-index: 1;
  background: #0f1117;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(232,128,10,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,128,10,0.1);
  animation: bmZoomIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.bm-box::-webkit-scrollbar { width: 4px; }
.bm-box::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
@keyframes bmZoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Step indicator bar ---- */
.bm-steps-bar {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 24px 14px; gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bm-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: default;
}
.bm-step-dot span {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.12);
  color: var(--muted); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s;
}
.bm-step-dot.active span { background: var(--accent); border-color: var(--accent); color: #fff; }
.bm-step-dot.done span   { background: #22c55e; border-color: #22c55e; color: #fff; }
.bm-step-dot label { font-size: 9px; color: var(--muted); letter-spacing: 0.5px; white-space: nowrap; }
.bm-step-dot.active label { color: var(--accent); }
.bm-step-dot.done label   { color: #22c55e; }
.bm-step-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); margin: 0 8px; margin-bottom: 16px; min-width: 30px; }

/* ---- Step 1: Dates & Guests ---- */
.bm-step1-header { padding: 18px 24px 6px; }
.bm-step1-header h3 { font-family: var(--font-head); font-size: 1.2rem; color: #fff; margin-bottom: 3px; display:flex; align-items:center; }
.bm-step1-header p  { font-size: 12px; color: var(--gray); }
.bm-s1-body { padding: 14px 16px 0; }
.bm-date-row { display:grid; grid-template-columns:1fr auto 1fr; gap:8px; align-items:center; margin-bottom:12px; }
.bm-date-box { display:flex; flex-direction:column; gap:6px; }
.bm-date-box label { font-size:9px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,0.45); display:flex; align-items:center; gap:5px; }
.bm-date-box.ci label i { color:#22c55e; }
.bm-date-box.co label i { color:#3b82f6; }
.bm-date-box input { background:rgba(255,255,255,0.05); border:1.5px solid rgba(255,255,255,0.1); color:#fff; padding:11px 14px; border-radius:10px; font-size:14px; outline:none; transition:all 0.25s; width:100%; color-scheme:dark; font-family:var(--font-body); }
.bm-date-box.ci input:focus { border-color:#22c55e; background:rgba(34,197,94,0.05); }
.bm-date-box.co input:focus { border-color:#3b82f6; background:rgba(59,130,246,0.05); }
.bm-date-sep { font-size:18px; color:rgba(255,255,255,0.2); text-align:center; padding-top:22px; }
.bm-nights-row { display:flex; align-items:center; justify-content:center; gap:8px; background:rgba(232,128,10,0.08); border:1px solid rgba(232,128,10,0.2); border-radius:8px; padding:8px 14px; margin-bottom:14px; font-size:12px; font-weight:700; color:var(--accent); }
.bm-guest-section { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.07); border-radius:12px; padding:14px; margin-bottom:16px; }
.bm-guest-label { font-size:9px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:12px; display:flex; align-items:center; gap:6px; }
.bm-guest-label i { color:var(--accent); }
.bm-guest-row { display:flex; flex-direction:column; gap:10px; }
.bm-guest-item { display:flex; align-items:center; gap:12px; }
.bm-guest-icon { width:38px; height:38px; background:rgba(232,128,10,0.08); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.bm-guest-icon i { color:var(--accent); font-size:14px; }
.bm-guest-info { flex:1; }
.bm-guest-title { font-size:13px; font-weight:600; color:#fff; }
.bm-guest-sub   { font-size:10px; color:var(--gray); }
.bm-counter { display:flex; align-items:center; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:10px; overflow:hidden; }
.bm-cnt-btn { width:36px; height:36px; background:transparent; border:none; color:#fff; font-size:16px; cursor:pointer; transition:all 0.2s; display:flex; align-items:center; justify-content:center; font-family:var(--font-body); }
.bm-cnt-btn:hover { background:rgba(232,128,10,0.2); color:var(--accent); }
.bm-counter span { min-width:32px; text-align:center; font-size:15px; font-weight:700; color:#fff; }
.bm-summary-box { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.07); border-radius:10px; padding:14px; }
.bm-sum-row { display:flex; justify-content:space-between; align-items:center; padding:5px 0; font-size:12px; }
.bm-sum-row span { color:var(--gray); display:flex; align-items:center; gap:6px; }
.bm-sum-row i { font-size:10px; }
.bm-sum-row strong { color:#fff; font-size:12px; }
.bm-sum-divider { border-top:1px solid rgba(255,255,255,0.07); margin:8px 0; }
.bm-sum-total span { font-weight:700; color:#fff; font-size:13px; }
.bm-rooms-list { padding: 0 16px 20px; display: flex; flex-direction: column; gap: 10px; }

.bm-rooms-list { padding: 0 14px 20px; display: flex; flex-direction: column; gap: 10px; }

.bm-room-option {
  display: flex; align-items: center; gap: 14px;
  background: #ffffff; border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px; padding: 14px; cursor: pointer;
  transition: all 0.28s ease; position: relative; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.bm-room-option::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,128,10,0.05), transparent);
  opacity: 0; transition: opacity 0.28s;
}
.bm-room-option:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232,128,10,0.15);
}
.bm-room-option:hover::before { opacity: 1; }
.bm-room-option:active { transform: translateY(0) scale(0.98); }
.bm-room-disabled { cursor: not-allowed; opacity: 0.5; }
.bm-room-disabled:hover { border-color: rgba(239,68,68,0.3) !important; transform: none !important; box-shadow: none !important; }

.bm-room-opt-img {
  width: 80px; height: 70px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0; position: relative;
}
.bm-room-opt-img img { width: 100%; height: 100%; object-fit: cover; }
.bm-room-opt-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#1a1a2e,#0f2044);
  display: flex; align-items: center; justify-content: center;
}
.bm-room-opt-placeholder i { font-size: 1.5rem; color: rgba(232,128,10,0.2); }
.bm-room-opt-tag {
  position: absolute; bottom: 4px; left: 4px;
  font-size: 7px; font-weight: 800; letter-spacing: 1px;
  background: rgba(0,0,0,0.75); color: var(--accent); padding: 2px 6px; border-radius: 3px;
  text-transform: uppercase;
}
.bm-room-opt-info { flex: 1; min-width: 0; }
.bm-room-opt-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bm-room-opt-meta { display: flex; gap: 10px; font-size: 11px; color: var(--gray); margin-bottom: 5px; flex-wrap: wrap; }
.bm-room-opt-meta i { color: rgba(232,128,10,0.6); font-size: 9px; }
.bm-room-opt-ams { display: flex; gap: 6px; flex-wrap: wrap; }
.bm-room-opt-ams span { font-size: 9px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 3px; }
.bm-room-opt-ams i { color: #22c55e; font-size: 7px; }

/* Room card image */
.bm-room-opt-img { width: 88px; height: 76px; border-radius: 10px; overflow: hidden; flex-shrink: 0; position: relative; }
.bm-room-opt-img img { width: 100%; height: 100%; object-fit: cover; }
.bm-room-opt-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#f0ede8,#e8e4da); display: flex; align-items: center; justify-content: center; }
.bm-room-opt-placeholder i { font-size: 1.8rem; color: rgba(232,128,10,0.3); }
.bm-room-opt-tag { position: absolute; bottom: 4px; left: 4px; font-size: 7px; font-weight: 800; letter-spacing: 1px; background: rgba(0,0,0,0.65); color: var(--accent); padding: 2px 7px; border-radius: 4px; text-transform: uppercase; }

/* Room info */
.bm-room-opt-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: #111111; margin-bottom: 5px; }
.bm-room-opt-meta { display: flex; gap: 10px; font-size: 11px; color: #666666; margin-bottom: 5px; flex-wrap: wrap; font-weight: 600; }
.bm-room-opt-meta i { color: var(--accent); font-size: 9px; }
.bm-room-opt-ams { display: flex; gap: 6px; flex-wrap: wrap; }
.bm-room-opt-ams span { font-size: 10px; color: #555555; font-weight: 600; display: flex; align-items: center; gap: 3px; }
.bm-room-opt-ams i { color: #22c55e; font-size: 8px; }
.bm-opt-warn { font-size: 10px; color: #f59e0b; margin-top: 4px; font-weight: 600; }

/* Price block — right side */
.bm-room-opt-price { flex-shrink: 0; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.bm-opt-orig { font-family: 'Oswald', sans-serif; font-size: 12px; color: #bbbbbb; text-decoration: line-through; font-weight: 500; }
.bm-room-opt-amt { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: 0.5px; }
.bm-room-opt-night { font-size: 10px; color: #888888; font-weight: 600; margin-bottom: 8px; }
.bm-room-opt-select {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; margin-left: auto;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(232,128,10,0.3);
}
.bm-room-option:hover .bm-room-opt-select {
  background: var(--accent-light);
  transform: scale(1.15) translateX(3px);
  box-shadow: 0 5px 16px rgba(232,128,10,0.4);
}

/* Back button */
.bm-back-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; color: var(--gray);
  font-size: 12px; cursor: pointer; padding: 12px 24px 0;
  transition: color 0.2s; font-family: var(--font-body);
}
.bm-back-btn:hover { color: var(--accent); }

/* Close button */
.bm-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
}
.bm-close:hover { background: #ef4444; border-color: #ef4444; color: #fff; transform: rotate(90deg); }

/* Step 3 header */
.bm-s3-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(232,128,10,0.07), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bm-s3-label { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.bm-s3-room-info { flex: 1; }
.bm-s3-room-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #111111; }
.bm-s3-price { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--accent); letter-spacing: 0.5px; white-space: nowrap; }

/* Top header */
.bm-top {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(232,128,10,0.08) 0%, transparent 100%);
}
.bm-top-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #f5a342);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(232,128,10,0.35);
}
.bm-top-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.bm-top-room {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 700; color: #fff; line-height: 1.2;
}
.bm-top-price { font-size: 13px; color: var(--gray); margin-top: 2px; }
.bm-top-badge {
  margin-left: auto; flex-shrink: 0;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: #22c55e; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2); padding: 4px 10px;
  border-radius: 50px; display: flex; align-items: center; gap: 5px;
}

/* Live price bar */
.bm-price-bar {
  background: linear-gradient(90deg, rgba(232,128,10,0.1), rgba(232,128,10,0.05));
  border-bottom: 1px solid rgba(232,128,10,0.15);
  padding: 10px 24px; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.bm-price-total {
  font-family: var(--font-head); font-size: 1.2rem;
  font-weight: 700; color: var(--accent);
}

/* Form wrapper */
.bm-form-wrap { padding: 20px 24px 28px; }

/* Section labels */
.bm-section-label {
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.bm-section-label i { color: var(--accent); }

/* Field groups */
.bm-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.bm-field { margin-bottom: 12px; }
.bm-field label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 1px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; margin-bottom: 6px;
}
.bm-field label span { color: var(--accent); }

/* Input with icon */
.bm-input-wrap {
  position: relative; display: flex; align-items: center;
}
.bm-input-wrap > i {
  position: absolute; left: 14px; font-size: 13px;
  color: rgba(232,128,10,0.5); pointer-events: none; z-index: 1;
  transition: color 0.25s;
}
.bm-input-wrap:focus-within > i { color: var(--accent); }
.bm-input-wrap input,
.bm-input-wrap select,
.bm-input-wrap textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  color: #fff; padding: 12px 14px 12px 42px;
  font-family: var(--font-body); font-size: 14px;
  outline: none; border-radius: 10px;
  transition: all 0.25s;
  -webkit-appearance: none; color-scheme: dark;
}
.bm-input-wrap input:focus,
.bm-input-wrap select:focus,
.bm-input-wrap textarea:focus {
  border-color: var(--accent);
  background: rgba(232,128,10,0.05);
  box-shadow: 0 0 0 3px rgba(232,128,10,0.12);
}
.bm-input-wrap select option { background: #1a1a1a; }
.bm-textarea-wrap { align-items: flex-start; }
.bm-textarea-wrap > i { top: 14px; }
.bm-input-wrap textarea { resize: none; min-height: 80px; }

/* Submit button */
.bm-submit-btn {
  width: 100%; border: none; cursor: pointer;
  padding: 16px; border-radius: 12px; margin-top: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #f5a342 100%);
  font-family: var(--font-body); font-size: 14px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; box-shadow: 0 8px 24px rgba(232,128,10,0.35);
  position: relative; overflow: hidden;
}
.bm-submit-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #f5a342 0%, var(--accent) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.bm-submit-btn:hover::before { opacity: 1; }
.bm-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,128,10,0.45); }
.bm-submit-btn:active { transform: translateY(0); }
.bm-submit-btn span { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; }
.bm-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Trust badges */
.bm-trust {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 12px; flex-wrap: wrap;
}
.bm-trust span {
  font-size: 10px; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 5px; letter-spacing: 0.5px;
}
.bm-trust i { color: rgba(232,128,10,0.5); font-size: 10px; }

@media (max-width: 580px) {
  .bm-box { border-radius: 12px; }
  #bookingModal { padding: 12px; }
  .bm-row-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--secondary); border-left: 4px solid var(--accent);
  padding: 16px 20px; min-width: 300px;
  display: flex; align-items: center; gap: 12px;
  animation: toastIn 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.toast.success { border-color: #22c55e; }
.toast.error { border-color: #ef4444; }
@keyframes toastIn { from{opacity:0;transform:translateX(100%);} to{opacity:1;transform:translateX(0);} }
.toast i { font-size: 1.2rem; }
.toast.success i { color: #22c55e; }
.toast.error i { color: #ef4444; }
.toast span { font-size: 0.9rem; color: rgba(255,255,255,0.9); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 20px; z-index: 9500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}
/* Mobile — move above bottom app bar */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 9500 !important;
  }
  .whatsapp-float i { font-size: 1.4rem !important; }
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.whatsapp-float i { color: var(--white); font-size: 1.8rem; }
@keyframes whatsappPulse {
  0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.4);}
  50%{box-shadow:0 8px 50px rgba(37,211,102,0.7);}
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 130px;
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #141828 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 79px;
  border-bottom: 2px solid var(--accent);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,128,10,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-overlay { display: none; }
.page-hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.page-hero-tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
  padding: 0; margin: 0; border: none;
  animation: fadeInDown 0.5s ease both;
}
.page-hero-title {
  font-family: var(--font-head); font-size: 1.6rem;
  font-weight: 700; color: var(--white); margin: 0; line-height: 1.2;
  animation: fadeInUp 0.5s ease 0.1s both;
}
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; color: var(--gray); margin: 0;
  animation: fadeInUp 0.5s ease 0.2s both;
}
.page-breadcrumb a { color: var(--accent); transition: opacity 0.2s; }
.page-breadcrumb a:hover { opacity: 0.8; }
.page-breadcrumb i { font-size: 7px; color: rgba(255,255,255,0.2); }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backTop {
  position: fixed; bottom: 100px; right: 30px; z-index: 999;
  width: 45px; height: 45px;
  background: var(--accent);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
  cursor: pointer; transition: var(--transition);
  opacity: 0; visibility: hidden;
}
#backTop.visible { opacity: 1; visibility: visible; }
#backTop:hover { background: var(--accent-light); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none; position: fixed; inset: 0; top: 80px;
    background: rgba(10,10,10,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 20px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .slide-content { padding: 0 40px 220px; }
  .hero-booking-bar { bottom: 30px; width: 96%; }
  .hero-booking-inner { padding: 8px 16px 12px; }
  .hero-booking-fields { gap: 8px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .rooms-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .hero-booking-bar { bottom: 20px; width: 98%; }
  .hero-booking-fields { flex-direction: column; gap: 10px; }
  .hero-booking-fields .booking-field { min-width: 100%; }
  .booking-submit { width: 100%; clip-path: none; justify-content: center; }
  #hero { min-height: 700px; }
  .slide-content { padding: 0 20px 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { display: block; grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #footer { padding-bottom: 90px; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .slide-content { padding: 0 20px; }
  .slide-title { font-size: 1.8rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .nav-container { padding: 0 20px; }
  .nav-logo img { height: 40px; }
}

/* ============================================================
   AOS OVERRIDES + CUSTOM ANIMATIONS
   ============================================================ */
[data-aos] { pointer-events: auto; opacity: 1; transform: none; }
[data-aos].aos-animate { pointer-events: auto; opacity: 1; transform: none; }

/* ============================================================
   COMPREHENSIVE MOBILE / TABLET RESPONSIVE
   ============================================================ */

/* ---- Tablet (max 992px) ---- */
@media (max-width: 992px) {
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; column-gap: 20px; row-gap: 0; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 4px; }
  .footer-brand img { height: 52px; margin-bottom: 0; grid-row: 1 / 3; align-self: center; }
  .footer-brand .footer-about { margin-bottom: 10px; font-size: 0.85rem; }
  .footer-brand .footer-social { margin-top: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 280px; }
  .svc-card { width: calc(50% - 10px); min-width: 0; }
  .hero-booking-fields { gap: 8px; flex-wrap: wrap; }
  .rooms-page-grid { grid-template-columns: repeat(2,1fr); }
  .sd-layout { grid-template-columns: 1fr; }
  .sd-sidebar { position: static; }
  .tk-results { grid-template-columns: 1fr; }
  .tk-tabs { flex-direction: row; position: static; overflow-x: auto; }
  .tk-tab { flex: 1; min-width: 140px; }
  .rd-layout { grid-template-columns: 1fr; }
  .rd-right { position: static; }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  section { padding: 55px 0; }
  .nav-logo img { height: 42px; }
  #hero { min-height: 520px; }
  .slide-content { padding: 0 20px 200px; }
  .slide-title { font-size: clamp(1.5rem,6vw,2.5rem); }
  .page-hero { height: auto; min-height: 110px; }
  .page-hero-content { padding: 28px 16px; }
  .page-hero-title { font-size: 1.4rem; }
  .hero-booking-inner { padding: 10px 14px 12px; }
  .hero-booking-fields { flex-direction: column; gap: 8px; }
  .booking-field { min-width: 100%; }
  .booking-submit { width: 100%; clip-path: none; justify-content: center; border-radius: 4px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-page-grid { grid-template-columns: 1fr; }
  .rp-img-wrap { height: 200px; }
  .rp-actions { flex-direction: column; gap: 8px; }
  .rd-hero { height: auto; min-height: 120px; }
  .rd-hero-content { padding: 20px 16px; flex-direction: column; gap: 10px; }
  .rd-main-photo { height: 240px; }
  .rd-info-bar { grid-template-columns: repeat(3,1fr); }
  .rd-amenities-grid { grid-template-columns: 1fr 1fr; }
  .rd-policies { grid-template-columns: 1fr; }
  .rd-bc-field-group { grid-template-columns: 1fr; gap: 10px; }
  .svc-card { width: calc(50% - 8px); padding: 22px 14px; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
  .gallery-item:nth-child(1),.gallery-item:nth-child(4) { grid-column:span 1; grid-row:span 1; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { gap: 16px; flex-wrap: wrap; }
  .about-page-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { display: block; grid-column: auto; }
  .footer-brand img { height: 46px; margin-bottom: 16px; }
  .footer-brand .footer-about { margin-bottom: 20px; }
  .footer-top { padding: 50px 0 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  #footer { padding-bottom: 90px; }
  .rooms-filter-form { padding: 12px 16px; gap: 10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .cf-row { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 20px; }
  .reviews-page-grid { grid-template-columns: 1fr; }
  .review-summary { flex-direction: column; padding: 24px; }
  .sd-fac-grid { grid-template-columns: 1fr; }
  .sd-gallery-main { height: 240px; }
  #bookingModal { padding: 8px; }
  .bm-box { border-radius: 12px; }
  .bm-row-2 { grid-template-columns: 1fr; gap: 10px; }
  .bm-steps-bar { padding: 14px 16px 10px; }
  .bm-s1-body { padding: 10px 14px 0; }
  .rst-wrap { grid-template-columns: 1fr !important; }
  .rst-sidebar { position: static; height: auto; flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .rst-sidebar-head { display: none; }
  .rst-nav { flex-direction: row; padding: 0; }
  .rst-nav-item { flex-direction: column; gap: 3px; padding: 8px 12px; font-size: 10px; border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .rst-nav-item.active { border-left: none; border-bottom-color: var(--accent); }
  .rst-active-arr { display: none; }
  .rst-content { padding: 16px; }
  .rst-items-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .rst-item-img { height: 130px; }
  .rst-cart-panel { position: fixed; bottom: 0; left: 0; right: 0; max-height: 55vh; border-radius: 14px 14px 0 0; border-left: none; border-top: 2px solid var(--accent); z-index: 300; margin: 0; }
  .tk-tab-arr { display: none; }
  .tk-detail-grid { grid-template-columns: 1fr; }
  .tk-bar-form { flex-direction: column; gap: 8px; }
  .tk-bar-form button { width: 100%; justify-content: center; }
  .sm-box { max-width: calc(100vw - 30px); border-radius: 12px; }
  #backTop { bottom: 80px; right: 16px; }
  .rst-orders-layout { grid-template-columns: 1fr !important; }
  .bm-date-row { gap: 6px; }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 14px; }
  section { padding: 45px 0; }
  .nav-logo img { height: 36px; }
  #hero { min-height: 460px; }
  .slide-content { padding: 0 14px 230px; }
  .svc-card { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .rst-items-grid { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
  .hotel-info-bar { flex-direction: column; }
  .hib-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; padding-bottom: 10px; }
  .footer-about { font-size: 0.82rem; margin-bottom: 16px; }
  .footer-links li { margin-bottom: 8px; }
  .footer-links a { font-size: 0.82rem; }
  .footer-contact li { font-size: 0.82rem; margin-bottom: 10px; }
  .footer-top { padding: 36px 0 28px; }
  .footer-copy, .footer-made { font-size: 0.75rem; }
  .social-link { width: 36px; height: 36px; font-size: 13px; }
  .bm-box { max-height: 96vh; }
  .page-hero-tag { font-size: 8px; letter-spacing: 2px; }
  .tk-tab { min-width: 110px; }
  .tk-tab-icon { width: 28px; height: 28px; font-size: 12px; }
  .tk-tab-name { font-size: 11px; }
  .bm-date-sep { display: none; }
}

/* ---- Touch devices: remove hover animations ---- */
@media (hover: none) and (pointer: coarse) {
  .room-card:hover, .svc-card:hover, .rp-card:hover, .rst-item-card:hover { transform: none !important; box-shadow: none !important; }
  .bar-counter button, .bm-cnt-btn, .rst-qty-btn { min-width: 44px; min-height: 44px; }
}

/* ============================================================
   LIGHT THEME — White Background Override
   ============================================================ */

:root {
  --primary: #ffffff;
  --secondary: #f5f5f5;
  --shadow: 0 20px 60px rgba(0,0,0,0.08);
}

body {
  background: #ffffff;
  color: #1a1a1a;
}

::-webkit-scrollbar-track { background: #f0f0f0; }

/* Preloader */
#preloader { background: #ffffff; }
.preloader-logo { color: var(--accent); }

/* ---- Navbar — Premium Light Theme ---- */
#navbar {
  background: rgba(255,255,255,0.98) !important;
  border-bottom: 1px solid rgba(0,0,0,0.07) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94) !important;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.99) !important;
  border-bottom: 1px solid rgba(232,128,10,0.18) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.09), 0 1px 0 rgba(232,128,10,0.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  padding: 10px 0 !important;
}

/* Nav links — always dark (white bg) */
.nav-menu a {
  color: rgba(30,30,30,0.75) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 9px 14px !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
  position: relative !important;
}
#navbar.scrolled .nav-menu a { color: rgba(20,20,20,0.75) !important; }

/* Underline animation → background fill on scrolled */
.nav-menu a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 4px !important; left: 50% !important;
  width: 0 !important; height: 2px !important;
  background: var(--accent) !important;
  transform: translateX(-50%) !important;
  transition: width 0.3s ease !important;
  border-radius: 2px !important;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 55% !important; }
.nav-menu a:not(.nav-rst-btn):not(.nav-track-btn):hover {
  color: var(--accent) !important;
  background: rgba(232,128,10,0.08) !important;
}
/* Active — solid orange pill (exclude special buttons) */
.nav-menu a.active:not(.nav-rst-btn):not(.nav-track-btn) {
  color: #ffffff !important;
  background: var(--accent) !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 14px rgba(232,128,10,0.35) !important;
}
.nav-menu a.active::after { display: none !important; }
#navbar.scrolled .nav-menu a:not(.nav-rst-btn):not(.nav-track-btn):hover { color: var(--accent) !important; }
#navbar.scrolled .nav-menu a.active:not(.nav-rst-btn):not(.nav-track-btn) {
  color: #ffffff !important;
  background: var(--accent) !important;
}

/* RESTAURANT — light green default, full green on hover */
.nav-rst-btn {
  background: rgba(34,197,94,0.1) !important;
  color: #16a34a !important;
  border: 1.5px solid rgba(34,197,94,0.35) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  box-shadow: none !important;
  transition: all 0.28s ease !important;
}
.nav-rst-btn::after { display: none !important; }
.nav-menu a.nav-rst-btn:hover,
.nav-rst-btn:hover {
  background: #22c55e !important;
  color: #ffffff !important;
  border-color: #22c55e !important;
  box-shadow: 0 6px 20px rgba(34,197,94,0.4) !important;
  transform: translateY(-2px) !important;
}
.nav-rst-btn.active {
  background: #22c55e !important;
  color: #ffffff !important;
  border-color: #22c55e !important;
  box-shadow: 0 4px 14px rgba(34,197,94,0.35) !important;
}

/* TRACK — light purple default, full purple on hover */
.nav-track-btn {
  background: rgba(139,92,246,0.1) !important;
  color: #7c3aed !important;
  border: 1.5px solid rgba(139,92,246,0.3) !important;
  padding: 9px 16px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  box-shadow: none !important;
  transition: all 0.28s ease !important;
}
.nav-track-btn::after { display: none !important; }
.nav-menu a.nav-track-btn:hover,
.nav-track-btn:hover {
  background: #8b5cf6 !important;
  color: #ffffff !important;
  border-color: #8b5cf6 !important;
  box-shadow: 0 6px 20px rgba(139,92,246,0.4) !important;
  transform: translateY(-2px) !important;
}
.nav-track-btn.active {
  background: #8b5cf6 !important;
  color: #ffffff !important;
  border-color: #8b5cf6 !important;
  box-shadow: 0 4px 14px rgba(139,92,246,0.35) !important;
}

/* TRACK button */
.nav-track-btn {
  background: rgba(139,92,246,0.1) !important;
  color: #7c3aed !important;
  border: 1.5px solid rgba(139,92,246,0.3) !important;
  padding: 9px 16px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(139,92,246,0.08) !important;
}
.nav-track-btn:hover {
  background: #8b5cf6 !important;
  color: #ffffff !important;
  border-color: #8b5cf6 !important;
  box-shadow: 0 6px 20px rgba(139,92,246,0.35) !important;
  transform: translateY(-2px) !important;
}

/* Mobile hamburger — always visible */
.hamburger { display: none; }
@media (max-width: 992px) {
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    z-index: 1001 !important;
  }
  .hamburger span {
    width: 26px !important;
    height: 2.5px !important;
    background: #111111 !important;
    display: block !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }
}

/* ---- Mobile Sidebar Drawer ---- */
@media (max-width: 992px) {

  /* nav-menu hidden on mobile — sidebar is handled by #mobileSidebar div */
  .nav-menu {
    display: none !important;
  }
  .nav-menu.open {
    display: none !important;
  }
  .nav-rst-btn::after, .nav-track-btn::after { display: none !important; }
}
.hamburger span { background: #111111; }
@media (max-width: 992px) {
  .nav-menu { background: rgba(255,255,255,0.99); }
  .nav-menu a { color: #111111 !important; }
}

/* Sections backgrounds */
#rooms    { background: #ffffff; }
#about    { background: #ffffff; }
#testimonials { background: #f9f9f9; }
#services { background: #f5f5f5; }
#gallery  { background: #f0f0f0; }

section { background: transparent; }

/* Section text */
.section-title { color: #111111; }
.section-subtitle { color: #666666; }

/* Room cards */
.room-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
}
.room-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
  border-color: rgba(232,128,10,0.3);
}
.room-img-wrap::after {
  background: linear-gradient(to top, #ffffff, transparent);
}
.room-name { color: #111111; }
.room-desc { color: #666666; }
.room-desc-dot { color: rgba(0,0,0,0.2); }
.room-card-footer { border-top-color: rgba(0,0,0,0.08); }
.room-price-label, .room-price-night { color: #666666; }
.room-book-btn { background: transparent; border-color: rgba(232,128,10,0.5); color: var(--accent); }
.room-book-btn:hover { color: #ffffff; }
.room-card--featured { border-color: rgba(232,128,10,0.4); }

/* Services */
.svc-card {
  background: #ffffff;
  border-color: rgba(232,128,10,0.18);
}
.svc-card:hover {
  background: rgba(232,128,10,0.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.svc-title { color: #111111; }
.svc-desc { color: #666666; }

/* About */
.about-img-main, .about-img-secondary { border-color: #eeeeee; }
.feat-text h4 { color: #111111; }
.feat-text p, .about-desc, .stat-label { color: #666666; }
.about-stats { border-top-color: rgba(0,0,0,0.08); }

/* Gallery */
.filter-btn {
  background: #ffffff;
  border-color: rgba(0,0,0,0.15);
  color: #666666;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,128,10,0.06);
}

/* Testimonials */
.testimonial-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}
.testimonial-card:hover { border-color: rgba(232,128,10,0.2); }
.testimonial-text { color: rgba(0,0,0,0.72); }
.author-info .name { color: #111111; }

/* Footer — keep dark for contrast */
#footer {
  background: #1a1a1a;
  border-top-color: rgba(255,255,255,0.06);
}
.footer-bottom { border-top-color: rgba(255,255,255,0.08); }
.footer-col h4 { color: #ffffff; border-bottom-color: rgba(255,255,255,0.08); }
.footer-about, .footer-copy, .footer-made { color: #999999; }
.footer-links a, .footer-contact li { color: #999999; }
.social-link { border-color: rgba(255,255,255,0.15); color: #999999; }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #ffffff; }

/* Toast */
.toast {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.toast span { color: rgba(0,0,0,0.82); }

/* Page hero (inner pages) — keep dark */
.page-hero {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 50%, #111111 100%);
}
.page-hero-title { color: #ffffff; }
.page-breadcrumb { color: rgba(255,255,255,0.6); }
.page-breadcrumb a { color: rgba(255,255,255,0.7); }
.page-breadcrumb i { color: rgba(255,255,255,0.3); }
.page-breadcrumb i { color: rgba(0,0,0,0.2); }

/* Booking modal */
.bm-box { background: #ffffff; border-radius: 18px !important; }
.bm-steps-bar { border-bottom-color: rgba(0,0,0,0.07); }
.bm-step-dot span { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: #666; }
.bm-step-line { background: rgba(0,0,0,0.08); }
.bm-step1-header h3, .bm-top-room { color: #111111; }
.bm-date-box input {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: #111111;
  color-scheme: light;
}
.bm-date-sep { color: rgba(0,0,0,0.2); }
.bm-guest-section { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.07); }
.bm-guest-label { color: rgba(0,0,0,0.45); }
.bm-guest-title { color: #111111; }
.bm-summary-box { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.07); }
.bm-sum-row span { color: #666666; }
.bm-sum-row strong { color: #111111; }
.bm-sum-divider { border-top-color: rgba(0,0,0,0.07); }
.bm-sum-total span { color: #111111; }
.bm-input-wrap input,
.bm-input-wrap select,
.bm-input-wrap textarea {
  background: #f9f6f2 !important;
  border: 1.5px solid rgba(232,128,10,0.18) !important;
  color: #111111 !important;
  color-scheme: light !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
}
.bm-input-wrap input:focus,
.bm-input-wrap select:focus,
.bm-input-wrap textarea:focus {
  border-color: var(--accent) !important;
  background: rgba(232,128,10,0.04) !important;
  box-shadow: 0 0 0 3px rgba(232,128,10,0.1) !important;
}
.bm-input-wrap select option { background: #ffffff; color: #111111; }
.bm-section-label {
  color: #555555 !important;
  font-weight: 800 !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
}
.bm-field label { color: rgba(0,0,0,0.5); font-weight: 700 !important; }
.bm-close {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.55);
}
.bm-top { background: linear-gradient(135deg, rgba(232,128,10,0.06) 0%, transparent 100%); border-bottom-color: rgba(0,0,0,0.07); }
.bm-price-bar { background: linear-gradient(90deg, rgba(232,128,10,0.08), rgba(232,128,10,0.04)); border-bottom-color: rgba(232,128,10,0.15); color: rgba(0,0,0,0.6); }
.bm-trust span { color: rgba(0,0,0,0.35); }
.bm-room-option { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.08); }
.bm-room-option:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.bm-room-opt-name { color: #111111; }
.bm-room-opt-meta { color: #666666; }
.bm-room-opt-ams span { color: rgba(0,0,0,0.45); }
.bm-room-opt-night { color: #666666; }
.bm-cnt-btn { color: #111111; }
.bm-counter { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
.bm-counter span { color: #111111; }
.bm-back-btn { color: #666666; }

/* ---- Hero Booking Bar — White Glass Design ---- */
.hero-booking-inner {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: none !important;
  border-top: 3px solid var(--accent) !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 4px 16px rgba(232,128,10,0.15) !important;
  padding: 14px 28px 16px !important;
}
.hero-booking-title { color: var(--accent) !important; }
.booking-field label {
  color: rgba(0,0,0,0.55) !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
}
.booking-field input,
.booking-field select {
  background: #f5f5f5 !important;
  border: 1.5px solid rgba(232,128,10,0.25) !important;
  color: #111111 !important;
  color-scheme: light !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
}
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(232,128,10,0.1) !important;
  outline: none !important;
}
.bar-counter {
  background: #f5f5f5 !important;
  border: 1.5px solid rgba(232,128,10,0.25) !important;
  border-radius: 5px !important;
}
.bar-counter button { color: #333333 !important; }
.bar-counter button:hover { background: rgba(232,128,10,0.12) !important; color: var(--accent) !important; }
.bar-counter span { color: #111111 !important; font-weight: 700 !important; }
.booking-submit {
  border-radius: 5px !important;
  clip-path: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
  white-space: nowrap !important;
  background: #111111 !important;
  color: #ffffff !important;
}
.booking-submit:hover {
  background: #333333 !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}
/* Keep both buttons on same row — no wrap */
.hero-booking-fields { flex-wrap: nowrap !important; }
.hero-btn-group {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}
/* Green solid Order Food button */
.hero-order-btn {
  background: #22c55e !important;
  border: none !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(34,197,94,0.35) !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
}
.hero-order-btn:hover {
  background: #16a34a !important;
  box-shadow: 0 6px 22px rgba(34,197,94,0.45) !important;
  transform: translateY(-2px) !important;
}
/* Mobile: allow wrap */
@media (max-width: 768px) {
  .hero-booking-fields { flex-wrap: wrap !important; }
  .hero-btn-group { width: 100%; }
  .hero-btn-group .booking-submit,
  .hero-btn-group .hero-order-btn { flex: 1; justify-content: center; }
}

/* Room image placeholder */
.room-img-placeholder { background: linear-gradient(135deg, #e8e8e8, #d0d8e8); }
.bm-room-opt-placeholder { background: linear-gradient(135deg, #e8e8e8, #d0d8e8); }

/* hib items (hotel info bar) */
.hib-item { border-right-color: rgba(0,0,0,0.07); }
.hib-item { border-bottom-color: rgba(0,0,0,0.07); }

/* Laptop/desktop max-width optimized */
@media (min-width: 1024px) {
  .container { max-width: 1300px; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   PAGE-SPECIFIC LIGHT THEME OVERRIDES (!important needed
   because inline <style> tags in PHP pages load after style.css)
   ============================================================ */

/* Rooms page */
.rooms-filter-wrap { background: #f5f5f5 !important; border-bottom-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 12px rgba(0,0,0,0.07) !important; }
.rf-counter { background: rgba(0,0,0,0.04) !important; border-color: rgba(0,0,0,0.1) !important; }
.rf-counter button { color: #111111 !important; }
.rf-counter span { color: #111111 !important; }
.rf-field input, .rf-field select { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.1) !important; color: #111111 !important; color-scheme: light !important; }
.rf-field select option { background: #ffffff !important; color: #111111 !important; }
.rooms-page-section { background: #ffffff !important; }
.rooms-count > span:first-child { color: rgba(0,0,0,0.55) !important; }
.rp-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important; }
.rp-card:hover { box-shadow: 0 24px 50px rgba(0,0,0,0.13) !important; border-color: rgba(232,128,10,0.3) !important; }
.rp-name { color: #111111 !important; }
.rp-meta span { color: #666666 !important; }
.rp-total { color: #111111 !important; }
.rp-chip { color: rgba(0,0,0,0.55) !important; border-color: rgba(0,0,0,0.1) !important; }
.rp-card:hover .rp-chip { color: rgba(0,0,0,0.7) !important; border-color: rgba(232,128,10,0.25) !important; }
.rp-img-placeholder { background: linear-gradient(135deg,#e8e8e8,#d0d8e8) !important; }
.rooms-empty h3 { color: #111111 !important; }

/* About page */
.about-feat-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; }
.about-feat-card h3 { color: #111111 !important; }
.about-feat-card p { color: #666666 !important; }
.hotel-info-bar { background: #f5f5f5 !important; border-color: rgba(232,128,10,0.2) !important; }
.hib-item { border-right-color: rgba(0,0,0,0.08) !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
.hib-label { color: #666666 !important; }
.hib-value { color: #111111 !important; }

/* Contact page */
.contact-form-box { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; }
.cf-field label { color: rgba(0,0,0,0.55) !important; }
.cf-field input, .cf-field select, .cf-field textarea { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.1) !important; color: #111111 !important; color-scheme: light !important; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--accent) !important; background: rgba(232,128,10,0.04) !important; }

/* Reviews page */
.review-summary { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; }
.rs-score-num { color: #111111 !important; }
.rs-score-label { color: #666666 !important; }
.review-page-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; }
.review-page-card:hover { border-color: rgba(232,128,10,0.25) !important; box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important; }
.rpc-name { color: #111111 !important; }
.rpc-text { color: rgba(0,0,0,0.7) !important; }
.review-form-wrap { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; }
.rf-field-rev label { color: rgba(0,0,0,0.55) !important; }
.rf-field-rev input, .rf-field-rev select, .rf-field-rev textarea { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.1) !important; color: #111111 !important; color-scheme: light !important; }

/* Room detail page */
.rd-photo-section { background: #ffffff !important; }
.rd-section { background: #ffffff !important; }
.rd-info-bar { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; }
.rd-info-item { border-right-color: rgba(0,0,0,0.08) !important; }
.rd-info-label { color: #666666 !important; }
.rd-info-value { color: #111111 !important; }
.rd-booking-card { background: #ffffff !important; border-color: rgba(232,128,10,0.25) !important; }
.rd-booking-card label { color: rgba(0,0,0,0.55) !important; }
.rd-bc-field input, .rd-bc-field select { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.1) !important; color: #111111 !important; color-scheme: light !important; }
.rd-contact-card { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; }
.rd-other-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; }
.rd-other-name { color: #111111 !important; }
.rd-main-desc { color: #666666 !important; }
.rd-amenity span { color: rgba(0,0,0,0.7) !important; }
.rd-policy-text { color: #666666 !important; }
/* rd-hero stays dark — room photo blurred bg + dark overlay, white text is correct */

/* Track page */
.tk-bar { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; }
.tk-bar-input { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.1) !important; color: #111111 !important; color-scheme: light !important; }
.tk-tab { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; color: #666666 !important; }
.tk-tab.active { background: #ffffff !important; border-color: rgba(232,128,10,0.35) !important; color: var(--accent) !important; }
.tk-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; }
.tk-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09) !important; border-color: rgba(232,128,10,0.2) !important; }
.tk-card-body { color: #666666 !important; }
.tk-card-title { color: #111111 !important; }
.tk-acc { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; }
.tk-acc-head { color: #111111 !important; }
.tk-empty { color: #666666 !important; }
.tk-results { color: #666666 !important; }

/* Service detail page */
.sd-sb-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; }
.sd-sb-card h4 { color: #111111 !important; }
.sd-sb-card li { color: #666666 !important; border-color: rgba(0,0,0,0.08) !important; }
.sd-fac-item { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.08) !important; }
.sd-fac-item h4 { color: #111111 !important; }
.sd-fac-item p { color: #666666 !important; }
.sd-gallery-main, .sd-gallery-thumb img { border-color: rgba(0,0,0,0.08) !important; }
.sd-main-desc { color: #666666 !important; }

/* Restaurant page */
.rst-wrap { background: #ffffff !important; }
.rst-sidebar { background: #f5f5f5 !important; border-right-color: rgba(0,0,0,0.08) !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
.rst-nav-item { color: #666666 !important; }
.rst-nav-item.active { color: var(--accent) !important; border-left-color: var(--accent) !important; }
.rst-item-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; }
.rst-item-name { color: #111111 !important; }
.rst-item-desc { color: #666666 !important; }
.rst-cart-panel { background: #ffffff !important; border-left-color: rgba(0,0,0,0.08) !important; border-top-color: var(--accent) !important; }
.rst-cart-title { color: #111111 !important; }
.rst-cart-item { border-bottom-color: rgba(0,0,0,0.08) !important; }
.rst-cart-item-name { color: #111111 !important; }
.rst-cart-empty { color: #666666 !important; }
.rst-section-head { color: #111111 !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
.rst-sidebar-head { background: rgba(232,128,10,0.06) !important; border-bottom-color: rgba(232,128,10,0.15) !important; }

/* Gallery page */
.gallery-section { background: #f0f0f0 !important; }

/* Global — catch all white text on white bg patterns */
.page-section { background: #ffffff !important; }
.card-box { background: #ffffff !important; }
.info-card { background: #ffffff !important; }

/* Room detail — additional fixes */
.rd-main-photo { border-color: rgba(0,0,0,0.08) !important; background: #f0f0f0 !important; }
.rd-photo-placeholder { background: linear-gradient(135deg,#e8e8e8,#d8d8e8) !important; }
.rd-photo-placeholder span { color: rgba(0,0,0,0.35) !important; }
.rd-photo-placeholder small { color: rgba(0,0,0,0.25) !important; }
.rd-thumb { border-color: rgba(0,0,0,0.1) !important; }
.rd-thumb:hover { border-color: rgba(232,128,10,0.5) !important; }
.rd-info-item strong { color: #111111 !important; }
.rd-info-item span { color: #666666 !important; }
.rd-info-item { border-right-color: rgba(0,0,0,0.07) !important; border-bottom-color: rgba(0,0,0,0.07) !important; }
.rd-block-title { color: #111111 !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
.rd-desc { color: #666666 !important; }
.rd-amenity-item { background: rgba(0,0,0,0.02) !important; border-color: rgba(0,0,0,0.08) !important; }
.rd-amenity-item span { color: rgba(0,0,0,0.7) !important; }
.rd-policy-item { background: rgba(0,0,0,0.02) !important; border-color: rgba(0,0,0,0.06) !important; }
.rd-policy-item strong { color: rgba(0,0,0,0.45) !important; }
.rd-policy-item span { color: rgba(0,0,0,0.75) !important; }
.rd-bc-header { border-bottom-color: rgba(0,0,0,0.08) !important; }
.rd-bc-total { color: rgba(0,0,0,0.6) !important; }
.rd-bc-total strong { color: #111111 !important; }
.rd-bc-br-row { color: rgba(0,0,0,0.6) !important; }
.rd-bc-br-divider { border-top-color: rgba(0,0,0,0.08) !important; }
.rd-bc-br-total { color: #111111 !important; }
.rd-bc-field label { color: rgba(0,0,0,0.5) !important; }
.rd-bc-field input, .rd-bc-field select, .rd-bc-field textarea { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.1) !important; color: #111111 !important; color-scheme: light !important; }
.rd-bc-field select option { background: #ffffff !important; color: #111111 !important; }
.rd-inline-counter { background: rgba(0,0,0,0.04) !important; border-color: rgba(0,0,0,0.1) !important; }
.rd-inline-counter button { color: #111111 !important; }
.rd-inline-counter span { color: #111111 !important; }
.rd-bc-footer { border-top-color: rgba(0,0,0,0.08) !important; background: rgba(0,0,0,0.01) !important; }
.rd-contact-card strong { color: rgba(0,0,0,0.5) !important; }
.rd-contact-card span { color: #111111 !important; }
.rd-other-rooms { border-top-color: rgba(0,0,0,0.08) !important; }
.rd-other-info h4 { color: #111111 !important; }

/* Track page — additional fixes */
.tk-bar-input { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.1) !important; }
.tk-bar-input input { color: #111111 !important; }
.tk-tab-name { color: #111111 !important; }
.tk-row { color: rgba(0,0,0,0.6) !important; }
.tk-row strong { color: #111111 !important; }
.tk-detail-item strong { color: #111111 !important; }
.tk-order-name { color: rgba(0,0,0,0.75) !important; }
.tk-order-price { color: #111111 !important; }
.tk-detail-item { color: #666666 !important; }

/* Restaurant page — additional fixes */
.rst-nav-item { color: #666666 !important; border-left-color: transparent !important; }
.rst-nav-item.active { color: var(--accent) !important; border-left-color: var(--accent) !important; }
.rst-item-desc { color: #666666 !important; }
.rst-section-title { color: #111111 !important; }
.rst-price { color: var(--accent) !important; }
.rst-qty-btn { color: #111111 !important; background: rgba(0,0,0,0.04) !important; border-color: rgba(0,0,0,0.1) !important; }
.rst-qty-count { color: #111111 !important; }
.rst-cart-item-qty { color: #666666 !important; }
.rst-cart-subtotal { color: #111111 !important; }
.rst-order-item { border-bottom-color: rgba(0,0,0,0.07) !important; }
.rst-empty { color: #666666 !important; }
.rst-cart-footer { border-top-color: rgba(0,0,0,0.08) !important; background: rgba(0,0,0,0.01) !important; }
.rst-total-label { color: #666666 !important; }
.rst-total-price { color: var(--accent) !important; }

/* ============================================================
   TYPOGRAPHY IMPROVEMENTS — Better Fonts & Bold
   ============================================================ */

/* Base body — slightly bolder for better readability */
body {
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navbar links — bolder, cleaner */
.nav-menu a {
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  font-size: 12px !important;
}

/* Section tags (small orange labels) */
.section-tag {
  font-weight: 800 !important;
  letter-spacing: 5px !important;
}

/* Section titles — richer weight */
.section-title {
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

/* Section subtitle */
.section-subtitle {
  font-weight: 500 !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

/* Room card name */
.room-name, .rp-name {
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

/* Room meta text (250 sq ft, Adults) */
.room-desc, .rp-meta span {
  font-weight: 600 !important;
  font-size: 12px !important;
}

/* Amenity chips */
.rp-chip {
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.3px;
}

/* Room price — Oswald font for all price displays */
.room-price-value, .rp-per-night,
.rd-bc-amount, .rd-other-info span,
.rst-item-price, .tk-acc-price, .bm-price-total {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}
.rp-per-night { font-size: 1.5rem !important; }
.room-price-label, .room-price-night,
.rp-total small, .rp-per-night span {
  font-weight: 600 !important;
}

/* Room type tag (QUEEN BED, KING BED) */
.room-type-tag {
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
}

/* Badges (QUEEN BED, KING BED) on rooms page — fix dark bg in light theme */
.rp-badge-bed {
  background: rgba(20,20,20,0.75) !important;
  backdrop-filter: blur(6px) !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
}

/* Button text */
.rp-btn-view, .rp-btn-book,
.room-book-btn,
.booking-submit,
.slide-btn {
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}

/* Book Now / View Details */
.nav-book-btn {
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
}

/* Filter bar labels */
.rf-field label, .booking-field label {
  font-weight: 800 !important;
  letter-spacing: 2px !important;
}

/* Service card title */
.svc-title {
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}
.svc-desc {
  font-weight: 500 !important;
  line-height: 1.75 !important;
  font-size: 13px !important;
}

/* About section text */
.about-desc, .feat-text p, .stat-label {
  font-weight: 500 !important;
  line-height: 1.8 !important;
}
.feat-text h4 {
  font-weight: 700 !important;
}
.stat-num {
  font-weight: 800 !important;
}

/* Testimonial text */
.testimonial-text {
  font-weight: 500 !important;
  font-size: 0.97rem !important;
  line-height: 1.85 !important;
}
.author-info .name {
  font-weight: 700 !important;
}

/* Footer text */
.footer-about, .footer-copy, .footer-made,
.footer-links a, .footer-contact li {
  font-weight: 500 !important;
}
.footer-col h4 {
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

/* Page hero title */
.page-hero-title {
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}
.page-hero-tag {
  font-weight: 800 !important;
  letter-spacing: 4px !important;
}

/* Breadcrumb */
.page-breadcrumb {
  font-weight: 600 !important;
  font-size: 12px !important;
}

/* Input placeholder styling */
input::placeholder, textarea::placeholder, select {
  font-weight: 500;
  font-family: var(--font-body);
}

/* Room count text ("5 room types available") */
.rooms-count > span:first-child {
  font-weight: 600 !important;
  font-size: 14px !important;
}

/* ============================================================
   PREMIUM ROOM CARD REDESIGN (homepage)
   ============================================================ */

/* Card base */
.room-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease !important;
}
.room-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,0.13) !important;
  border-color: rgba(232,128,10,0.35) !important;
}

/* Featured middle card */
.room-card--featured {
  border-color: rgba(232,128,10,0.4) !important;
  border-width: 2px !important;
  box-shadow: 0 8px 32px rgba(232,128,10,0.12) !important;
}
.room-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 5;
}
.room-card--featured:hover {
  transform: translateY(-14px) !important;
  box-shadow: 0 32px 64px rgba(232,128,10,0.18) !important;
}

/* Photo placeholder — premium */
.room-img-placeholder {
  background: linear-gradient(135deg, #f0ede8 0%, #e8e4da 50%, #ede8e0 100%) !important;
  position: relative;
}
.room-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(232,128,10,0.06) 0%, transparent 65%);
}
.room-img-placeholder i {
  font-size: 5rem !important;
  color: rgba(232,128,10,0.25) !important;
  filter: drop-shadow(0 4px 12px rgba(232,128,10,0.15));
  position: relative;
}

/* Bottom gradient on image */
.room-img-wrap::after {
  background: linear-gradient(to top, #ffffff 0%, transparent 100%) !important;
  height: 80px !important;
}

/* Image height */
.room-img-wrap { height: 260px !important; }
.room-card--featured .room-img-wrap { height: 290px !important; }

/* Card body */
.room-card-body { padding: 20px 24px 22px !important; }

/* Bed type tag — orange pill */
.room-type-tag {
  display: inline-block !important;
  background: rgba(232,128,10,0.1) !important;
  color: var(--accent) !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  border: none !important;
  margin-bottom: 12px !important;
}

/* Room name */
.room-name {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #111111 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em !important;
}
.room-card:hover .room-name { color: var(--accent) !important; }

/* Meta info (250 sq ft, 2 Adults) */
.room-desc {
  font-size: 13px !important;
  color: #666666 !important;
  font-weight: 600 !important;
  margin-bottom: 18px !important;
  display: flex !important;
  flex-wrap: wrap !important;
}
.room-desc i { color: var(--accent) !important; font-size: 11px !important; }
.room-desc-dot { color: rgba(0,0,0,0.2) !important; }

/* Footer — price + button */
.room-card-footer {
  padding-top: 16px !important;
  border-top: 1px solid rgba(0,0,0,0.07) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}
.room-price-label {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: #888888 !important;
  text-transform: uppercase !important;
}
.room-price-value {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: var(--accent) !important;
  line-height: 1 !important;
}
.room-price-night {
  font-size: 11px !important;
  color: #888888 !important;
  font-weight: 600 !important;
}

/* BOOK NOW button — solid orange fill */
.room-book-btn {
  background: var(--accent) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 4px 14px rgba(232,128,10,0.3) !important;
  transition: all 0.3s ease !important;
  clip-path: none !important;
}
.room-book-btn::before { display: none !important; }
.room-book-btn:hover {
  background: var(--accent-light) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(232,128,10,0.4) !important;
}
.room-book-btn i { color: #ffffff !important; }
.room-book-btn:hover i { transform: translateX(4px) !important; }

/* Hover label */
.room-hover-label { border-radius: 8px !important; }

/* Rooms grid gap */
.rooms-grid { gap: 24px !important; }

/* Discount / Crossed Price */
.room-price { display: flex !important; flex-direction: column !important; gap: 2px !important; }
.room-price-top { display: flex; align-items: center; gap: 8px; }
.room-price-orig {
  font-family: 'Oswald', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #bbbbbb !important;
  text-decoration: line-through !important;
  letter-spacing: 0.5px !important;
}
.room-discount-badge {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  background: rgba(34,197,94,0.12) !important;
  color: #16a34a !important;
  border: 1px solid rgba(34,197,94,0.3) !important;
  padding: 2px 8px !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  font-family: var(--font-body) !important;
}
.room-price-bottom { display: flex; align-items: baseline; gap: 2px; }
.room-price-value {
  font-family: 'Oswald', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  line-height: 1 !important;
  letter-spacing: 0.5px !important;
}
.room-price-night {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  color: #999999 !important;
  font-weight: 600 !important;
  margin-left: 2px !important;
}

/* ============================================================
   MOBILE & TABLET RESPONSIVE FIXES
   ============================================================ */

/* ---- TABLET (max 992px) ---- */
@media (max-width: 992px) {

  /* Hide footer on track page for tablet/mobile */
  body.track-page #footer { display: none !important; }

  /* Hero slider — tablet */
  #hero { height: 75vh !important; min-height: 500px !important; background: #0a0a0a !important; display: block !important; }
  .swiper-hero { width: 100% !important; height: 100% !important; }
  .slide-bg { position: absolute !important; inset: 0 !important; background-size: cover !important; display: block !important; }
  .slide-content { padding: 0 40px 200px !important; }
  .slide-title { font-size: clamp(1.8rem, 5vw, 3rem) !important; color: #ffffff !important; }

  /* Homepage rooms — 3 cards in a row using scroll on tablet */
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .room-card { min-width: 240px; }
  .room-img-wrap { height: 200px !important; }
  .room-card--featured .room-img-wrap { height: 220px !important; }
  .room-name { font-size: 1.1rem !important; }
  .room-price-value { font-size: 1.4rem !important; }

  /* Services — 3 per row on tablet */
  .svc-grid { gap: 14px !important; }
  .svc-card { width: calc(33.33% - 12px) !important; min-width: 0 !important; padding: 28px 18px 22px !important; }
  .svc-icon-box { width: 64px !important; height: 64px !important; }
  .svc-icon-box i { font-size: 26px !important; }
  .svc-title { font-size: 0.95rem !important; }

  /* Quick reservation bar — tablet */
  .hero-booking-inner { padding: 12px 18px 14px !important; }
  .hero-booking-fields { flex-wrap: wrap !important; gap: 10px !important; }
  .booking-field { min-width: calc(50% - 8px) !important; flex: 1 1 calc(50% - 8px) !important; }
  .hero-btn-group { width: 100% !important; }
  .hero-btn-group .booking-submit,
  .hero-btn-group .hero-order-btn { flex: 1 !important; justify-content: center !important; }
}

/* ---- MOBILE (max 768px) ---- */
@media (max-width: 768px) {

  /* Hero slider HIDDEN on mobile */
  #hero { display: none !important; }
  .swiper-hero { display: none !important; }
  .hero-scroll-indicator { display: none !important; }
  /* Mobile hotel banner */
  #mobileHeroBanner { display: block !important; }
  /* Booking bar — static, full width, right below banner */
  .hero-booking-bar {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    bottom: auto !important;
    left: auto !important;
    display: block !important;
  }
  .hero-booking-inner {
    border-radius: 0 !important;
    border-top: 3px solid var(--accent) !important;
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
  }

  /* Booking bar — STATIC, right below navbar, above rooms */
  .hero-booking-bar {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 79px !important;
  }
  .hero-booking-inner {
    border-radius: 0 !important;
    border-top: 3px solid var(--accent) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
  }
  /* Bottom bar space */
  body { padding-top: 0 !important; padding-bottom: 90px !important; }
  body.restaurant-page { padding-bottom: 90px !important; }
  /* Mobile banner sits right below fixed navbar */
  #mobileHeroBanner { margin-top: 79px; }
  body.restaurant-page #footer { display: none !important; }
  body.track-page #footer { display: none !important; }
  /* Hide booking bar scroll hint */
  .hero-scroll-indicator { display: none !important; }

  /* Homepage rooms — fix overflow, horizontal scroll contained */
  #rooms { padding: 40px 0 !important; overflow: hidden !important; }
  #rooms .container { padding: 0 !important; max-width: 100% !important; overflow: hidden !important; }
  #rooms .section-header { padding: 0 16px !important; }
  .rooms-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 8px 16px 16px !important;
    width: 100% !important;
  }
  .rooms-grid::-webkit-scrollbar { display: none; }
  .room-card {
    scroll-snap-align: start !important;
    min-width: 230px !important;
    width: 230px !important;
    flex-shrink: 0 !important;
    border-radius: 12px !important;
  }
  .room-card--featured { transform: none !important; }
  .room-img-wrap { height: 150px !important; }
  .room-card--featured .room-img-wrap { height: 150px !important; }
  .room-card-body { padding: 12px 14px 14px !important; }
  .room-name { font-size: 0.92rem !important; margin-bottom: 5px !important; }
  .room-type-tag { font-size: 8px !important; padding: 3px 10px !important; margin-bottom: 8px !important; }
  .room-desc { font-size: 11px !important; margin-bottom: 10px !important; }
  .room-price-value { font-size: 1.15rem !important; }
  .room-price-orig { font-size: 11px !important; }
  .room-discount-badge { font-size: 8px !important; }
  .room-book-btn { padding: 8px 12px !important; font-size: 10px !important; }
  .room-card-footer { padding-top: 10px !important; }
  .section-title { font-size: 1.6rem !important; }
  .section-subtitle { font-size: 0.9rem !important; }

  /* Services — EXACTLY 2 per row on mobile */
  .svc-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 12px !important; flex-wrap: unset !important; justify-content: unset !important; }
  .svc-card { width: 100% !important; min-width: 0 !important; padding: 22px 12px 18px !important; border-radius: 12px !important; flex: unset !important; }
  .svc-icon-box { width: 56px !important; height: 56px !important; }
  .svc-icon-box i { font-size: 22px !important; }
  .svc-title { font-size: 0.85rem !important; }
  .svc-desc { font-size: 11px !important; margin-bottom: 12px !important; display: -webkit-box !important; -webkit-line-clamp: 3 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  .svc-link { font-size: 10px !important; padding: 5px 12px !important; }

  /* Quick Reservation bar — mobile full fit */
  .hero-booking-inner {
    padding: 14px 16px 16px !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    border-top: 3px solid var(--accent) !important;
    outline: none !important;
  }
  .hero-booking-title { font-size: 9px !important; margin-bottom: 10px !important; letter-spacing: 2px !important; }
  .hero-booking-fields {
    flex-direction: column !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }
  .booking-field { min-width: 100% !important; flex: unset !important; }
  .booking-field label { font-size: 9px !important; margin-bottom: 5px !important; font-weight: 800 !important; }
  .booking-field input, .booking-field select {
    padding: 11px 12px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    width: 100% !important;
  }
  .bar-counter { height: 44px !important; border-radius: 8px !important; width: 100% !important; }
  .bar-counter button { width: 44px !important; font-size: 20px !important; }
  .bar-counter span { font-size: 16px !important; font-weight: 800 !important; }
  .hero-btn-group { width: 100% !important; gap: 10px !important; flex-wrap: nowrap !important; }
  .hero-btn-group .booking-submit,
  .hero-btn-group .hero-order-btn {
    flex: 1 !important;
    padding: 13px 8px !important;
    justify-content: center !important;
    clip-path: none !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
  }

  /* Section headings — mobile */
  .section-header { padding: 0 16px !important; text-align: left !important; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
  .section-tag { font-size: 10px !important; }
  .section-subtitle { padding: 0 !important; }

  /* Container — full width, no cut */
  .container { padding: 0 16px !important; max-width: 100% !important; }
  section { padding: 50px 0 !important; overflow-x: hidden !important; }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {
  /* Rooms — smaller cards, 3 swipeable */
  .rooms-grid { grid-template-columns: repeat(3, 210px) !important; }
  .room-card { min-width: 210px !important; }
  .room-img-wrap { height: 130px !important; }
  .room-name { font-size: 0.88rem !important; }

  /* Services — 2 col grid */
  .svc-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .svc-card { padding: 18px 10px 16px !important; }
  .svc-icon-box { width: 48px !important; height: 48px !important; }
  .svc-icon-box i { font-size: 20px !important; }
  .svc-title { font-size: 0.8rem !important; }
  .svc-desc { font-size: 10px !important; }
}
