/* ===================================================
   Hotel Marble City — Light Professional Theme
   =================================================== */

/* --- Variables --- */
:root {
  --primary:      #1a2340;
  --gold:         #b8933f;
  --gold-light:   #d4b068;
  --gold-dark:    #9a7830;
  --gold-bg:      #fdf6e9;
  --white:        #ffffff;
  --off-white:    #f7f5f1;
  --cream:        #faf8f4;
  --text:         #222831;
  --text-muted:   #6b7280;
  --border:       #e6e2da;
  --border-light: #f0ece4;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 50px rgba(0,0,0,0.12);
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       10px;
  --radius-sm:    6px;
  --navbar-h:     76px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.3;
  color: var(--primary);
}
.section-subtitle {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
  border-radius: 2px;
}
.section-title.center { display: block; text-align: center; }
.section-title.center::after { margin: 10px auto 0; }
p { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-cream { background: var(--cream); }
.bg-off-white { background: var(--off-white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Open Sans', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(184,147,63,0.30);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,147,63,0.35);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-outline-dark {
  border: 1.5px solid rgba(255,255,255,0.65);
  color: rgba(255,255,255,0.9);
  background: transparent;
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--gold-bg); color: var(--gold-dark); transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: #0f1628; transform: translateY(-2px); color: var(--white); }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes heroText {
  0%   { opacity:0; transform:translateY(20px); }
  100% { opacity:1; transform:translateY(0); }
}
@keyframes heroBg {
  0%   { transform:scale(1.04); }
  100% { transform:scale(1); }
}
@keyframes loadBar { to { width:100%; } }
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.reveal-left  { transform: translateX(-28px); }
.reveal.reveal-right { transform: translateX(28px); }
.reveal.visible { opacity:1; transform:translate(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }


/* ===================================================
   NAVIGATION — Always-visible light header
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  /* Frosted white: always readable on any background */
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 226, 218, 0.7);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: background 0.35s ease, box-shadow 0.35s ease,
              height 0.3s ease, border-color 0.35s ease;
}
/* Solid white once user scrolls down */
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  border-bottom-color: var(--border);
  height: 62px;
}
/* Inner pages — identical to scrolled state */
.navbar.page-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border);
  height: 62px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img,
.navbar.page-nav .nav-logo img { height: 40px; }

/* Phone number — always dark */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-phone i { color: var(--gold); }
.nav-phone a { color: var(--text-muted); }
.nav-phone a:hover { color: var(--gold); }

/* Nav links — always dark text */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 13px;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 5px;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-bg);
}

/* Book Now CTA button */
.nav-links a.btn-book {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(184, 147, 63, 0.30);
}
.nav-links a.btn-book:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 147, 63, 0.40);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled):not(.page-nav) .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 900px) {
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 40px;
    gap: 2px;
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    box-shadow: -6px 0 32px rgba(0,0,0,0.13);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    color: var(--text) !important;
    background: transparent !important;
    width: 100%;
    padding: 12px 14px;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0 !important;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold) !important; background: var(--gold-bg) !important; }
  .nav-links a.btn-book {
    border-radius: 6px !important;
    margin-top: 16px;
    border-bottom: none !important;
    background: var(--gold) !important;
    color: var(--white) !important;
    text-align: center;
  }
  .nav-links a.btn-book:hover { background: var(--gold-dark) !important; }
  .nav-toggle span { background: var(--text) !important; }
  /* When nav is open, toggle spans go dark regardless of hero */
  .nav-toggle.open span { background: var(--text) !important; }
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }


/* ===================================================
   HERO — Professional Light
   =================================================== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slides { width:100%; height:100%; position:relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroBg 7s ease-out forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,22,45,0.52) 0%,
    rgba(15,22,45,0.38) 50%,
    rgba(15,22,45,0.55) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px 80px;
}
/* Professional badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,147,63,0.18);
  border: 1px solid rgba(184,147,63,0.45);
  color: #e8d59a;
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  animation: heroText 0.9s ease 0.3s both;
  backdrop-filter: blur(6px);
}
/* Professional hero heading — restrained, elegant */
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  animation: heroText 0.9s ease 0.5s both;
  text-shadow: 0 1px 20px rgba(0,0,0,0.25);
  max-width: 720px;
  letter-spacing: -0.3px;
}
.hero h1 span { color: #e8d59a; }
.hero-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 14px;
  animation: heroText 0.9s ease 0.7s both;
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 28px;
  animation: heroText 0.9s ease 0.7s both;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroText 0.9s ease 0.9s both;
}
/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.4);
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  border-color: var(--gold);
}
/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: heroText 0.9s ease 1.1s both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: float 2s ease-in-out infinite;
}
@media (max-width: 640px) {
  .hero { height: 88vh; min-height: 500px; }
  .hero-scroll { display: none; }
  .hero-content { padding: 0 16px 60px; }
  .hero-badge { font-size: 0.65rem; letter-spacing: 1.5px; padding: 6px 14px; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-sub { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-dots { bottom: 16px; }
}


/* ===================================================
   BOOKING BAR — Light
   =================================================== */
.booking-bar {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  position: relative;
  z-index: 100;
  border-top: 3px solid var(--gold);
}
/* One-row flex layout: all 6 fields + button on a single line */
.booking-form {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.booking-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  border-right: 1px solid var(--border-light);
  transition: background 0.2s;
  flex: 1 1 0;          /* equal share of remaining space */
  min-width: 0;         /* allow fields to shrink below content width */
}
.booking-field:hover { background: var(--cream); }
.booking-field label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
  white-space: nowrap;
}
.booking-field input,
.booking-field select {
  border: none;
  background: transparent;
  font-size: 0.85rem;
  color: var(--text);
  width: 100%;
  padding: 1px 0;
  cursor: pointer;
  min-width: 0;
}
.booking-field input::placeholder { color: var(--text-muted); }
.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--gold);
  color: var(--white);
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
  text-transform: uppercase;
  border: none;
  min-width: 130px;
  font-family: 'Open Sans', sans-serif;
}
.booking-submit:hover { background: var(--gold-dark); }

/* Tablet: 3 cols × 2 rows */
@media (max-width: 1024px) {
  .booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .booking-field { border-bottom: 1px solid var(--border-light); }
  .booking-submit {
    grid-column: 1 / -1;
    padding: 14px;
    justify-content: center;
    gap: 8px;
  }
}
/* Mobile: 2 cols × 3 rows */
@media (max-width: 600px) {
  .booking-form { grid-template-columns: 1fr 1fr; }
}
/* Extra-small: single column */
@media (max-width: 400px) {
  .booking-form { grid-template-columns: 1fr; }
  .booking-field { border-right: none; }
}


/* ===================================================
   WELCOME SECTION
   =================================================== */
.welcome-section { padding: 90px 0 80px; background: var(--white); }
.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.welcome-text p { margin-bottom: 18px; }
.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}
.welcome-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.welcome-feature i { color: var(--gold); font-size: 0.95rem; min-width: 18px; }
.welcome-image-wrap { position: relative; }
.welcome-image-main {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome-image-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.welcome-image-main:hover img { transform: scale(1.03); }
.welcome-image-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.welcome-image-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.welcome-image-badge .badge-text {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
}
@media (max-width: 900px) {
  .welcome-inner { grid-template-columns: 1fr; gap: 50px; }
  .welcome-image-badge { bottom: 16px; left: 16px; } /* inside image, not outside — avoids overflow */
  .welcome-image-main img { height: 340px; }
}
@media (max-width: 500px) {
  .welcome-image-main img { height: 260px; }
  .welcome-image-badge { padding: 14px 18px; }
  .welcome-image-badge .badge-num { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .welcome-features { grid-template-columns: 1fr; }
}


/* ===================================================
   STATS — Light
   =================================================== */
.stats-section {
  padding: 60px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 10px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.stat-suffix { color: var(--gold); }
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 6px;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 18px 10px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}


/* ===================================================
   ROOMS SECTION — Light
   =================================================== */
.rooms-section { padding: 90px 0; background: var(--off-white); }
.rooms-header { text-align: center; margin-bottom: 50px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 24px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,147,63,0.25);
}
.room-image { position: relative; overflow: hidden; height: 220px; }
.room-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.room-card:hover .room-image img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 3px;
}
.room-body { padding: 22px; }
.room-title { font-size: 1.2rem; color: var(--primary); margin-bottom: 8px; }
.room-desc { font-size: 0.855rem; margin-bottom: 16px; }
.room-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.room-feat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--text-muted);
}
.room-feat i { color: var(--gold); font-size: 0.76rem; }
.room-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.room-footer .btn { padding: 9px 20px; font-size: 0.8rem; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.93);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--gold);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-title { font-size: 1.4rem; color: var(--primary); margin-bottom: 6px; }
.modal-subtitle { font-size: 0.84rem; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.modal-close:hover { background: #fee2e2; color: #dc2626; }
.modal-form-row { margin-bottom: 14px; }
.modal-form-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.modal-form-row input,
.modal-form-row select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.modal-form-row input:focus,
.modal-form-row select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,63,0.1); }
.modal-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }


/* ===================================================
   FACILITIES TABS — Light
   =================================================== */
.facilities-section { padding: 90px 0; background: var(--white); }
.facilities-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  margin-bottom: 44px;
  padding-bottom: 0;
}
.fac-tab {
  padding: 12px 20px;
  border-radius: 7px 7px 0 0;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: -2px;
  border: 1.5px solid transparent;
  border-bottom: none;
  background: var(--off-white);
  font-family: 'Open Sans', sans-serif;
}
.fac-tab:hover { color: var(--gold); background: var(--gold-bg); }
.fac-tab.active {
  color: var(--gold-dark);
  background: var(--white);
  border-color: var(--border);
  border-bottom-color: var(--white);
}
.fac-tab i { font-size: 0.95rem; }
.fac-panel { display: none; }
.fac-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  animation: fadeIn 0.45s ease;
}
.fac-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.fac-img img { width: 100%; height: 360px; object-fit: cover; }
.fac-content h3 { font-size: 1.7rem; color: var(--primary); margin-bottom: 14px; }
.fac-content p { margin-bottom: 13px; }
.fac-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-bg);
  border: 1px solid rgba(184,147,63,0.3);
  color: var(--gold-dark);
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 800px) {
  .fac-panel.active { grid-template-columns: 1fr; gap: 28px; }
  .fac-img img { height: 240px; }
}
@media (max-width: 640px) {
  .facilities-tabs { gap: 3px; }
  .fac-tab { padding: 9px 11px; font-size: 0.75rem; min-width: 44px; justify-content: center; }
  .fac-tab span { display: none; }
  .fac-tab i { font-size: 1.1rem; }
}


/* ===================================================
   SERVICES ICONS — Light
   =================================================== */
.services-icons-section { padding: 80px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.service-icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: default;
}
.service-icon-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,147,63,0.3);
}
.service-icon-card img {
  width: 40px; height: 40px;
  object-fit: contain;
  margin: 0 auto 14px;
  transition: transform 0.3s;
  filter: sepia(0.4) saturate(1.5) hue-rotate(5deg);
}
.service-icon-card:hover img { transform: scale(1.1); }
.service-icon-card h4 {
  font-size: 0.84rem;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}


/* ===================================================
   TESTIMONIALS — Light
   =================================================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--off-white);
  position: relative;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 3%;
  font-size: 22rem;
  font-family: 'Playfair Display', serif;
  color: rgba(184,147,63,0.07);
  line-height: 1;
  pointer-events: none;
}
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold-bg);
  line-height: 1;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184,147,63,0.3);
  transform: translateY(-3px);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 14px;
  letter-spacing: 1.5px;
}
.testi-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.testi-name { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.testi-role { font-size: 0.72rem; color: var(--text-muted); }
@media (max-width: 900px) { .testi-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .testi-track { grid-template-columns: 1fr; } }


/* ===================================================
   GALLERY PREVIEW — Light
   =================================================== */
.gallery-preview { padding: 90px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
  margin-top: 44px;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,64,0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--white);
  transform: scale(0.7);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.gallery-cta { text-align: center; margin-top: 36px; }
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-auto-rows: 130px; }
}


/* ===================================================
   CTA PARALLAX BANNER — Light Overlay
   =================================================== */
.cta-banner {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background-attachment: fixed;   /* parallax on desktop */
  background-size: cover;
  background-position: center;
}
/* iOS / touch devices: fixed-attachment causes blank area */
@supports (-webkit-touch-callout: none) {
  .cta-banner { background-attachment: scroll; }
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,64,0.82), rgba(26,35,64,0.68));
}
.cta-banner-content {
  position: relative;
  text-align: center;
  color: var(--white);
}
.cta-banner-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner-content h2 span { color: #e8d59a; }
.cta-banner-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 30px;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ===================================================
   FULL GALLERY PAGE
   =================================================== */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 50px 0;
}
.gallery-full-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 200px;
}
@media (max-width: 900px) {
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-full-item { height: 160px; }
}
@media (max-width: 380px) {
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-item { height: 140px; }
}
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.07); }
.gallery-full-item .gallery-overlay { opacity: 0; }
.gallery-full-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#lightbox.open { opacity: 1; pointer-events: auto; }
#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}
.lb-close {
  position: fixed; top: 18px; right: 22px;
  color: var(--white); font-size: 1.8rem;
  cursor: pointer; opacity: 0.8;
  transition: opacity 0.2s; z-index: 10000;
  background: none; border: none;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: fixed; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.3rem;
  width: 46px; height: 46px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10000;
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-prev:hover, .lb-next:hover { background: rgba(184,147,63,0.5); border-color: var(--gold); }


/* ===================================================
   PAGE HERO / BREADCRUMB — Light
   =================================================== */
.page-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 62px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,35,64,0.72), rgba(26,35,64,0.55));
}
.page-hero-content { position: relative; text-align: center; color: var(--white); }
.page-hero-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.9); }


/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-content { padding: 80px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
}
.about-gallery-grid .gallery-item {
  height: 190px;
  border-radius: 8px;
}
.about-text p { margin-bottom: 18px; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap img { height: 320px; }
}


/* ===================================================
   CONTACT PAGE — Light
   =================================================== */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}
.cf-row { margin-bottom: 18px; }
.cf-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cf-row input,
.cf-row textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.cf-row input:focus, .cf-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,63,0.1);
}
.cf-row textarea { resize: vertical; min-height: 120px; }
.cf-success {
  background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46;
  padding: 11px 15px; border-radius: var(--radius-sm); font-size: 0.855rem; margin-bottom: 18px;
}
.cf-error {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  padding: 11px 15px; border-radius: var(--radius-sm); font-size: 0.855rem; margin-bottom: 18px;
}
/* Contact info panel — light version */
.contact-info-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  border-top: 3px solid var(--gold);
}
.contact-info-wrap h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; }
.contact-info-wrap > p { margin-bottom: 30px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--gold-bg);
  border: 1px solid rgba(184,147,63,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  flex-shrink: 0; margin-top: 2px;
}
.contact-info-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-value { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.contact-info-value a { color: var(--primary); }
.contact-info-value a:hover { color: var(--gold); }
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-social a {
  width: 38px; height: 38px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.95rem;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 500px) {
  .contact-info-wrap { padding: 28px 20px; }
  .contact-section { padding: 50px 0; }
}


/* ===================================================
   PACKAGES PAGE — Light
   =================================================== */
.packages-section { padding: 80px 0; background: var(--white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,147,63,0.3);
}
.package-card.featured { border-top: 3px solid var(--gold); }
.package-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 11px;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.package-image { height: 200px; overflow: hidden; }
.package-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.package-card:hover .package-image img { transform: scale(1.05); }
.package-body { padding: 24px; }
.package-title { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; }
.package-features { margin-bottom: 18px; }
.package-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
}
.package-feat:last-child { border-bottom: none; }
.package-feat i { color: var(--gold); font-size: 0.78rem; }
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.package-footer .btn { padding: 9px 18px; font-size: 0.8rem; }


/* ===================================================
   FOOTER — Light
   =================================================== */
.footer-top-bar {
  background: var(--primary);
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.86rem;
}
.footer-contact-item i { color: var(--gold-light); font-size: 1rem; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2);
}
.footer-newsletter-form input {
  background: rgba(255,255,255,0.08);
  border: none;
  padding: 9px 16px;
  color: var(--white);
  font-size: 0.84rem;
  width: 200px;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 9px 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Open Sans', sans-serif;
}
.footer-newsletter-form button:hover { background: var(--gold-dark); }
.footer-social-icons { display: flex; gap: 8px; }
.footer-social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-social-icons a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* Main footer — light */
.footer-main {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}
.footer-logo img { height: 48px; margin-bottom: 18px; }
.footer-desc { color: var(--text-muted); font-size: 0.86rem; line-height: 1.8; margin-bottom: 14px; }
.footer-address {
  display: flex; align-items: flex-start; gap: 7px;
  color: var(--text-muted); font-size: 0.86rem;
}
.footer-address i { color: var(--gold); margin-top: 3px; }
.footer-col h4 {
  color: var(--primary);
  font-size: 0.82rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.86rem;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-map img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  filter: saturate(0.9);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 16px; padding: 18px 0; }
  .footer-newsletter-form { grid-column: 1 / -1; }
  .footer-newsletter-form input { flex: 1; width: auto; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer-top-inner { grid-template-columns: 1fr; gap: 12px; }
  .footer-newsletter-form { width: 100%; }
  .footer-newsletter-form input { flex: 1; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}


/* ===================================================
   BACK TO TOP
   =================================================== */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 500;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  border: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold); transform: translateY(-3px); }


/* ===================================================
   PAGE LOADER — Light
   =================================================== */
.page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  color: var(--primary);
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 180px; height: 2px;
  background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.loader-progress {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loadBar 1s ease forwards;
}


/* ===================================================
   WHATSAPP BUTTON
   =================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 86px; right: 26px;
  width: 46px; height: 46px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  z-index: 500;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  background: #1cb855;
  color: var(--white);
}


/* ===================================================
   RESPONSIVE HELPERS
   =================================================== */
@media (max-width: 1200px) { .container { padding: 0 18px; } }

@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .testi-track { grid-template-columns: 1fr 1fr; }
  .welcome-inner { gap: 44px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 64px 0; }
  .rooms-section { padding: 64px 0; }
  .welcome-section { padding: 64px 0; }
}

@media (max-width: 768px) {
  .section-pad { padding: 52px 0; }
  .rooms-section { padding: 52px 0; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .welcome-section { padding: 52px 0; }
  .page-hero { height: 240px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 44px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .container { padding: 0 14px; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .page-hero { height: 220px; }
  .page-hero-content h1 { font-size: 1.4rem; }
  .cta-banner { padding: 60px 0; background-attachment: scroll; }
  .cta-banner-content h2 { font-size: 1.4rem; }
}

@media (max-width: 500px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 22px 16px; }
  .modal-form-grid { grid-template-columns: 1fr; }
  .back-top { bottom: 18px; right: 16px; }
  .whatsapp-btn { bottom: 72px; right: 14px; }
  .testi-track { grid-template-columns: 1fr; }
  .footer-top-inner { gap: 14px; }
  .services-grid { gap: 12px; }
}

@media (max-width: 380px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-icon-card { padding: 20px 12px; }
  .hero-badge { display: none; }
}


/* ===================================================
   NEARBY ATTRACTIONS — Local SEO Section
   =================================================== */
.nearby-section { background: var(--cream); }
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nearby-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.nearby-icon {
  width: 60px; height: 60px;
  background: var(--gold-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--gold);
}
.nearby-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.nearby-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.nearby-dist {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.nearby-dist i { margin-right: 4px; }
@media (max-width: 1024px) { .nearby-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .nearby-grid { grid-template-columns: 1fr; gap: 16px; } }


/* ===================================================
   BLOG — Cards
   =================================================== */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 22px 20px 20px; }
.blog-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.blog-card-link:hover { color: var(--gold-dark); }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .blog-grid { grid-template-columns: 1fr; } }
