/* ============================================================
   Ramada Plaza by Wyndham Palm Grove  - JUHU BEACH, MUMBAI
   Main Stylesheet
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES (Edit colors and fonts here)
   ============================================================ */
:root {
  --primary: #d40f24;
  /* Main Red */
  --secondary: #333333;
  /* Gold Accent */
  --bg: #ffffff;
  /* White Background */
  --dark: #1a1a1a;
  /* Near-black for text */
  --gray-light: #f5f5f5;
  /* Light section bg */
  --gray-mid: #888888;
  /* Muted text */
  --border: #e0e0e0;
  /* Border lines */

  --font-heading: 'Alta', serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.4s ease;
  --radius: 4px;
  --max-width: 1320px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section-desc {
  max-width: 600px;
  color: var(--gray-mid);
  line-height: 1.8;
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #b80d1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 15, 36, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--primary);
  color: #fff;
}

.btn-gold:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.text-center {
  text-align: center;
}

/* ============================================================
   5. SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   6. HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* Transparent on hero, white on scroll */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

/* Top bar (phone + email strip) */
.header-topbar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  transition: all 0.4s ease;
}

.site-header.scrolled .header-topbar {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}

.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-contact a {
  color: rgba(255, 255, 255, 0.75);
  margin-left: 1.5rem;
  transition: color 0.3s;
}

.topbar-contact a:hover {
  color: var(--secondary);
}

.topbar-contact a:first-child {
  margin-left: 0;
}

/* Main nav */
.header-main {
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 70px;
  width: auto;
  transition: all 0.4s ease;
  filter: brightness(0) invert(1);
  /* White logo on transparent */
}

.site-header.scrolled .nav-logo img {
  height: 55px;
  filter: none;
  /* Full color on white bg */
}

/* Navigation links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links>li>a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.7rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.5px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
  transform: scaleX(1);
}

.nav-links>li>a:hover {
  color: #fff;
}

.site-header.scrolled .nav-links>li>a {
  color: var(--dark);
}

.site-header.scrolled .nav-links>li>a:hover {
  color: var(--primary);
}

/* Book Now button in nav */
.nav-book-btn {
  flex-shrink: 0;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.site-header.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
 /* font-family: var(--font-heading); */
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── DESKTOP DROPDOWN ── */
.nav-has-dropdown {
  position: relative;
}

.nav-chevron {
  font-size: 0.6rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 230px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  padding: 0.6rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 1100;
}

/* small arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown li a:hover {
  color: var(--primary);
  background: rgba(201, 168, 76, 0.06);
}

/* Remove underline animation on dropdown items */
.nav-dropdown li a::after {
  display: none !important;
}

/* ── MOBILE ACCORDION SUBMENU ── */
.mobile-has-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
}

.mobile-sub-toggle {
  /* font-family: var(--font-heading); */
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
  padding: 0;
  line-height: 1;
}

.mobile-sub-toggle:hover {
  color: var(--primary);
}

.mobile-sub-toggle i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.mobile-sub-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
  overflow: hidden;
  animation: mobileSubOpen 0.3s ease;
}

.mobile-sub[hidden] {
  display: none;
}

.mobile-sub a {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65) !important;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-sub a:hover {
  color: var(--primary) !important;
}

@keyframes mobileSubOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   7. HERO SECTION (Video Banner)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 900px;
  top: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.3s forwards;
}

.hero-badge span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.hero-badge p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ============================================================
   7b. HERO IMAGE CAROUSEL
   ============================================================ */

/* The outer hero already handles height/flex via .hero */
.hero-carousel {
  overflow: hidden;
  cursor: default;
}

/* Track holds all slides stacked on top of each other */
.hc-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Individual slide */
.hc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  will-change: opacity;
}

.hc-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Background image – 1920×1080, cover fill */
.hc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}

/* ── Two Hero Sliders Logic ── */
.mobile-hero {
  display: none !important;
}

@media (max-width: 767px) {
  .desktop-hero {
    display: none !important;
  }
  .mobile-hero {
    display: block !important;
  }
}

.hc-slide.active .hc-bg {
  transform: scale(1);
}

/* Dark gradient overlay per slide */
.hc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.42) 50%, rgb(0 0 0 / 0%) 100%);
  z-index: 1;
}

/* Content box per slide */
.hc-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  padding-top: 120px;
  /* offset for fixed header */
}

/* Animate content in when slide becomes active */
.hc-slide .hero-badge,
.hc-slide .hero-title,
.hc-slide .hero-subtitle,
.hc-slide .hero-actions {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hc-slide.active .hero-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hc-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hc-slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hc-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* Reset the keyframe animations from the original hero for carousel use */
.hc-slide .hero-badge,
.hc-slide .hero-title,
.hc-slide .hero-subtitle,
.hc-slide .hero-actions {
  animation: none !important;
  padding-top: 260px;
}

/* ── Arrow buttons ── */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hc-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(212, 15, 36, 0.4);
}

.hc-prev {
  left: 2rem;
}

.hc-next {
  right: 2rem;
}

/* ── Dot indicators ── */
.hc-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.hc-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}

.hc-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hc-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .hc-prev {
    left: 1rem;
  }

  .hc-next {
    right: 1rem;
  }

  .hc-content {
    padding: 1.5rem;
    padding-top: 100px;
  }

  .hc-dots {
    bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .hc-arrow {
    display: none;
  }

  .hc-dots {
    bottom: 3.5rem;
  }
}

/* ============================================================
   8. BOOKING BAR
   ============================================================ */
.booking-bar {
  background: #fff;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.booking-form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.booking-field {
  flex: 1;
  min-width: 160px;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 0.3s;
}

.booking-field:hover {
  background: var(--gray-light);
}

.booking-field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
}

.booking-field input,
.booking-field select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  width: 100%;
}

.booking-field select option {
  color: var(--dark);
}

.booking-submit {
  padding: 0 2.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.booking-submit:hover {
  background: #b80d1f;
}

/* ============================================================
   9. ABOUT / WELCOME SECTION
   ============================================================ */
.about-section {
  padding: 7rem 0;
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 6px solid #fff;
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(212, 15, 36, 0.4);
}

.about-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
}

.about-badge .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content .section-desc {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 1rem;
}

.about-feature-item .text {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  padding-top: 0.5rem;
}

/* ============================================================
   10. ROOMS SECTION
   ============================================================ */
.rooms-section {
  padding: 7rem 0;
  background: var(--gray-light);
}

.rooms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
}

.room-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-card-desc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.room-amenities {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #666;
}

.room-amenity i {
  color: var(--secondary);
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   11. EXPERIENCE / HIGHLIGHTS SECTION
   ============================================================ */
.experience-section {
  padding: 7rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  pointer-events: none;
}

.experience-section .section-label {
  color: #ffffff;
}

.experience-section .section-title {
  color: #fff;
}

.experience-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.experience-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.exp-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: var(--radius);
  transition: all 0.4s ease;
  cursor: default;
}

.exp-card:hover {
  border-color: var(--secondary);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-4px);
}

.exp-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: #ffffff;
  transition: background 0.3s;
}

.exp-card:hover .exp-icon {
  background: var(--secondary);
  color: #fff;
}

.exp-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.exp-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ============================================================
   12. DINING SECTION
   ============================================================ */
.dining-section {
  padding: 7rem 0;
  background: var(--bg);
}

.dining-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dining-content {
  order: 2;
}

.dining-images {
  order: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dining-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}

.dining-img-wrap:first-child {
  /* grid-row: span 2; */
}

.dining-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dining-img-wrap:hover img {
  transform: scale(1.04);
}

.dining-restaurants {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dining-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.dining-item:hover {
  border-color: var(--secondary);
  background: rgba(201, 168, 76, 0.04);
}

.dining-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.dining-item h4 {
  font-size: 1rem;
  font-family: var(--font-heading);
  margin-bottom: 0.3rem;
}

.dining-item p {
  font-size: 0.83rem;
  color: #888;
}

/* ============================================================
   13. EVENTS & BANQUETS SECTION
   ============================================================ */
.events-section {
  padding: 7rem 0;
  background: var(--gray-light);
}

.events-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%);
  transition: all 0.4s ease;
}

.event-card:hover .event-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%);
}

.event-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-body {
  transform: translateY(0);
}

.event-card-body span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.event-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.event-card-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.event-card:hover .event-card-body p {
  max-height: 100px;
}

/* ============================================================
   14. OFFERS SECTION
   ============================================================ */
.offers-section {
  padding: 7rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.offers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.offers-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.offers-content .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.offers-content .section-title {
  color: #fff;
}

.offers-content .section-desc {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
}

.offers-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.offer-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.offer-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.offer-discount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.offer-card h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.offer-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.btn-offer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-offer:hover {
  color: #fff;
  border-color: #fff;
}

/* ============================================================
   15. FACILITIES SECTION
   ============================================================ */
.facilities-section {
  padding: 7rem 0;
  background: var(--bg);
}

.facilities-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.facility-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s ease;
}

.facility-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.facility-icon {
  width: 70px;
  height: 70px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: var(--primary);
  transition: all 0.4s;
}

.facility-card:hover .facility-icon {
  background: var(--primary);
  color: #fff;
}

.facility-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.facility-card p {
  font-size: 0.85rem;
  color: #888;
}

/* ============================================================
   16. LOCATION SECTION
   ============================================================ */
.location-section {
  padding: 7rem 0;
  background: var(--gray-light);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-content .section-desc {
  margin-bottom: 2rem;
  max-width: 100%;
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.location-item .dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.location-item span {
  font-size: 0.9rem;
  color: #555;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   17. STATS COUNTER SECTION
   ============================================================ */
.stats-section {
  padding: 5rem 0;
  background: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   18. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 7rem 0;
  background: var(--bg);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  min-width: 380px;
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-origin {
  font-size: 0.8rem;
  color: #999;
}

.testimonials-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.testimonials-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: var(--dark);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ============================================================
   19. CONTACT / ENQUIRY SECTION
   ============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--primary);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-label {
  color: #ffffff;
}

.contact-info .section-title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-info .section-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  padding-top: 0.5rem;
}

.contact-detail-text .label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
  display: block;
}

.contact-detail-text a,
.contact-detail-text span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  display: block;
  transition: color 0.3s;
}

.contact-detail-text a:hover {
  color: var(--secondary);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: var(--dark);
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.65);
}

.footer-main {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand img {
  height: 65px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-newsletter input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #fff;
  outline: none;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter input:focus {
  border-color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ============================================================
   21. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(212, 15, 36, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #b80d1f;
  transform: translateY(-3px);
}

/* ============================================================
   22. RESPONSIVE STYLES
   ============================================================ */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .offers-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-book-btn {
    display: none;
  }
}

/* iPad / Small Tablet (≤768px) */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 380px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .dining-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dining-content {
    order: 1;
  }

  .dining-images {
    order: 2;
    height: 300px;
  }

  .dining-img-wrap:first-child {
    grid-row: span 1;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .offers-cards {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    flex-direction: column;
  }

  .booking-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex: none;
  }

  .booking-submit {
    padding: 1rem;
    text-align: center;
  }

  .rooms-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    min-width: 300px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

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

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    left: 60%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .dining-images {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dining-img-wrap {
    height: 220px;
  }
}



/*----------- BANQUET HALL ----------------------------*/

.page-hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  transition: transform 7s ease;
}

.page-hero-bg.loaded {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .82) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  top: 40px;
  max-width: 920px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideDown .8s ease .3s forwards;
}

.page-hero-badge span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.page-hero-badge p {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp .8s ease .5s forwards;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp .8s ease .7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp .8s ease .9s forwards;
}

.breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .05em;
  white-space: nowrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color .3s;
}

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

.breadcrumb .sep {
  color: var(--secondary);
}

.breadcrumb .current {
  color: #fff;
}

/* ── QUICK STATS ────────────────────────────────────────── */
.banquet-stats {
  background: var(--dark);
  padding: 3.5rem 0;
}

.banquet-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.bstat {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.bstat:last-child {
  border-right: none;
}

.bstat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: .35rem;
}

.bstat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

/* ── INTRO ──────────────────────────────────────────────── */
.banquet-intro {
  padding: 7rem 0;
  background: var(--bg);
}

.banquet-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.banquet-intro-visual {
  position: relative;
  height: 540px;
}

.bi-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
}

.bi-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 52%;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
  border: 6px solid #fff;
}

.bi-badge {
  position: absolute;
  top: 45%;
  left: 67%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(212, 15, 36, .4);
}

.bi-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}

.bi-badge .lbl {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
}

.banquet-intro-content .section-desc {
  margin-bottom: 1.5rem;
}

.bi-event-types {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.bi-event-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  color: #555;
  font-weight: 500;
  background: var(--gray-light);
  border: 1px solid var(--border);
  padding: .35rem .9rem;
}

.bi-event-tag i {
  color: var(--secondary);
  font-size: .72rem;
}

/* ── VENUE PAGES NAV ────────────────────────────────────── */
.venue-nav-bar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 50;
}

.venue-nav-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.venue-nav-tabs::-webkit-scrollbar {
  display: none;
}

.venue-nav-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all .3s;
}

.venue-nav-tab:hover {
  color: rgba(255, 255, 255, .85);
}

.venue-nav-tab.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* ── VENUE DETAIL SECTIONS ──────────────────────────────── */
.venue-detail-section {
  padding: 7rem 0;
}

.venue-detail-section:nth-child(even) {
  background: var(--gray-light);
}

.venue-detail-section:nth-child(odd) {
  background: var(--bg);
}

.venue-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.venue-detail-inner.reverse {
  direction: rtl;
}

.venue-detail-inner.reverse>* {
  direction: ltr;
}

.venue-detail-img-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .12);
}

.venue-detail-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}

.venue-detail-img-wrap:hover img {
  transform: scale(1.04);
}

.venue-img-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  padding: .8rem 1.1rem;
  border-left: 3px solid var(--secondary);
  color: #fff;
}

.vob-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: .15rem;
}

.vob-value {
  font-size: .85rem;
  font-weight: 600;
}

.venue-detail-content {}

.venue-detail-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.venue-detail-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--secondary);
}

.venue-detail-name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.venue-detail-desc {
  font-size: .9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Capacity grid */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.cap-block {
  background: var(--gray-light);
  padding: 1.25rem;
  border-top: 3px solid var(--secondary);
}

.cap-block-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .75rem;
}

.cap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .3rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
}

.cap-row:last-child {
  border-bottom: none;
}

.cap-row .cap-type {
  color: #666;
}

.cap-row .cap-num {
  font-weight: 700;
  color: var(--dark);
}

/* Amenities chips */
.venue-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.va-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .74rem;
  color: #666;
  background: #fff;
  border: 1px solid var(--border);
  padding: .3rem .85rem;
}

.va-chip i {
  color: var(--secondary);
  font-size: .7rem;
}

/* Sub-sections (Concord 1 & 2) */
.sub-venues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.sub-venue-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-top: 3px solid var(--secondary);
}

.sub-venue-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: .75rem;
}

/* ── AV & TECH SECTION ──────────────────────────────────── */
.tech-section {
  padding: 6rem 0;
  background: var(--dark);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.tech-card {
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 2rem;
  text-align: center;
  transition: border-color .3s;
}

.tech-card:hover {
  border-color: rgba(201, 168, 76, .4);
}

.tech-icon {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.tech-card h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .5rem;
}

.tech-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

/* ── FLOOR PLAN / CAPACITY OVERVIEW ────────────────────── */
.capacity-overview {
  padding: 6rem 0;
  background: #fff;
}

.full-capacity-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: .85rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .07);
}

.full-capacity-table thead {
  background: var(--dark);
  color: #fff;
}

.full-capacity-table thead th {
  padding: 1rem 1.25rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(255, 255, 255, .8);
}

.full-capacity-table thead th:first-child {
  color: #fff;
}

.full-capacity-table tbody tr:nth-child(even) {
  background: var(--gray-light);
}

.full-capacity-table tbody tr:hover {
  background: rgba(201, 168, 76, .07);
}

.full-capacity-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: #555;
}

.full-capacity-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.full-capacity-table .section-row td {
  background: rgba(201, 168, 76, .08);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: .6rem 1.25rem;
}

.full-capacity-table .highlight-row td {
  font-weight: 600;
}

/* ── BUSINESS CENTRE ────────────────────────────────────── */
.business-centre {
  padding: 6rem 0;
  background: var(--gray-light);
}

.bc-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.bc-img {
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .12);
}

.bc-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.bc-img:hover img {
  transform: scale(1.04);
}

.bc-content .section-desc {
  margin-bottom: 1.5rem;
}

.bc-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.bc-service {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: #555;
}

.bc-service i {
  color: var(--secondary);
  width: 14px;
}

/* ── CTA BAND ───────────────────────────────────────────── */
.banquet-cta {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.banquet-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.banquet-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banquet-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: .5rem;
}

.banquet-cta-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}

.banquet-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.btn-white:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .7);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: all .3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── ENQUIRY FORM ───────────────────────────────────────── */
.banquet-enquiry {
  padding: 7rem 0;
  background: var(--dark);
}

.banquet-enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.enquiry-info .section-label {
  color: var(--secondary);
}

.enquiry-info .section-title {
  color: #fff;
}

.enquiry-info p {
  color: rgba(255, 255, 255, .5);
  max-width: 400px;
  margin-bottom: 2rem;
}

.e-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
}

.e-detail-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: .9rem;
}

.e-detail-text .lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  display: block;
  margin-bottom: .2rem;
}

.e-detail-text a,
.e-detail-text span {
  font-size: .86rem;
  color: rgba(255, 255, 255, .8);
  display: block;
  transition: color .3s;
}

.e-detail-text a:hover {
  color: var(--secondary);
}

.enquiry-form-wrap {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 2.5rem;
}

.enquiry-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.75rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-group select option {
  background: var(--dark);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .banquet-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bstat:nth-child(3) {
    border-right: none;
  }

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

@media (max-width: 768px) {
  .banquet-intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .banquet-intro-visual {
    height: 360px;
  }

  .venue-detail-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .venue-detail-inner.reverse {
    direction: ltr;
  }

  .venue-detail-img-wrap img {
    height: 280px;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .sub-venues {
    grid-template-columns: 1fr;
  }

  .bc-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bc-img img {
    height: 280px;
  }

  .bc-services {
    grid-template-columns: 1fr;
  }

  .banquet-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .banquet-cta-btns {
    justify-content: center;
  }

  .banquet-enquiry-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .bstat:nth-child(2) {
    border-right: none;
  }

  .bstat:nth-child(1),
  .bstat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 65vh;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .bi-event-types {
    gap: .4rem;
  }
}



/*---------------------- BOOK YOUR DREAM STAY ----------------------*/

/* ── BOOKING HERO (Full viewport, split layout) ── */
.booking-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 520px;
  overflow: hidden;
  position: relative;
}

/* Left — visual panel */
.booking-hero-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
}

.booking-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1400&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.booking-hero-bg.loaded {
  transform: scale(1);
}

.booking-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .65) 70%, rgba(0, 0, 0, .85) 100%);
}

.booking-hero-visual-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.booking-hero-logo {
  margin-bottom: 3rem;
}

.booking-hero-logo img {
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.booking-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.25rem;
}

.booking-hero-badge span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--secondary);
}

.booking-hero-badge p {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}

.booking-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.booking-hero-subtitle {
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

.booking-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: .5rem 1rem;
  font-size: .74rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

.trust-badge i {
  color: var(--secondary);
  font-size: .8rem;
}

/* ── RIGHT PANEL — Booking form ── */
.booking-form-panel {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: relative;
}

.booking-form-header {
  background: var(--dark);
  padding: 2.5rem 2.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.booking-form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: .3rem;
}

.booking-form-header p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .5);
}

.best-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .35rem .85rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: .75rem;
}

.booking-form-body {
  padding: 2rem 2.5rem;
  flex: 1;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--gray-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  outline: none;
  transition: border-color .3s, background .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: #fff;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

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

.booking-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .3s, transform .3s;
  margin-top: 1.5rem;
}

.booking-submit-btn:hover {
  background: #b80d1f;
  transform: translateY(-1px);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--gray-mid);
  font-size: .8rem;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.book-direct-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .3s;
}

.book-direct-btn:hover {
  background: #333;
}

.booking-form-footer {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--gray-light);
}

.booking-form-footer p {
  font-size: .75rem;
  color: var(--gray-mid);
  text-align: center;
  margin: 0;
}

.booking-form-footer a {
  color: var(--primary);
}

/* ── WHY BOOK DIRECT ── */
.why-direct {
  padding: 6rem 0;
  background: var(--dark);
}

.why-direct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.wd-card {
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 2rem;
  text-align: center;
  transition: border-color .3s;
}

.wd-card:hover {
  border-color: rgba(201, 168, 76, .4);
}

.wd-icon {
  color: var(--secondary);
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.wd-card h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .6rem;
}

.wd-card p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.65;
}

/* ── ROOM SELECTION PREVIEW ── */
.room-preview {
  padding: 6rem 0;
  background: var(--gray-light);
}

.room-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.rp-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  transition: all .4s ease;
}

.rp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.rp-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.rp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

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

.rp-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
}

.rp-body {
  padding: 1.5rem;
}

.rp-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: .35rem;
}

.rp-size {
  font-size: .75rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.rp-size::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--secondary);
}

.rp-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.rp-amenity {
  font-size: .72rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.rp-amenity i {
  color: var(--secondary);
  font-size: .7rem;
}

.rp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  gap: .75rem;
  flex-wrap: wrap;
}

.rp-price .from {
  font-size: .67rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
}

.rp-price .amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
}

.rp-price .per {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--gray-mid);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testi-card {
  background: var(--gray-light);
  padding: 2rem;
  border-top: 3px solid var(--secondary);
}

.testi-stars {
  color: var(--secondary);
  font-size: .9rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}

.testi-text {
  font-size: .88rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: .83rem;
  font-weight: 600;
  color: var(--dark);
}

.testi-via {
  font-size: .72rem;
  color: var(--gray-mid);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta-content p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.final-cta-details {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.final-cta-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
}

.final-cta-detail i {
  color: rgba(255, 255, 255, .6);
  width: 14px;
}

.final-cta-contact {
  background: rgba(0, 0, 0, .25);
  padding: 2.5rem;
}

.final-cta-contact h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  transition: all .3s;
  text-decoration: none;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
}

.contact-btn i {
  color: var(--secondary);
  font-size: 1.1rem;
  width: 18px;
}

.contact-btn .cb-label {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  display: block;
  margin-bottom: .1rem;
}

.contact-btn .cb-val {
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .booking-hero {
    grid-template-columns: 1fr 460px;
  }
}

@media (max-width: 1024px) {
  .booking-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .booking-hero-visual {
    min-height: 55vh;
    padding: 3rem 2rem;
  }

  .booking-form-panel {
    max-width: 100%;
  }

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

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

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

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .booking-form-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .booking-form-body {
    padding: 1.5rem;
  }

  .booking-form-footer {
    padding: 1.25rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .room-preview-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .why-direct-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .booking-hero-visual {
    padding: 2rem 1.25rem;
  }

  .why-direct-grid {
    grid-template-columns: 1fr;
  }
}


/*------------------- CONTACT ---------------------------*/

.page-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.simplotel.com/simplotel/image/upload/x_0,y_0,w_1650,h_928,r_0,c_crop,q_90,fl_progressive/w_900,f_auto,c_fit/ramada-plaza-by-wyndham-palm-grove/Deluxe_Room_at_Hotel_Ramada_Plaza_Palm_Grove_Juhu_Beach_Mumbai,_5_star_hotel_rooms_in_Mumbai_asfdsaf');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.06);
  transition: transform 7s ease;
}

.page-hero-bg.loaded {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  top: 40px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideDown .8s ease .3s forwards;
}

.page-hero-badge span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.page-hero-badge p {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp .8s ease .5s forwards;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp .8s ease .7s forwards;
}

.breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .05em;
  white-space: nowrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color .3s;
}

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

.breadcrumb .sep {
  color: var(--secondary);
}

.breadcrumb .current {
  color: #fff;
}

/* ── QUICK CONTACT BAND ─────────────────────────── */
.quick-contact-band {
  background: var(--primary);
  padding: 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.qc-item {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s;
}

.qc-item:last-child {
  border-right: none;
}

.qc-item:hover {
  background: rgba(255, 255, 255, .04);
}

.qc-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.qc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  color: var(--gray-light);
  font-size: 1.2rem;
}

.qc-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  display: block;
  margin-bottom: .35rem;
}

.qc-value {
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  display: block;
  line-height: 1.5;
}

.qc-value.small {
  font-size: .8rem;
}

/* ── MAIN CONTACT SECTION ───────────────────────── */
.contact-main {
  padding: 7rem 0;
  background: var(--bg);
}

.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

/* Left — Info Panel */
.contact-info-panel {}

.contact-info-panel .section-desc {
  margin-bottom: 2rem;
  max-width: 100%;
}

.contact-detail-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.cdb-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.cdb-row:last-child {
  border-bottom: none;
}

.cdb-row:hover {
  background: var(--gray-light);
}

.cdb-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: .95rem;
}

.cdb-text {}

.cdb-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: .2rem;
}

.cdb-value {
  font-size: .88rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.6;
}

.cdb-value a {
  color: var(--dark);
  transition: color .3s;
  display: block;
}

.cdb-value a:hover {
  color: var(--primary);
}

/* Map embed */
.contact-map-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

.contact-map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--gray-light);
  font-size: .8rem;
  color: #555;
  border-top: 1px solid var(--border);
}

.contact-map-link a {
  color: var(--primary);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: opacity .3s;
}

.contact-map-link a:hover {
  opacity: .75;
}

/* Right — Contact Form */
.contact-form-panel {
  background: #fff;
  padding: 5rem 3rem;
}

.contact-form-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: .5rem;
}

.contact-form-panel p {
  font-size: .88rem;
  color: #333333;
  margin-bottom: 2rem;
  line-height: 1.65;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-group select option {
  background: var(--dark);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ── CORPORATE OFFICES ──────────────────────────── */
.corporate-section {
  padding: 7rem 0;
  background: var(--gray-light);
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.corp-card {
  background: #fff;
  padding: 2rem;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  transition: all .4s ease;
}

.corp-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.corp-city {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .5rem;
}

.corp-card h4 {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.corp-card address {
  font-style: normal;
  font-size: .83rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.corp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: #555;
  margin-bottom: .35rem;
}

.corp-contact-row i {
  color: var(--secondary);
  width: 14px;
  flex-shrink: 0;
  margin-top: .1rem;
}

.corp-contact-row a {
  color: #555;
  transition: color .3s;
}

.corp-contact-row a:hover {
  color: var(--primary);
}

/* ── GETTING HERE SECTION ───────────────────────── */
.getting-here {
  padding: 7rem 0;
  background: var(--bg);
}

.getting-here-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.directions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.direction-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  align-items: center;
  transition: background .3s;
}

.direction-item:last-child {
  border-bottom: none;
}

.direction-item:hover {
  background: var(--gray-light);
}

.direction-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(212, 15, 36, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.direction-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  margin-bottom: .2rem;
}

.direction-detail {
  font-size: .85rem;
  color: #666;
}

.direction-detail span {
  font-weight: 600;
  color: var(--primary);
}

.full-map-wrap {
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .1);
}

.full-map-wrap iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: none;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qc-item:nth-child(2) {
    border-right: none;
  }

  .qc-item:nth-child(1),
  .qc-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

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

@media (max-width: 768px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-panel {
    padding: 2rem;
  }

  .getting-here-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .full-map-wrap iframe {
    height: 320px;
  }

  .corporate-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 58vh;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   PAGE-SPECIFIC STYLES - Consolidated from inline HTML styles
   ============================================================ */

/* ============================================================
   PAGE HERO COMPONENT (shared across all interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.page-hero-bg.loaded {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.78) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  top: 40px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.3s forwards;
}

.page-hero-badge span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.page-hero-badge p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

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

.breadcrumb .sep {
  color: var(--secondary);
}

.breadcrumb .current {
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   PAGE-SPECIFIC STYLES - Consolidated from inline HTML styles
   ============================================================ */
/* == INDEX PAGE STYLES == */


/* == ROOMS PAGE STYLES == */
/* =========================================================
       PAGE HERO (static image banner instead of video)
       ========================================================= */

/* Breadcrumb */

/* =========================================================
       ROOMS FILTER TABS
       ========================================================= */
.rooms-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab:hover {
  color: var(--dark);
}

.filter-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* =========================================================
       ROOMS LISTING SECTION
       ========================================================= */
.rooms-listing {
  padding: 6rem 0;
  background: var(--gray-light);
}

.rooms-listing-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Full-width alternating room card */
.room-detail-card {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: box-shadow 0.4s ease;
}

.room-detail-card:hover {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
}

.room-detail-card.reverse {
  direction: rtl;
}

.room-detail-card.reverse>* {
  direction: ltr;
}

.room-detail-img {
  position: relative;
  overflow: hidden;
}

.room-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.room-detail-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  z-index: 2;
}

.room-detail-card.reverse .room-detail-tag {
  left: auto;
  right: 1.5rem;
}

.room-detail-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-detail-size {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-detail-size::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--secondary);
}

.room-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.room-detail-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.room-detail-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin-bottom: 2rem;
}

.room-detail-amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #555;
}

.room-detail-amenity i {
  color: var(--secondary);
  width: 14px;
  font-size: 0.85rem;
}

.room-detail-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.room-price {
  display: flex;
  flex-direction: column;
}

.room-price-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
}

.room-price-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark);
  line-height: 1.1;
}

.room-price-value span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-weight: 400;
}

/* =========================================================
       ROOM HIGHLIGHTS STRIP (Dark band)
       ========================================================= */
.room-highlights-strip {
  background: var(--dark);
  padding: 5rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--secondary);
  font-size: 1.3rem;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.highlight-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* =========================================================
       ROOM POLICIES SECTION
       ========================================================= */
.policies-section {
  padding: 6rem 0;
  background: #fff;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.policy-card {
  padding: 2rem;
  background: var(--gray-light);
  border-left: 3px solid var(--secondary);
}

.policy-card-icon {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.policy-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.policy-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

/* =========================================================
       BOOKING CTA BAND
       ========================================================= */
.rooms-cta-band {
  background: var(--primary);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.rooms-cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.rooms-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.rooms-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.rooms-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.rooms-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
       GALLERY STRIP
       ========================================================= */
.rooms-gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 280px;
  overflow: hidden;
}

.gallery-strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-strip-item:hover img {
  transform: scale(1.1);
}

.gallery-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.gallery-strip-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

/* =========================================================
       RESPONSIVE
       ========================================================= */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-item:nth-child(2) {
    border-right: none;
  }

  .highlight-item:nth-child(1),
  .highlight-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .policies-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rooms-gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .rooms-gallery-strip .gallery-strip-item:nth-child(4),
  .rooms-gallery-strip .gallery-strip-item:nth-child(5) {
    display: none;
  }
}

@media (max-width: 768px) {
  .room-detail-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .room-detail-card.reverse {
    direction: ltr;
  }

  .room-detail-img {
    height: 280px;
  }

  .room-detail-content {
    padding: 2rem;
  }

  .room-detail-card.reverse .room-detail-tag {
    left: 1.5rem;
    right: auto;
  }

  .policies-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rooms-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .rooms-cta-actions {
    justify-content: center;
  }

  .rooms-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 220px;
  }

  .rooms-gallery-strip .gallery-strip-item:nth-child(3),
  .rooms-gallery-strip .gallery-strip-item:nth-child(4),
  .rooms-gallery-strip .gallery-strip-item:nth-child(5) {
    display: none;
  }

  .room-detail-amenities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .filter-tabs {
    padding: 0 1rem;
  }

  .rooms-listing {
    padding: 3rem 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* == FACILITIES PAGE STYLES == */
/* ── PAGE HERO ──────────────────────────────────── */

/* ── FACILITIES INTRO STATS ─────────────────────── */
.fac-stats {
  background: #f9f8f6;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.fac-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.fstat {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.fstat:last-child {
  border-right: none;
}

.fstat-icon {
  color: var(--primary);
  font-size: 1.6rem;
  display: block;
  margin-bottom: .6rem;
}

.fstat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ── FACILITIES FEATURE SECTIONS (alternating) ── */
.fac-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

.fac-feature.light-bg .fac-feature-content {
  background: #fff;
}

.fac-feature.gray-bg .fac-feature-content {
  background: var(--gray-light);
}

.fac-feature.dark-bg .fac-feature-content {
  background: #f9f8f6;
}

.fac-feature-img {
  position: relative;
  overflow: hidden;
}

.fac-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.fac-feature:hover .fac-feature-img img {
  transform: scale(1.04);
}

.fac-feature-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  backdrop-filter: blur(8px);
  padding: .75rem 1.1rem;
  border-left: 3px solid var(--secondary);
  color: #fff;
}

.fac-feature-img-badge .tag-lbl {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: .15rem;
}

.fac-feature-img-badge .tag-val {
  font-size: .88rem;
  font-weight: 600;
}

.fac-feature-content {
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fac-content-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.fac-content-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--secondary);
}

.fac-content-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.fac-content-title.light {
  color: var(--dark);
}

.fac-content-title.dark {
  color: var(--dark);
}

.fac-content-desc {
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.fac-content-desc.light {
  color: #666;
}

.fac-content-desc.dark {
  color: #666;
}

.fac-feature-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}

.fac-feature-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .86rem;
}

.fac-feature-item.light {
  color: #555;
}

.fac-feature-item.dark {
  color: #555;
}

.fac-feature-item i {
  color: var(--secondary);
  width: 14px;
  font-size: .9rem;
  flex-shrink: 0;
}

/* availability chip */
.availability-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .4rem 1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.availability-chip i {
  font-size: .75rem;
}

/* ── ADDITIONAL SMALL FACILITIES GRID ───────────── */
.small-fac-section {
  padding: 6rem 0;
  background: var(--gray-light);
}

.small-fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.small-fac-card {
  background: #fff;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all .4s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
}

.small-fac-card:hover {
  border-bottom-color: var(--secondary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.small-fac-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--secondary);
  font-size: 1.4rem;
}

.small-fac-card h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .6rem;
}

.small-fac-card p {
  font-size: .83rem;
  color: #777;
  line-height: 1.65;
}

/* ── MEMBERSHIP BAND ────────────────────────────── */
.membership-band {
  background: var(--primary);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.membership-band::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.membership-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.membership-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: .5rem;
}

.membership-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}

.membership-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .fac-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fstat:nth-child(3) {
    border-right: none;
  }

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

@media (max-width: 768px) {
  .fac-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fac-feature-img {
    height: 300px;
  }

  .fac-feature-content {
    padding: 2.5rem 2rem;
  }

  .fac-feature.reverse-mobile {
    direction: ltr;
  }

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

  .fstat:nth-child(2) {
    border-right: none;
  }

  .fstat:nth-child(1),
  .fstat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .membership-inner {
    flex-direction: column;
    text-align: center;
  }

  .membership-btns {
    justify-content: center;
  }
}

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

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

/* == OFFERS PAGE STYLES == */
/* =========================================================
       PAGE HERO
       ========================================================= */

/* =========================================================
       OFFER COUNTDOWN STRIP
       ========================================================= */
.offers-urgency-strip {
  background: var(--primary);
  padding: 0.85rem 0;
  text-align: center;
}

.offers-urgency-strip p {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.offers-urgency-strip strong {
  color: var(--secondary);
}

/* =========================================================
       FEATURED OFFER (Hero-style large card)
       ========================================================= */
.featured-offer-section {
  padding: 6rem 0;
  background: var(--bg);
}

.featured-offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

.featured-offer-img {
  position: relative;
  overflow: hidden;
}

.featured-offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.featured-offer-card:hover .featured-offer-img img {
  transform: scale(1.04);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge-tag {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  display: inline-block;
}

.badge-discount {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  padding: 0.3rem 1rem;
  display: inline-block;
}

.featured-offer-content {
  background: var(--dark);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.featured-offer-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.featured-offer-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--secondary);
}

.featured-offer-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.featured-offer-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.offer-inclusions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.offer-inclusion-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.offer-inclusion-item i {
  color: var(--secondary);
  width: 14px;
}

.featured-offer-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
       OFFERS GRID SECTION
       ========================================================= */
.offers-grid-section {
  padding: 6rem 0;
  background: var(--gray-light);
}

.offers-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.offer-card {
  /* background: #fff; */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.offer-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.offer-card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
}

.offer-card-discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 0.25rem 0.75rem;
}

.offer-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.offer-card-desc {
  font-size: 0.86rem;
  color: #777 !important;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.offer-card-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--gray-light);
}

.offer-card-includes-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.25rem;
}

.offer-include-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #555;
}

.offer-include-item i {
  color: var(--secondary);
  font-size: 0.75rem;
  width: 12px;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
  flex-wrap: wrap;
}

.offer-validity {
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

.offer-validity i {
  color: var(--secondary);
  margin-right: 0.3rem;
}

/* =========================================================
       EXCLUSIVE MEMBERSHIP STRIP
       ========================================================= */
.wyndham-strip {
  background: var(--dark);
  padding: 4rem 0;
}

.wyndham-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.wyndham-strip h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.wyndham-strip p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 560px;
}

/* =========================================================
       CORPORATE & LONG STAY SECTION
       ========================================================= */
.corporate-section {
  padding: 6rem 0;
  background: var(--bg);
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.corporate-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  min-height: 320px;
  transition: box-shadow 0.4s ease;
}

.corporate-card:hover {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.13);
}

.corporate-card-img {
  overflow: hidden;
}

.corporate-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.corporate-card:hover .corporate-card-img img {
  transform: scale(1.05);
}

.corporate-card-content {
  padding: 2.25rem;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.corporate-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.corporate-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.corporate-card-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* =========================================================
       HOW TO BOOK SECTION
       ========================================================= */
.how-to-book {
  padding: 6rem 0;
  background: var(--gray-light);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.how-step h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.83rem;
  color: #777;
  line-height: 1.6;
}

/* =========================================================
       OFFERS CTA BAND
       ========================================================= */
.offers-cta-band {
  background: var(--primary);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.offers-cta-band::before {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.offers-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.offers-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.offers-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.offers-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
       RESPONSIVE
       ========================================================= */
@media (max-width: 1024px) {
  .offers-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .how-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .featured-offer-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-offer-img {
    height: 300px;
  }

  .featured-offer-content {
    padding: 2.5rem 2rem;
  }

  .offers-cards-grid {
    grid-template-columns: 1fr;
  }

  .corporate-grid {
    grid-template-columns: 1fr;
  }

  .corporate-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .corporate-card-img {
    height: 220px;
  }

  .wyndham-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offers-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .offers-cta-actions {
    justify-content: center;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {

  .how-steps {
    grid-template-columns: 1fr;
  }
}

/* == GALLERY PAGE STYLES == */
/* ── PAGE HERO ──────────────────────────────────────────── */

/* ── FILTER BAR ─────────────────────────────────────────── */
.gallery-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.gallery-filter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.25rem;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}

.filter-tab:hover {
  color: var(--dark);
}

.filter-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.gallery-count {
  font-size: .78rem;
  color: var(--gray-mid);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.gallery-count span {
  color: var(--primary);
}

/* ── MASONRY GALLERY ────────────────────────────────────── */
.gallery-section {
  padding: 4rem 0 6rem;
  background: var(--gray-light);
}

.masonry-grid {
  columns: 4;
  column-gap: 10px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background .4s ease;
}

.masonry-item:hover .masonry-item-overlay {
  background: rgba(0, 0, 0, .45);
}

.masonry-item-caption {
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s ease;
}

.masonry-item:hover .masonry-item-caption {
  opacity: 1;
  transform: translateY(0);
}

.masonry-item-caption h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  margin-bottom: .15rem;
}

.masonry-item-caption span {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.masonry-item-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  opacity: 0;
  transition: all .3s;
}

.masonry-item:hover .masonry-item-zoom {
  opacity: 1;
}

/* Hidden items (filtering) */
.masonry-item[style*="display: none"],
.masonry-item.hidden {
  display: none !important;
}

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .8);
}

.lightbox-caption {
  text-align: center;
}

.lightbox-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .2rem;
}

.lightbox-caption span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .3s;
}

.lightbox-close:hover {
  color: var(--secondary);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 1.2rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  border-radius: 0;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .15em;
}

/* ── LOAD MORE ──────────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* ── GALLERY CTA BAND ───────────────────────────────────── */
.gallery-cta {
  background: var(--primary);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.gallery-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: .5rem;
}

.gallery-cta-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}

.gallery-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .masonry-grid {
    columns: 3;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    columns: 2;
  }

  .gallery-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-cta-btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    columns: 2;
    column-gap: 6px;
  }

  .masonry-item {
    margin-bottom: 6px;
  }

  .lightbox-prev {
    left: .5rem;
  }

  .lightbox-next {
    right: .5rem;
  }

  .gallery-filter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* == LOCATION PAGE STYLES == */
/* ── PAGE HERO ── */
.hero-address-chip {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .7rem 1.5rem;
  color: rgba(255, 255, 255, .9);
  font-size: .82rem;
  opacity: 0;
  animation: fadeSlideUp .8s ease .9s forwards;
}

.hero-address-chip i {
  color: var(--secondary);
}

/* ── DISTANCE BAND ── */
.distance-band {
  background: var(--dark);
  padding: 0;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.dist-item {
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s;
}

.dist-item:last-child {
  border-right: none;
}

.dist-item:hover {
  background: rgba(255, 255, 255, .04);
}

.dist-icon {
  color: var(--secondary);
  font-size: 1.5rem;
  display: block;
  margin-bottom: .6rem;
}

.dist-km {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  display: block;
}

.dist-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: .3rem;
  display: block;
}

/* ── MAP SECTION ── */
.map-section {
  padding: 6rem 0;
  background: var(--bg);
}

.map-section-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
}

.map-embed-wrap {
  box-shadow: 0 16px 60px rgba(0, 0, 0, .12);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 680px;
  display: block;
  border: none;
}

.map-embed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem;
  background: var(--dark);
  gap: 1rem;
}

.map-embed-bar span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.map-embed-bar span i {
  color: var(--secondary);
}

.map-embed-bar a {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: opacity .3s;
}

.map-embed-bar a:hover {
  opacity: .75;
}

/* Address card on right */
.location-info-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-detail-block {
  border: 1px solid var(--border);
  overflow: hidden;
}

.loc-detail-header {
  background: var(--dark);
  padding: 1rem 1.5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.loc-detail-row {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.loc-detail-row:last-child {
  border-bottom: none;
}

.loc-detail-row:hover {
  background: var(--gray-light);
}

.loc-detail-icon {
  color: var(--secondary);
  font-size: .95rem;
  width: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
}

.loc-detail-text .lbl {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: .2rem;
}

.loc-detail-text .val {
  font-size: .86rem;
  color: var(--dark);
  line-height: 1.55;
}

.loc-detail-text .val a {
  color: var(--dark);
  display: block;
  transition: color .3s;
}

.loc-detail-text .val a:hover {
  color: var(--primary);
}

/* Transfer CTA inside card */
.transfer-cta {
  background: var(--primary);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transfer-cta h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
}

.transfer-cta p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  margin: 0;
}

.transfer-cta-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn-white-sm {
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .65rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.btn-white-sm:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-1px);
}

.btn-outline-white-sm {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .65rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  transition: all .3s;
}

.btn-outline-white-sm:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* ── GETTING HERE SECTION ── */
.getting-here {
  padding: 6rem 0;
  background: var(--gray-light);
}

.transport-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.transport-tabs-bar::-webkit-scrollbar {
  display: none;
}

.transport-tab {
  flex-shrink: 0;
  padding: .9rem 1.75rem;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.transport-tab i {
  color: var(--secondary);
}

.transport-tab:hover {
  color: var(--dark);
}

.transport-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.transport-panel {
  display: none;
}

.transport-panel.active {
  display: block;
}

.transport-route-card {
  background: #fff;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.transport-route-card:first-child {
  border-top: 1px solid var(--border);
}

.transport-route-card:hover {
  background: rgba(201, 168, 76, .04);
}

.route-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(201, 168, 76, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
}

.route-info .route-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .2rem;
}

.route-info .route-detail {
  font-size: .83rem;
  color: #666;
  line-height: 1.5;
}

.route-distance {
  text-align: right;
}

.route-distance .dist {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.route-distance .time {
  font-size: .72rem;
  color: var(--gray-mid);
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── ATTRACTIONS SECTION ── */
.attractions-section {
  padding: 6rem 0;
  background: var(--bg);
}

.attractions-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.attr-filter-btn {
  padding: .45rem 1.1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--gray-mid);
  cursor: pointer;
  transition: all .3s;
}

.attr-filter-btn:hover,
.attr-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.attraction-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.attraction-card-img {
  height: 200px;
  overflow: hidden;
}

.attraction-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.attraction-card:hover .attraction-card-img img {
  transform: scale(1.07);
}

.attraction-card-body {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
}

.attraction-cat {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: .3rem;
}

.attraction-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: .25rem;
}

.attraction-dist {
  font-size: .78rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.attraction-dist i {
  color: var(--secondary);
  font-size: .7rem;
}

/* ── NEIGHBOURHOOD SECTION ── */
.neighbourhood {
  padding: 6rem 0;
  background: var(--dark);
}

.neighbourhood-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.neighbourhood-content .section-desc {
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.neighbourhood-content .section-title {
  color: #fff;
}

.neigh-points {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.neigh-point {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.neigh-point-icon {
  color: var(--secondary);
  font-size: .95rem;
  width: 16px;
  flex-shrink: 0;
  margin-top: .2rem;
}

.neigh-point-text {
  font-size: .87rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.neighbourhood-img {
  position: relative;
  height: 480px;
}

.neigh-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.neigh-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

/* ── BOOK CTA ── */
.location-cta {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.location-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.location-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.location-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: .5rem;
}

.location-cta-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}

.location-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .map-section-inner {
    grid-template-columns: 1fr;
  }

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

  .dist-item:nth-child(3) {
    border-right: none;
  }

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

  .neighbourhood-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .neighbourhood-img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .map-section-inner {
    gap: 2.5rem;
  }

  .map-embed-wrap iframe {
    height: 320px;
  }

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

  .dist-item:nth-child(2) {
    border-right: none;
  }

  .dist-item:nth-child(1),
  .dist-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .transport-route-card {
    grid-template-columns: 50px 1fr;
  }

  .route-distance {
    display: none;
  }

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

  .location-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .location-cta-btns {
    justify-content: center;
  }
}

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

  .attractions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* == WEDDINGS PAGE STYLES == */
/* ── PAGE HERO ──────────────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

/* ── WEDDING STATS BAND ─────────────────────────────────── */
.wedding-stats {
  background: var(--primary);
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wedding-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.wstat {
  padding: 1.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.wstat:last-child {
  border-right: none;
}

.wstat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.wstat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ── WHY RAMADA WEDDINGS ────────────────────────────────── */
.why-section {
  padding: 7rem 0;
  background: var(--bg);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 580px;
}

.why-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.why-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 52%;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
  border: 6px solid #fff;
}

.why-gold-badge {
  position: absolute;
  top: 46%;
  left: 68%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #fff;
  padding: 1.4rem 1.6rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.why-gold-badge .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
  display: block;
}

.why-gold-badge .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .9;
}

.why-content .section-desc {
  margin-bottom: 1.5rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-feature .icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 0.95rem;
}

.why-feature .text {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  padding-top: 0.55rem;
  line-height: 1.5;
}

/* ── VENUE CARDS ────────────────────────────────────────── */
.venues-section {
  padding: 7rem 0;
  background: var(--gray-light);
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.venue-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: all .45s ease;
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
}

.venue-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.venue-card-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.venue-card.featured .venue-card-img {
  height: auto;
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.venue-card:hover .venue-card-img img {
  transform: scale(1.05);
}

.venue-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .38rem .9rem;
}

.venue-tag.red {
  background: var(--primary);
}

.venue-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venue-card.featured .venue-card-body {
  padding: 3rem;
  justify-content: center;
}

.venue-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--dark);
  margin-bottom: .6rem;
}

.venue-desc {
  font-size: .88rem;
  color: #777;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  /* flex: 1; */
}

.capacity-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: .82rem;
}

.capacity-table thead tr {
  background: var(--gray-light);
}

.capacity-table th {
  padding: .55rem .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--gray-mid);
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.capacity-table td {
  padding: .5rem .75rem;
  color: #555;
  border-bottom: 1px solid var(--border);
}

.capacity-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.capacity-table tr:last-child td {
  border-bottom: none;
}

.capacity-table .sub-head td {
  background: rgba(201, 168, 76, .07);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: .4rem .75rem;
}

.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.venue-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .74rem;
  color: #666;
  background: var(--gray-light);
  padding: .3rem .8rem;
  border: 1px solid var(--border);
}

.venue-chip i {
  color: var(--secondary);
  font-size: .7rem;
}

/* ── WEDDING JOURNEY STEPS ──────────────────────────────── */
.journey-section {
  padding: 7rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .08);
}

.journey-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .08);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
      transparent, rgba(201, 168, 76, .3) 20%,
      rgba(201, 168, 76, .3) 80%, transparent);
}

.journey-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.journey-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.journey-step h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .5rem;
}

.journey-step p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

/* ── WEDDING SERVICES ───────────────────────────────────── */
.services-section {
  padding: 7rem 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transition: width .4s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, .09);
}

.service-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.service-card h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .65rem;
}

.service-card p {
  font-size: .86rem;
  color: #777;
  line-height: 1.7;
}

/* ── TESTIMONIAL / QUOTE ────────────────────────────────── */
.wedding-quote {
  padding: 6rem 0;
  background: var(--gray-light);
  text-align: center;
}

.quote-icon {
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
  font-style: italic;
}

.quote-author {
  font-size: .82rem;
  color: var(--gray-mid);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── GALLERY STRIP ──────────────────────────────────────── */
.wedding-gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 4px;
  overflow: hidden;
}

.wg-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.wg-item:first-child {
  grid-row: span 2;
}

.wg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.wg-item:hover img {
  transform: scale(1.07);
}

.wg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .2);
  transition: background .3s;
}

.wg-item:hover::after {
  background: rgba(0, 0, 0, .08);
}

/* ── CTA BAND ───────────────────────────────────────────── */
.wedding-cta {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.wedding-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.wedding-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.wedding-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: .6rem;
}

.wedding-cta-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
}

.wedding-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── ENQUIRY FORM ───────────────────────────────────────── */
.wedding-enquiry {
  padding: 7rem 0;
  background: var(--gray-light);
}

.wedding-enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.enquiry-info {
  color: var(--gray-mid);
}

.enquiry-info .section-label {
  color: var(--secondary);
}

.enquiry-info .section-title {
  color: var(--dark);
}

.enquiry-info p {
  color: var(--gray-mid);
  max-width: 400px;
  margin-bottom: 2rem;
}

.enquiry-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
}

.enquiry-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: .9rem;
}

.enquiry-detail-text {
  font-size: .86rem;
  color: #555;
}

.enquiry-detail-text .lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: .2rem;
}

.enquiry-detail-text a,
.enquiry-detail-text span {
  color: #555;
  display: block;
  transition: color .3s;
}

.enquiry-detail-text a:hover {
  color: var(--primary);
}

.enquiry-form-wrap {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  padding: 2.5rem;
}

.enquiry-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1.75rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select option {
  background: #fff;
  color: var(--dark);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wedding-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wstat:nth-child(2) {
    border-right: none;
  }

  .wstat:nth-child(1),
  .wstat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .venues-grid {
    grid-template-columns: 1fr;
  }

  .venue-card.featured {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
  }

  .venue-card.featured .venue-card-img {
    height: 300px;
  }

  .journey-steps {
    grid-template-columns: 1fr 1fr;
  }

  .journey-steps::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wedding-gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .wg-item:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-visual {
    height: 380px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .wedding-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wedding-cta-btns {
    justify-content: center;
  }

  .wedding-enquiry-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .wedding-gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }
}

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

  .wedding-gallery-strip {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wg-item {
    height: 200px;
  }

  .wg-item:first-child {
    height: 260px;
  }
}

/* == RESTAURANTS-BAR PAGE STYLES == */
/* =========================================================
       PAGE HERO
       ========================================================= */

/* =========================================================
       DINING NAV TABS
       ========================================================= */
.dining-nav-bar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 50;
}

.dining-nav-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.dining-nav-tabs::-webkit-scrollbar {
  display: none;
}

.dining-nav-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.dining-nav-tab:hover {
  color: rgba(255, 255, 255, 0.85);
}

.dining-nav-tab.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* =========================================================
       DINING INTRO
       ========================================================= */
.dining-intro {
  padding: 6rem 0;
  background: var(--bg);
}

.dining-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dining-intro-visual {
  position: relative;
  height: 520px;
}

.dining-intro-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.dining-intro-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 6px solid #fff;
}

.dining-intro-stat {
  position: absolute;
  top: 45%;
  left: 65%;
  transform: translate(-50%, -50%);
  background: var(--secondary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.dining-intro-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}

.dining-intro-stat .label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.dining-intro-content .section-desc {
  margin-bottom: 1.5rem;
}

.dining-awards {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.dining-award {
  text-align: center;
}

.dining-award i {
  color: var(--secondary);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.4rem;
}

.dining-award span {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.05em;
}

/* =========================================================
       RESTAURANT FEATURE SECTION (Large alternating)
       ========================================================= */
.restaurant-feature {
  padding: 0;
}

.restaurant-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}

.restaurant-feature-card.dark-bg .restaurant-feature-content {
  background: var(--dark);
}

.restaurant-feature-img {
  position: relative;
  overflow: hidden;
}

.restaurant-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.restaurant-feature-card:hover .restaurant-feature-img img {
  transform: scale(1.04);
}

.restaurant-feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
}

.restaurant-hours-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  color: #fff;
  border-left: 3px solid var(--secondary);
}

.restaurant-hours-badge .hours-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.15rem;
}

.restaurant-hours-badge .hours-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.restaurant-feature-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.restaurant-cuisine-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.restaurant-cuisine-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--secondary);
}

.restaurant-feature-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.restaurant-feature-card.dark-bg .restaurant-feature-title {
  color: #fff;
}

.restaurant-feature-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #666;
}

.restaurant-feature-card.dark-bg .restaurant-feature-desc {
  color: rgba(255, 255, 255, 0.6);
}

.restaurant-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}

.restaurant-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: #555;
}

.restaurant-feature-card.dark-bg .restaurant-highlight {
  color: rgba(255, 255, 255, 0.65);
}

.restaurant-highlight i {
  color: var(--secondary);
  width: 14px;
  font-size: 0.85rem;
}

.restaurant-feature-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Separator between restaurant sections */
.restaurant-separator {
  height: 1px;
  background: var(--border);
}

/* =========================================================
       SIGNATURE DISHES
       ========================================================= */
.signature-dishes {
  padding: 6rem 0;
  background: var(--gray-light);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.dish-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.dish-card-img {
  height: 180px;
  overflow: hidden;
}

.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover .dish-card-img img {
  transform: scale(1.07);
}

.dish-card-body {
  padding: 1.25rem;
}

.dish-restaurant-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.4rem;
  display: block;
}

.dish-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.dish-card-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
}

/* =========================================================
       BAR SECTION (Full-bleed dark section)
       ========================================================= */
.bar-section {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.bar-section-img {
  position: relative;
  overflow: hidden;
}

.bar-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-section-content {
  background: #0d0d0d;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.bar-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--secondary);
}

.bar-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.bar-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cocktail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cocktail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}

.cocktail-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.cocktail-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  flex: 1;
  padding-left: 1rem;
}

.cocktail-price {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  white-space: nowrap;
}

/* =========================================================
       PRIVATE DINING / EVENTS
       ========================================================= */
.private-dining {
  padding: 6rem 0;
  background: var(--bg);
}

.private-dining-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.private-dining-content .section-desc {
  margin-bottom: 1.5rem;
}

.private-dining-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.private-dining-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.private-dining-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 1rem;
}

.private-dining-feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.private-dining-feature-text p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

.private-dining-img {
  position: relative;
  height: 500px;
}

.private-dining-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* =========================================================
       DINING CTA BAND
       ========================================================= */
.dining-cta-band {
  background: var(--primary);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.dining-cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.dining-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.dining-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.dining-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.dining-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
       RESPONSIVE
       ========================================================= */
@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bar-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bar-section-img {
    height: 320px;
  }

  .bar-section-content {
    padding: 3rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .dining-intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dining-intro-visual {
    height: 380px;
  }

  .restaurant-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .restaurant-feature-img {
    height: 280px;
  }

  .restaurant-feature-content {
    padding: 2.5rem 2rem;
  }

  .restaurant-highlights {
    grid-template-columns: 1fr;
  }

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

  .private-dining-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .private-dining-img {
    height: 320px;
  }

  .dining-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .dining-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-feature-card.reverse-mobile {
    direction: ltr;
  }
}

/* == PRACTICAL-INFORMATION PAGE STYLES == */
/* ── PAGE HERO ──────────────────────────────────── */

/* ── QUICK INFO BAND ────────────────────────────── */
.quick-info-band {
  background: var(--primary);
  padding: 0;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.qi-item {
  padding: 2rem 1.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.qi-item:last-child {
  border-right: none;
}

.qi-icon {
  color: rgba(255, 255, 255, .9);
  font-size: 1.5rem;
  display: block;
  margin-bottom: .6rem;
}

.qi-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  display: block;
  margin-bottom: .25rem;
}

.qi-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  display: block;
  line-height: 1.2;
}

/* ── MAIN LAYOUT ────────────────────────────────── */
.practical-main {
  padding: 7rem 0;
  background: var(--gray-light);
}

.practical-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sticky sidebar nav */
.practical-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-nav-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 0 0 .75rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
  display: block;
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.sidebar-nav-item {
  display: block;
  padding: .9rem 1.25rem;
  font-size: .82rem;
  color: #555;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
}

.sidebar-nav-item:last-child {
  border-bottom: none;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
  background: var(--gray-light);
  color: var(--primary);
  border-left-color: var(--primary);
}

.sidebar-nav-item i {
  color: var(--secondary);
  width: 16px;
  margin-right: .5rem;
  font-size: .85rem;
}

/* Content blocks */
.practical-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
  transition: box-shadow .4s;
}

.info-block:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}

.info-block-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.info-block-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 1.2rem;
}

.info-block-header-text {}

.info-block-header-text h3 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .1rem;
}

.info-block-header-text p {
  font-size: .8rem;
  color: var(--gray-mid);
  margin: 0;
}

.info-block-body {
  padding: 2rem;
}

.info-block-body p {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.info-block-body p:last-child {
  margin-bottom: 0;
}

/* Info rows (key-value pairs) */
.info-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
  align-items: baseline;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row-key {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.info-row-val {
  font-size: .9rem;
  color: var(--dark);
}

.info-row-val a {
  color: var(--primary);
}

.info-row-val a:hover {
  text-decoration: underline;
}

/* bullet list inside blocks */
.info-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: #555;
  line-height: 1.6;
}

.info-list-item i {
  color: var(--secondary);
  width: 14px;
  flex-shrink: 0;
  margin-top: .2rem;
}

/* ── FAQ ACCORDION ──────────────────────────────── */
.faq-section {
  padding: 7rem 0;
  background: var(--bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--border);
  overflow: hidden;
  padding-left: 15px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  gap: 1rem;
  transition: background .3s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-question.open {
  color: var(--primary);
  background: var(--gray-light);
}

.faq-question-icon {
  color: var(--secondary);
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-question.open .faq-question-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 1.5rem;
}

.faq-answer.open {
  max-height: 400px;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: .88rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* ── NEED HELP CTA ──────────────────────────────── */
.help-band {
  background: var(--dark);
  padding: 5rem 0;
}

.help-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}

.help-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color .3s;
}

.help-card:hover {
  border-color: rgba(201, 168, 76, .4);
}

.help-card-icon {
  color: var(--secondary);
  font-size: 2rem;
  display: block;
  margin-bottom: 1.25rem;
}

.help-card h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .6rem;
}

.help-card p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .practical-inner {
    grid-template-columns: 1fr;
  }

  .practical-sidebar {
    position: static;
  }

  .sidebar-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .qi-item:nth-child(2) {
    border-right: none;
  }

  .qi-item:nth-child(1),
  .qi-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .help-band-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .info-row {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .info-row-key {
    font-size: .7rem;
    color: var(--secondary);
  }

  .sidebar-nav-list {
    grid-template-columns: 1fr;
  }

  .help-band-inner {
    grid-template-columns: 1fr;
  }

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

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

/* == FACT-SHEET PAGE STYLES == */
/* ── PAGE HERO ── */
.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  opacity: 0;
  animation: fadeSlideUp .8s ease .9s forwards;
  transition: background .3s, transform .3s;
}

.hero-download-btn:hover {
  background: #b8963e;
  transform: translateY(-2px);
}

/* ── HEADLINE STATS ── */
.headline-stats {
  background: var(--primary);
  padding: 0;
}

.headline-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.hs-item {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.hs-item:last-child {
  border-right: none;
}

.hs-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  display: block;
}

.hs-lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: .25rem;
  display: block;
}

/* ── MAIN FACTSHEET LAYOUT ── */
.factsheet-main {
  padding: 7rem 0;
  background: var(--gray-light);
}

.factsheet-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar nav */
.fs-sidebar {
  position: sticky;
  top: 100px;
}

.fs-sidebar-head {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
  display: block;
}

.fs-nav-list {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.fs-nav-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1.25rem;
  font-size: .83rem;
  color: #555;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: all .3s;
  text-decoration: none;
}

.fs-nav-link:last-child {
  border-bottom: none;
}

.fs-nav-link:hover,
.fs-nav-link.active {
  background: var(--gray-light);
  color: var(--primary);
  border-left-color: var(--primary);
}

.fs-nav-link i {
  color: var(--secondary);
  font-size: .85rem;
  width: 16px;
}

/* Download card in sidebar */
.fs-download-card {
  background: var(--primary);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.fs-download-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: .5rem;
}

.fs-download-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Content area */
.fs-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Each factsheet section block */
.fs-block {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
}

.fs-block-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 2rem;
  background: var(--dark);
}

.fs-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 1.1rem;
}

.fs-block-header-text h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .1rem;
}

.fs-block-header-text p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin: 0;
}

.fs-block-body {
  padding: 1.75rem 2rem;
}

/* Info rows */
.fs-rows {
  display: flex;
  flex-direction: column;
}

.fs-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.fs-row:last-child {
  border-bottom: none;
}

.fs-row-key {
  font-size: .73rem;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fs-row-val {
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.6;
}

.fs-row-val a {
  color: var(--primary);
}

/* Bullet list inside block */
.fs-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.fs-list-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .87rem;
  color: #555;
  line-height: 1.55;
}

.fs-list-item i {
  color: var(--secondary);
  font-size: .82rem;
  width: 14px;
  flex-shrink: 0;
  margin-top: .15rem;
}

/* 2-col list */
.fs-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1.5rem;
}

/* Capacity mini-table inside factsheet */
.fs-cap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem;
  margin-top: .75rem;
}

.fs-cap-table thead tr {
  background: var(--gray-light);
}

.fs-cap-table th {
  padding: .6rem .85rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.fs-cap-table td {
  padding: .6rem .85rem;
  border-bottom: 1px solid var(--border);
  color: #555;
}

.fs-cap-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.fs-cap-table tr:last-child td {
  border-bottom: none;
}

.fs-cap-table .section-row td {
  background: rgba(201, 168, 76, .07);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: .45rem .85rem;
}

/* ── VISUAL OVERVIEW BAND ── */
.factsheet-visual {
  padding: 6rem 0;
  background: var(--bg);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.visual-card {
  position: relative;
  overflow: hidden;
}

.visual-card-img {
  height: 220px;
  overflow: hidden;
}

.visual-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.visual-card:hover .visual-card-img img {
  transform: scale(1.05);
}

.visual-card-label {
  background: var(--dark);
  padding: 1rem 1.25rem;
}

.visual-card-label h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .2rem;
}

.visual-card-label span {
  font-size: .72rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── DOWNLOAD CTA ── */
.download-cta {
  background: var(--dark);
  padding: 5rem 0;
}

.download-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.download-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: .5rem;
}

.download-cta-inner p {
  color: rgba(255, 255, 255, .55);
  font-size: .92rem;
}

.download-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .factsheet-inner {
    grid-template-columns: 1fr;
  }

  .fs-sidebar {
    position: static;
  }

  .fs-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hs-item:nth-child(3) {
    border-right: none;
  }

  .visual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .fs-row {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .fs-row-key {
    font-size: .68rem;
    color: var(--secondary);
  }

  .fs-list-2col {
    grid-template-columns: 1fr;
  }

  .fs-nav-list {
    grid-template-columns: 1fr;
  }

  .download-cta-inner {
    grid-template-columns: 1fr;
  }

  .download-cta-btns {
    flex-direction: row;
  }

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

  .hs-item:nth-child(2) {
    border-right: none;
  }

  .hs-item:nth-child(1),
  .hs-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .headline-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESTAURANTS & BAR PAGE  (dnb- = dining-and-bar prefix)
   ============================================================ */

/* ── PAGE HERO ── */
.dnb-page-hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
}

.dnb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(201, 168, 76, 0.1) 100%);
  z-index: 1;
}

.dnb-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 860px;
  margin-top: 60px;
}

.dnb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.3s forwards;
}

.dnb-hero-badge span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.dnb-hero-badge p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.dnb-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.dnb-hero-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

/* Breadcrumb */
.dnb-breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.dnb-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

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

.dnb-sep {
  color: rgba(255, 255, 255, 0.35);
}

.dnb-current {
  color: var(--primary);
}

/* ── TAB NAV BAR ── */
.dnb-tab-bar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dnb-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dnb-tabs::-webkit-scrollbar {
  display: none;
}

.dnb-tab {
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s;
  flex-shrink: 0;
}

.dnb-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.dnb-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.dnb-tab.active {
  color: var(--secondary);
}

.dnb-tab.active::after {
  transform: scaleX(1);
}

/* ── INTRO SECTION ── */
.dnb-intro {
  padding: 6rem 0;
  background: var(--bg);
}

.dnb-intro-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.dnb-intro-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.dnb-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  white-space: nowrap;
}

.dnb-badge-item:hover {
  border-color: var(--secondary);
  background: rgba(201, 168, 76, 0.05);
}

.dnb-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.dnb-badge-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
}

/* ── VENUE SECTIONS ── */
.dnb-venue {
  padding: 0;
}

.dnb-venue--light {
  background: var(--bg);
}

.dnb-venue--dark {
  background: var(--primary);
}

.dnb-venue-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.dnb-venue-card--reverse {
  direction: rtl;
}

.dnb-venue-card--reverse>* {
  direction: ltr;
}

.dnb-venue-img {
  position: relative;
  overflow: hidden;
}

.dnb-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.dnb-venue-img:hover img {
  transform: scale(1.04);
}

.dnb-venue-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.dnb-hours-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--secondary);
  padding: 0.75rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.dnb-venue-card--reverse .dnb-hours-badge {
  left: auto;
  right: 1.5rem;
  border-left: none;
  border-right: 3px solid var(--secondary);
  border-radius: var(--radius) 0 0 var(--radius);
}

.dnb-hours-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.2rem;
}

.dnb-hours-value {
  display: block;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 500;
}

.dnb-venue-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}

.dnb-venue-card--reverse .dnb-venue-tag {
  left: auto;
  right: 1.5rem;
}

/* Venue Content */
.dnb-venue-content {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dnb-venue-content .restaurant-logo,
.dnb-bar-content .restaurant-logo {
  padding-bottom: 30px;
  ;
}

.dnb-venue-content .restaurant-logo img,
.dnb-bar-content .restaurant-logo img {
  height: 50px;
  display: none;
}

.dnb-cuisine-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.dnb-cuisine-label--white {
  color: rgba(255, 255, 255, 0.65);
}

.dnb-venue-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.dnb-venue--dark .dnb-venue-title {
  color: #fff;
}

.dnb-venue-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.dnb-venue-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.dnb-venue--dark .dnb-venue-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* Highlights grid */
.dnb-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.dnb-highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #555;
}

.dnb-highlight i {
  color: var(--primary);
  width: 14px;
  flex-shrink: 0;
}

.dnb-highlights--light .dnb-highlight {
  color: rgba(255, 255, 255, 0.7);
}

.dnb-highlights--light .dnb-highlight i {
  color: var(--gray-light);
}

/* CTA row */
.dnb-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SEPARATOR ── */
.dnb-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--bg);
}

.dnb-venue--dark+.dnb-separator {
  /*  background: var(--dark); */
}

.dnb-separator-inner {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  margin: 3rem 0;
}

/* ── SHOOTERS BAR SECTION ── */
.dnb-bar-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}

.dnb-bar-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1527489377706-5bf97e608852?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.dnb-bar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 50%, rgba(10, 10, 10, 0.75) 100%);
  z-index: 1;
}

.dnb-bar-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.dnb-bar-content {
  color: #fff;
}

.dnb-bar-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.dnb-bar-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.dnb-bar-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.dnb-bar-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.dnb-bar-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}

.dnb-bar-feature:hover {
  border-color: var(--secondary);
  background: rgba(201, 168, 76, 0.08);
}

.dnb-bar-feature i {
  color: var(--secondary);
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

.dnb-bar-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

.dnb-bar-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  height: 480px;
}

.dnb-bar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.dnb-bar-img-wrap:hover img {
  transform: scale(1.04);
}

/* ── CTA BAND ── */
.dnb-cta-band {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.dnb-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dnb-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.dnb-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.dnb-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.dnb-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.dnb-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: var(--radius);
}

.dnb-btn-white:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.dnb-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: var(--radius);
}

.dnb-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .dnb-venue-content {
    padding: 3rem 2.5rem;
  }

  .dnb-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dnb-intro-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {

  .dnb-venue-card,
  .dnb-venue-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .dnb-venue-card--reverse>* {
    direction: ltr;
  }

  .dnb-venue-img {
    height: 340px;
  }

  .dnb-venue-content {
    padding: 2.5rem 2rem;
  }

  .dnb-hours-badge,
  .dnb-venue-card--reverse .dnb-hours-badge {
    left: 1.5rem;
    right: auto;
    border-left: 3px solid var(--secondary);
    border-right: none;
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  .dnb-venue-tag,
  .dnb-venue-card--reverse .dnb-venue-tag {
    left: 1.5rem;
    right: auto;
  }

  .dnb-bar-inner {
    grid-template-columns: 1fr;
  }

  .dnb-bar-img-wrap {
    height: 280px;
  }

  .dnb-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .dnb-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .dnb-page-hero {
    height: 65vh;
    min-height: 460px;
  }

  .dnb-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .dnb-tabs {
    justify-content: flex-start;
    padding: 0 1rem;
  }

  .dnb-tab {
    padding: 1rem 1rem;
    font-size: 0.72rem;
  }

  .dnb-highlights {
    grid-template-columns: 1fr;
  }

  .dnb-bar-features {
    grid-template-columns: 1fr;
  }

  .dnb-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .dnb-btn-white,
  .dnb-btn-outline-white {
    justify-content: center;
    text-align: center;
  }

  .dnb-intro-badges {
    flex-direction: column;
  }

  .dnb-badge-item {
    white-space: normal;
  }

  .dnb-venue-content {
    padding: 2rem 1.25rem;
  }
}

/* ============================================================
   BANQUET HALL PAGE  (bq- prefix)
   ============================================================ */

/* ── PAGE HERO ── */
.bq-page-hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.72) 100%),
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1600&q=80') center/cover no-repeat;
}

.bq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.55) 0%, rgba(212, 15, 36, 0.08) 100%);
  z-index: 1;
}

.bq-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 860px;
  margin-top: 60px;
}

.bq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.3s forwards;
}

.bq-hero-badge span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.bq-hero-badge p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.bq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.bq-hero-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.bq-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

.bq-breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.bq-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

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

.bq-sep {
  color: rgba(255, 255, 255, 0.35);
}

.bq-current {
  color: var(--primary);
}

/* ── TAB NAV ── */
.bq-tab-bar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bq-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.bq-tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  flex-shrink: 0;
}

.bq-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.bq-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.bq-tab.active {
  color: var(--secondary);
}

.bq-tab.active::after {
  transform: scaleX(1);
}

/* ── BANQUETS SECTION ── */
.bq-section {
  padding: 6rem 0;
  background: var(--bg);
}

.bq-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bq-section-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

/* Venue Cards Grid */
.bq-venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.bq-venue-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.bq-venue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

.bq-venue-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.bq-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

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

.bq-venue-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.bq-venue-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}

.bq-venue-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bq-venue-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.bq-venue-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  flex: 1;
}

.bq-venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bq-venue-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  background: var(--gray-light);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.bq-venue-features span i {
  color: var(--secondary);
  font-size: 0.72rem;
}

.bq-enquire-btn {
  align-self: flex-start;
}

/* ── BUSINESS CENTER SECTION ── */
.bq-bc-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: stretch;
  background: #f9f8f6;
}

.bq-bc-overlay {
  display: none;
}

.bq-bc-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bq-bc-label {
  color: var(--secondary) !important;
}

.bq-bc-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.bq-bc-desc {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.bq-bc-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.bq-bc-service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--dark);
}

.bq-bc-icon {
  width: 34px;
  height: 34px;
  background: rgba(180, 30, 45, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bq-bc-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  height: 420px;
}

.bq-bc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.bq-bc-img-wrap:hover img {
  transform: scale(1.04);
}

/* ── CTA BAND ── */
.bq-cta-band {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.bq-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bq-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.bq-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.bq-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.bq-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.bq-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: var(--radius);
}

.bq-btn-white:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.bq-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: var(--radius);
}

.bq-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── ENQUIRY SECTION ── */
.bq-enquiry-section {
  padding: 7rem 0;
  background: var(--gray-light);
}

.bq-enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.bq-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: #555;
}

.bq-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.bq-contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}

.bq-contact-detail a {
  color: #555;
  display: block;
  transition: color 0.3s;
}

.bq-contact-detail a:hover {
  color: var(--primary);
}

.bq-form-wrap {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.bq-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.bq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bq-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.bq-form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.bq-form-group input,
.bq-form-group select,
.bq-form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  background: #fff;
  width: 100%;
}

.bq-form-group input:focus,
.bq-form-group select:focus,
.bq-form-group textarea:focus {
  border-color: var(--secondary);
}

.bq-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bq-bc-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bq-bc-img-wrap {
    height: 300px;
  }

  .bq-enquiry-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .bq-venues-grid {
    grid-template-columns: 1fr;
  }

  .bq-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .bq-cta-actions {
    justify-content: center;
  }

  .bq-bc-services {
    grid-template-columns: 1fr 1fr;
  }

  .bq-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bq-page-hero {
    height: 65vh;
    min-height: 460px;
  }

  .bq-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .bq-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .bq-tabs {
    padding: 0 1rem;
  }

  .bq-tab {
    padding: 1rem 1.25rem;
    font-size: 0.72rem;
  }

  .bq-bc-services {
    grid-template-columns: 1fr;
  }

  .bq-form-wrap {
    padding: 1.5rem;
  }

  .bq-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .bq-btn-white,
  .bq-btn-outline-white {
    justify-content: center;
  }
}

/* ── BANQUETS SPLIT SECTION (white, mirrors bq-bc layout) ── */
.bq-split-section {
  padding: 0;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: stretch;
}

.bq-split--light {
  background: #fff;
}

.bq-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bq-split-content .section-label {
  color: var(--secondary);
}

.bq-split-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.bq-split-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.bq-split-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.bq-split-service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #555;
}

.bq-split-icon {
  width: 34px;
  height: 34px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bq-split-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  height: 420px;
}

.bq-split-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.bq-split-img-wrap:hover img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .bq-split-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bq-split-img-wrap {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .bq-split-services {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BANQUETS & BUSINESS CENTER SUB-PAGES  (vnp- prefix)
   ============================================================ */

/* ── HERO ── */
.vnp-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.72) 100%),
    url('https://images.unsplash.com/photo-1478146896981-b80fe463b330?w=1600&q=80') center/cover no-repeat;
}

.vnp-hero--bc {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.72) 100%),
    url('https://images.unsplash.com/photo-1517502884422-41eaead166d4?w=1600&q=80') center/cover no-repeat;
}

.vnp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.5) 0%, rgba(201, 168, 76, 0.05) 100%);
  z-index: 1;
}

.vnp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 860px;
  margin-top: 60px;
}

.vnp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.3s forwards;
}

.vnp-hero-badge span {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--secondary);
}

.vnp-hero-badge p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.vnp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.vnp-hero-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.vnp-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

.vnp-breadcrumb {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.vnp-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}

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

.vnp-sep {
  color: rgba(255, 255, 255, 0.3);
}

.vnp-current {
  color: var(--primary);
}

/* ── INTRO ── */
.vnp-intro {
  padding: 6rem 0;
  background: #fff;
}

.vnp-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.vnp-intro-content .section-desc {
  max-width: 100%;
}

.vnp-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
}

.vnp-intro-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}

.vnp-intro-img:hover img {
  transform: scale(1.03);
}

/* ── VENUE SECTIONS ── */
.vnp-venue-section {
  padding: 5rem 0;
  background: var(--bg);
}

.vnp-venue--alt {
  background: #f8f6f3;
}

.vnp-venue-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vnp-venue-inner--reverse {
  direction: rtl;
}

.vnp-venue-inner--reverse>* {
  direction: ltr;
}

.vnp-venue-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.vnp-venue-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.vnp-venue-img-wrap:hover img {
  transform: scale(1.04);
}

.vnp-venue-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.vnp-venue-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.vnp-venue-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 0.9rem;
  line-height: 1.1;
}

.vnp-venue-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ── CAPACITY TABLE ── */
.vnp-cap-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.vnp-cap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #fff;
}

.vnp-cap-table th {
  background: var(--dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 1.1rem;
  text-align: center;
}

.vnp-cap-table th:first-child {
  text-align: left;
  width: 30%;
}

.vnp-cap-table td {
  padding: 0.75rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: #444;
}

.vnp-cap-table td:first-child {
  text-align: left;
}

.vnp-row-label {
  font-weight: 500;
  color: var(--dark) !important;
}

.vnp-row-highlight td {
  background: rgba(201, 168, 76, 0.07);
  font-weight: 600;
  color: var(--dark);
}

.vnp-style-header td {
  background: rgba(26, 26, 26, 0.05);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary) !important;
  padding: 0.5rem 1.1rem;
  text-align: left !important;
}

/* ── SEATING GRIDS (Chancery, Rooftop, Poolside) ── */
.vnp-seating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.vnp-seating-grid--single {
  grid-template-columns: 1fr;
  max-width: 320px;
}

.vnp-seating-group {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.vnp-seating-group h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}

.vnp-seating-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: #555;
  border-bottom: 1px solid var(--border);
}

.vnp-seating-row:last-child {
  border-bottom: none;
}

.vnp-seating-row span:last-child {
  font-weight: 700;
  color: var(--dark);
}

/* ── CTA BAND ── */
.vnp-cta {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.vnp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vnp-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.vnp-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.4rem;
}

.vnp-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.vnp-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.vnp-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: var(--radius);
}

.vnp-btn-white:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.vnp-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: var(--radius);
}

.vnp-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── BUSINESS CENTER MAIN ── */
.vnp-bc-main {
  padding: 6rem 0;
  background: #fff;
}

.vnp-bc-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.vnp-bc-facilities-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--secondary);
  display: inline-block;
}

.vnp-bc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.vnp-bc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.vnp-bc-list li i {
  color: var(--secondary);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.vnp-bc-img-side {
  position: sticky;
  top: 120px;
}

.vnp-bc-img-side img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: block;
}

.vnp-bc-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.vnp-bc-highlight {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vnp-bc-highlight i {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vnp-bc-highlight div {
  display: flex;
  flex-direction: column;
}

.vnp-bc-highlight strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1;
}

.vnp-bc-highlight span {
  font-size: 0.68rem;
  color: #777;
  line-height: 1.3;
  margin-top: 0.15rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .vnp-intro-inner,
  .vnp-bc-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vnp-intro-img {
    position: static;
  }

  .vnp-intro-img img {
    height: 320px;
  }

  .vnp-bc-img-side {
    position: static;
  }

  .vnp-venue-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vnp-venue-inner--reverse {
    direction: ltr;
  }

  .vnp-venue-img-wrap {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .vnp-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .vnp-cta-actions {
    justify-content: center;
  }

  .vnp-seating-grid {
    grid-template-columns: 1fr;
  }

  .vnp-bc-list {
    grid-template-columns: 1fr;
  }

  .vnp-bc-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vnp-hero {
    height: 60vh;
    min-height: 440px;
  }

  .vnp-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .vnp-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .vnp-cap-table th,
  .vnp-cap-table td {
    padding: 0.6rem 0.7rem;
    font-size: 0.78rem;
  }

  .vnp-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .vnp-btn-white,
  .vnp-btn-outline-white {
    justify-content: center;
  }
}

/* ============================================================
   OFFER DETAIL PAGE
   ============================================================ */

.offer-detail-section {
  padding: 5rem 0;
  background: #fff;
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Image side */
.offer-detail-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.offer-detail-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.offer-detail-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Content side */
.offer-detail-content {
  padding: 1rem 0;
}

.offer-detail-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0.5rem 0 1.2rem;
  line-height: 1.2;
}

.offer-detail-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Inclusions block */
.offer-inclusions-block {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.offer-inclusions-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-inclusions-heading i {
  color: var(--primary);
}

.offer-inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.5;
}

.offer-inclusions-list li i {
  color: #27ae60;
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* CTA */
.offer-detail-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

/* Note */
.offer-detail-note {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  /* display: flex; */
  align-items: flex-start;
  gap: 0.5rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.offer-detail-note i {
  color: var(--primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.offer-detail-note a {
  color: var(--primary);
  text-decoration: none;
}

/* Other Offers Section */
.other-offers-section {
  padding: 5rem 0;
  background: var(--light);
}

/* Responsive */
@media (max-width: 900px) {
  .offer-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .offer-detail-img-wrap img {
    height: 320px;
  }

  .offer-detail-title {
    font-size: 1.9rem;
  }
}

/* ============================================================
   14. COOKIE POPUP
   ============================================================ */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 450px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.6s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup-content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.cookie-popup-icon {
  font-size: 1.8rem;
  color: var(--secondary);
}

.cookie-popup-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-popup-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-popup-text a:hover {
  text-decoration: none;
}

.cookie-popup-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-popup-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

@media (max-width: 480px) {
  .cookie-popup-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cookie-popup-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   15. CERTIFICATION SECTION
   ============================================================ */
.certification-section {
  padding: 1rem 0;
  background: var(--bg);
}

.certification-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--gray-light);
  border-radius: 16px;
  padding: 4.5rem;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.certification-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cert-visual {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cert-badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.3), inset 0 5px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  border: 6px solid #fff;
}

.cert-badge::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1.5px dashed rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  animation: rotateBadge 20s linear infinite;
}

@keyframes rotateBadge {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cert-badge i.fa-award {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.cert-badge span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cert-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cert-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.cert-content .section-title {
  color: #000000;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.cert-content .section-desc {
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 100%;
}

@media (max-width: 900px) {
  .certification-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 3.5rem 2rem;
    gap: 2.5rem;
  }
}

/* ============================================================
   23. UTILITY CLASSES (Replaced Inline Styles)
   ============================================================ */
.mobile-book-btn {
  margin-top: 1rem;
  font-weight: 400;
}

.contact-desc-full {
  max-width: 100%;
}

.w-100-center {
  width: 100%;
  justify-content: center;
}

.footer-newsletter-text {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.cookie-decline-btn {
  background-color: transparent !important;
  color: white !important;
  border-color: white !important;
}

.cookie-decline-btn:hover {
  background-color: white !important;
  color: var(--dark) !important;
}

/* ============================================================
   24. EXTRA RESPONSIVE REFINEMENTS (Header & Footer)
   ============================================================ */
@media (max-width: 768px) {

  /* Header Topbar refinements */
  .header-topbar .container>span {
    display: none;
  }

  .header-topbar .topbar-contact {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .header-topbar .topbar-contact a {
    margin-left: 0;
  }

  /* Footer logo centering */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 1.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  /* Make sure columns in footer are aligned nicely on mobile */
  .footer-col {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 480px) {

  /* Header Topbar refinements for very small screens */
  .header-topbar .topbar-contact {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  /* Ensure mobile nav is centered */
  .nav-inner {
    padding: 1rem 1.25rem;
  }

  .nav-logo img {
    height: 40px;
  }

  .site-header.scrolled .nav-logo img {
    height: 45px;
  }
}

/* Additional utility classes to remove inline styles */
.starting-text {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  margin: 0;
}

.tag-primary {
  background: var(--primary);
}

.tag-dark {
  background: var(--primary);
}

.tag-secondary {
  background: var(--primary);
}

.h-240 {
  height: 240px !important;
}

.m-auto {
  margin: 0 auto !important;
}

.mt-3rem {
  margin-top: 3rem !important;
}

.mt-2rem {
  margin-top: 2rem !important;
}

.mt-1-5rem {
  margin-top: 1.5rem !important;
}

.offer-discount-large {
  font-size: 1.75rem !important;
}

.text-secondary-color {
  color: var(--secondary) !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.location-desc {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.icon-primary-mr {
  color: var(--primary);
  margin-right: 0.5rem;
}


/* ============================================================
   PAGE HERO (used by inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.simplotel.com/simplotel/image/upload/x_0,y_93,w_1786,h_1004,r_0,c_crop,q_90,fl_progressive/w_1400,f_auto,c_fit/ramada-plaza-palm-grove-juhu-beach-mumbai/Deluxe_Room_at_Hotel_Ramada_Plaza_Palm_Grove_Juhu_Beach_Mumbai,_5_star_hotel_rooms_in_Mumbai_asdfd');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 1.2s ease;
}

.page-hero-bg.loaded {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgb(0 0 0 / 0%) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 800px;
  padding-top: 120px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-hero-badge span {
  display: block;
  width: 35px;
  height: 1px;
  background: var(--secondary);
}

.page-hero-badge p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

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

.breadcrumb .current {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   QUICK INFO BAND (Practical Information page)
   ============================================================ */
.quick-info-band {
  background: var(--primary);
  padding: 2.5rem 0;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.qi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.qi-item:last-child {
  border-right: none;
}

.qi-icon {
  font-size: 1.4rem;
  color: var(--gray-light);
  margin-bottom: 0.25rem;
}

.qi-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.qi-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
}

/* ============================================================
   PRACTICAL / POLICY MAIN SECTION
   ============================================================ */
.practical-main {
  padding: 5rem 0;
  background: var(--gray-light);
}

.practical-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.practical-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-nav-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.83rem;
  color: #555;
  border-radius: 8px;
  transition: all 0.3s;
}

.sidebar-nav-item i {
  font-size: 0.85rem;
  color: var(--gray-mid);
  transition: color 0.3s;
}

.sidebar-nav-item:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--dark);
}

.sidebar-nav-item:hover i {
  color: var(--secondary);
}

.sidebar-nav-item.active {
  background: rgba(212, 15, 36, 0.07);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-nav-item.active i {
  color: var(--primary);
}

/* Content blocks */
.practical-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  scroll-margin-top: 120px;
}

.info-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--gray-light);
}

.info-block-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 15, 36, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-block-header-text h2,
.info-block-header-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.info-block-header-text p {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin: 0;
}

.info-block-body {
  padding: 1.75rem 2rem;
}

.info-block-body>p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* Info rows (key/value table) */
.info-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row-key {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.info-row-val {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

/* Info list (checkmarks) */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}

.info-list-item i {
  color: var(--primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ============================================================
   POLICY CONTENT WRAPPER (Privacy, T&C pages — no sidebar)
   ============================================================ */
.policy-content-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ============================================================
   HELP BAND
   ============================================================ */
.help-band {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.help-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
  pointer-events: none;
}

.help-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.help-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.help-card:hover {
  border-color: var(--secondary);
  background: rgba(201, 168, 76, 0.06);
}

.help-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--secondary);
}

.help-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.help-card p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 6rem 0;
  background: #fff;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question.open {
  color: var(--primary);
}

.faq-question-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: var(--gray-mid);
  transition: all 0.3s;
}

.faq-question.open .faq-question-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

/* ============================================================
   FACTSHEET / FS-BLOCK STYLES (fact-sheet.html)
   ============================================================ */
.headline-stats {
  background: var(--primary);
  padding: 2.5rem 0;
}

.headline-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hs-item:last-child {
  border-right: none;
}

.hs-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gray-light);
  line-height: 1;
}

.hs-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.factsheet-main {
  padding: 5rem 0;
  background: var(--gray-light);
}

.factsheet-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.fs-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.fs-sidebar-head {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}

.fs-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fs-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.83rem;
  color: #555;
  border-radius: 8px;
  transition: all 0.3s;
}

.fs-nav-link i {
  font-size: 0.85rem;
  color: var(--gray-mid);
  transition: color 0.3s;
}

.fs-nav-link:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--dark);
}

.fs-nav-link:hover i {
  color: var(--secondary);
}

.fs-nav-link.active {
  background: rgba(212, 15, 36, 0.07);
  color: var(--primary);
  font-weight: 600;
}

.fs-nav-link.active i {
  color: var(--primary);
}

.fs-download-card {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.fs-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fs-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  scroll-margin-top: 120px;
}

.fs-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--gray-light);
}

.fs-block-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 15, 36, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.fs-block-header-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.fs-block-header-text p {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin: 0;
}

.fs-block-body {
  padding: 1.75rem 2rem;
}

.fs-rows {
  display: flex;
  flex-direction: column;
}

.fs-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.fs-row:last-child {
  border-bottom: none;
}

.fs-row-key {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.fs-row-val {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

.fs-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fs-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.fs-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.fs-list-item i {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.fs-cap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.fs-cap-table th,
.fs-cap-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

.fs-cap-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}

.fs-cap-table tr:nth-child(even) td {
  background: var(--gray-light);
}

.factsheet-visual {
  padding: 5rem 0;
  background: #fff;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.visual-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.visual-card-img {
  height: 260px;
  overflow: hidden;
}

.visual-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.visual-card:hover .visual-card-img img {
  transform: scale(1.05);
}

.visual-card-label {
  padding: 1.25rem 1.5rem;
  background: #fff;
}

.visual-card-label h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.visual-card-label span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-section {
  padding: 5rem 0;
  background: var(--gray-light);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sitemap-group {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sitemap-group-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--secondary);
}

.sitemap-group-title i {
  color: var(--primary);
  font-size: 1rem;
}

.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sitemap-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #555;
  padding: 0.4rem 0;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sitemap-link:last-child {
  border-bottom: none;
}

.sitemap-link:hover {
  color: var(--primary);
}

.sitemap-link i {
  font-size: 0.65rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.sitemap-sub-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-left: 1.25rem;
  margin-top: 0.35rem;
}

.sitemap-sub-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #777;
  padding: 0.2rem 0;
  transition: color 0.3s;
}

.sitemap-sub-link:hover {
  color: var(--primary);
}

.sitemap-sub-link i {
  font-size: 0.55rem;
  color: var(--border);
}

/* ============================================================
   RESPONSIVE - inner pages
   ============================================================ */
@media (max-width: 1024px) {

  .practical-inner,
  .factsheet-inner {
    grid-template-columns: 1fr;
  }

  .practical-sidebar,
  .fs-sidebar {
    position: static;
  }

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

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

  .help-band-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 50vh;
    min-height: 360px;
  }

  .info-row,
  .fs-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .info-row-key,
  .fs-row-key {
    color: var(--primary);
    font-size: 0.75rem;
  }

  .help-band-inner {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .fs-list-2col {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .headline-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   BOOK YOUR DREAM STAY TODAY — PAGE STYLES
   ============================================================ */

.book-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.book-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.simplotel.com/simplotel/image/upload/x_0,y_93,w_1786,h_1004,r_0,c_crop,q_90,fl_progressive/w_1400,f_auto,c_fit/ramada-plaza-palm-grove-juhu-beach-mumbai/Deluxe_Room_at_Hotel_Ramada_Plaza_Palm_Grove_Juhu_Beach_Mumbai,_5_star_hotel_rooms_in_Mumbai_asdfd');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.4s ease;
}

.book-hero-bg.loaded {
  transform: scale(1);
}

.book-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 10, 10, 0.82) 0%,
      rgba(10, 10, 10, 0.60) 55%,
      rgba(10, 10, 10, 0.25) 100%);
}

.book-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 5rem;
  width: 100%;
}

/* Left: Text */
.book-hero-text {
  color: #fff;
}

.book-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin: 1rem 0 0.75rem;
}

.book-hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.book-hero-address {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.book-hero-address i {
  color: var(--secondary);
}

.book-hero-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.book-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  text-decoration: none;
}

.book-contact-item:hover {
  color: var(--secondary);
}

.book-contact-item>i {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.book-contact-item div,
.book-contact-item>span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Right: Form Card */
.book-form-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.book-form-header {
  background: var(--dark);
  padding: 1.75rem 2rem;
  border-bottom: 3px solid var(--secondary);
}

.book-form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.book-form-header p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.book-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.book-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.required {
  color: var(--primary);
  margin-left: 0.15rem;
}

.book-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.book-input-wrap>i {
  position: absolute;
  left: 0.9rem;
  font-size: 0.85rem;
  color: var(--gray-mid);
  pointer-events: none;
  z-index: 1;
}

.book-input-wrap input,
.book-input-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
}

.book-input-wrap input:focus,
.book-input-wrap textarea:focus {
  border-color: var(--secondary);
  background: #fff;
}

.book-textarea-wrap {
  align-items: flex-start;
}

.book-textarea-wrap>i {
  top: 0.85rem;
}

/* Phone with dial code */
.book-phone-wrap {
  gap: 0;
}

.book-dial {
  flex-shrink: 0;
  padding: 0.75rem 0.5rem;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
  width: 90px;
}

.book-dial:focus {
  border-color: var(--secondary);
}

.book-phone-wrap input {
  border-radius: 0 8px 8px 0;
  padding-left: 1rem;
}

/* Checkbox */
.book-checkbox-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.book-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: #555;
  cursor: pointer;
  line-height: 1.5;
}

.book-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.book-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.book-checkbox-error {
  font-size: 0.78rem;
  color: var(--primary);
  margin: 0;
}

.book-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 0.88rem;
  gap: 0.6rem;
}

.book-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #27ae60;
  font-weight: 600;
  padding: 0.75rem 1rem;
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.25);
  border-radius: 8px;
  margin-top: -0.5rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .book-hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .book-hero-inner {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .book-hero-text {
    text-align: center;
  }

  .book-hero-address {
    justify-content: center;
  }

  .book-hero-contacts {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .book-form {
    padding: 1.5rem;
  }

  .book-hero-title {
    font-size: 2rem;
  }
}

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.blog-section {
  padding: 5rem 0 6rem;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}

/* Blog Card — matches screenshot exactly */
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.blog-card-title a {
  color: inherit;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: auto;
}

.blog-meta-sep {
  color: var(--primary);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.blog-meta-date,
.blog-meta-comments {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ============================================================
   BLOG SINGLE POST PAGE
   ============================================================ */

/* Hero */
.bsp-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.bsp-hero-img {
  position: absolute;
  inset: 0;
}

.bsp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bsp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.bsp-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
  padding-top: 120px;
}

.bsp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.bsp-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

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

.bsp-breadcrumb i {
  font-size: 0.55rem;
}

.bsp-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}

.bsp-category {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.bsp-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.bsp-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.bsp-meta i {
  font-size: 0.75rem;
}

.bsp-meta-sep {
  color: var(--secondary);
  letter-spacing: 0.05em;
}

/* Body Layout */
.bsp-body-section {
  background: #fff;
}

.bsp-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  padding: 4rem 0;
  align-items: start;
}

/* Article */
.bsp-article {
  min-width: 0;
}

.bsp-content {
  font-size: 1rem;
  color: #3a3a3a;
  line-height: 1.9;
}

.bsp-lead {
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-weight: 400;
  border-left: 4px solid var(--primary);
  padding-left: 1.25rem;
}

.bsp-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}

.bsp-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--dark);
  margin: 2rem 0 0.75rem;
}

.bsp-content p {
  margin-bottom: 1.35rem;
}

.bsp-content p:last-child {
  margin-bottom: 0;
}

.bsp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bsp-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.65;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.bsp-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.55rem;
}

.bsp-quote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  background: var(--gray-light);
  border-left: 5px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.bsp-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.bsp-quote p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Post Footer: Tags + Share */
.bsp-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.bsp-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.bsp-tags span {
  color: var(--dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bsp-tags span i {
  color: var(--secondary);
}

.bsp-tags a {
  background: var(--gray-light);
  color: #555;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.78rem;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.bsp-tags a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.bsp-share {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--dark);
  font-weight: 600;
}

.bsp-share a {
  width: 34px;
  height: 34px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.bsp-share a:hover {
  background: var(--primary);
  color: #fff;
}

/* Sidebar */
.bsp-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bsp-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.bsp-widget-dark {
  background: var(--dark);
}

.bsp-widget-header {
  background: var(--dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid var(--secondary);
}

.bsp-widget-dark .bsp-widget-header {
  border-bottom-color: var(--primary);
}

.bsp-widget-body {
  background: #fff;
  padding: 1.5rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

.bsp-widget-dark .bsp-widget-body {
  background: var(--dark);
}

/* Recent Posts */
.bsp-recent-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bsp-recent-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: inherit;
  transition: opacity 0.3s;
}

.bsp-recent-item:hover {
  opacity: 0.8;
}

.bsp-recent-img {
  width: 72px;
  min-width: 72px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
}

.bsp-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsp-recent-title {
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.bsp-recent-date {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
}

/* Contact Widget */
.bsp-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.bsp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.bsp-contact-row i {
  color: var(--secondary);
  margin-top: 0.15rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

a.bsp-contact-row {
  transition: color 0.3s;
}

a.bsp-contact-row:hover {
  color: var(--secondary);
}

/* Related Posts */
.bsp-related {
  padding: 5rem 0;
  background: var(--gray-light);
  border-top: 1px solid var(--border);
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bsp-layout {
    grid-template-columns: 1fr;
  }

  .bsp-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .bsp-widget-dark {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

  .bsp-hero {
    height: 55vh;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .blog-card-title {
    font-size: 1.3rem;
  }

  .bsp-sidebar {
    grid-template-columns: 1fr;
  }

  .bsp-widget-dark {
    grid-column: auto;
  }

  .bsp-related-grid {
    grid-template-columns: 1fr;
  }

  .bsp-footer {
    flex-direction: column;
  }

  .bsp-title {
    font-size: 1.6rem;
  }
}

/* ============================================================
   OFFER POPUP — Minimal
   ============================================================ */

/* ── Backdrop ── */
.offer-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.offer-popup-backdrop.show {
  opacity: 1;
}

/* ── Modal ── */
.offer-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.95);
  z-index: 9001;
  width: min(420px, 92vw);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.offer-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── Close button ── */
.offer-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.offer-popup-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

/* ── Top red accent strip ── */
.offer-popup-top {
  background: var(--primary);
  padding: 1.75rem 1.75rem 1.5rem;
  text-align: center;
}

.offer-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

.offer-popup-discount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

/* ── Body ── */
.offer-popup-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.offer-popup-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.offer-popup-desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── Perks ── */
.offer-popup-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.offer-popup-perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--dark);
  font-weight: 500;
}

.offer-popup-perks li i {
  color: var(--primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── CTA ── */
.offer-popup-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.8rem 1.25rem;
  margin-bottom: 0.85rem;
}

/* ── Skip link ── */
.offer-popup-skip {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gray-mid);
  text-align: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.offer-popup-skip:hover {
  color: var(--dark);
}

/* ============================================================
   PAGE INTRO SECTION
   (Title + description block that sits below every page hero)
   ============================================================ */

.page-intro {
  background: #fff;
  padding: 2.5rem 0 2rem;
  /* border-bottom: 1px solid var(--border); */
  text-align: center;
}

/* ── Breadcrumb ── */
.pi-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  display: none;
}

.pi-crumb {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.pi-crumb:hover {
  color: var(--primary);
}

.pi-sep {
  font-size: 0.55rem;
  color: var(--gray-mid);
  opacity: 0.6;
}

.pi-crumb-current {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Content block ── */
.pi-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pi-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.55rem;
}

.pi-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.pi-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-intro {
    padding: 1.75rem 0 1.5rem;
  }

  .pi-title {
    font-size: 1.55rem;
  }

  .pi-desc {
    font-size: 0.86rem;
  }
}


/* ============================================================
   HERO BANNER — HIDE ALL OVERLAY TEXT (site-wide)
   ============================================================ */
.dnb-page-hero .dnb-hero-title,
.dnb-page-hero .dnb-hero-subtitle,
.dnb-page-hero .dnb-hero-badge,
.dnb-page-hero .dnb-hero-content,

.page-hero .page-hero-title,
.page-hero .page-hero-subtitle,
.page-hero .page-hero-badge,
.page-hero .page-hero-content,
.page-hero .breadcrumb,

.bq-page-hero .bq-hero-title,
.bq-page-hero .bq-hero-subtitle,
.bq-page-hero .bq-hero-badge,
.bq-page-hero .bq-hero-content,
.bq-page-hero .bq-breadcrumb,

.vnp-hero .vnp-hero-title,
.vnp-hero .vnp-hero-subtitle,
.vnp-hero .vnp-hero-badge,
.vnp-hero .vnp-hero-content,
.vnp-hero .vnp-breadcrumb,

.bsp-hero .bsp-hero-content,
.bsp-hero .bsp-title,
.bsp-hero .bsp-category,
.bsp-hero .bsp-meta,
.bsp-hero .bsp-breadcrumb,

/* Loose elements placed directly inside hero sections */
.dnb-page-hero>h1,
.dnb-page-hero>p,
.dnb-page-hero>div:not(.page-hero-bg):not(.page-hero-overlay),
.page-hero>h1,
.page-hero>p,
.bq-page-hero>h1,
.bq-page-hero>p,
.vnp-hero>h1,
.vnb-hero>p {
  display: none !important;
}

/* ============================================================
   OTHER RESTAURANTS SECTION
   ============================================================ */
.other-restaurants {
  background: #fff;
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border);
}

.other-restaurants-header {
  text-align: center;
  margin-bottom: 3rem;
}

.other-restaurants-header .section-label {
  display: block;
  margin-bottom: 0.6rem;
}

.other-restaurants-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
}

.other-restaurants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Card ── */
.or-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.or-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ── Image ── */
.or-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.or-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.or-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 2px;
  z-index: 1;
}

/* ── Body ── */
.or-card-body {
  padding: 1.35rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.or-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.or-card-desc {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--gray-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

/* ── Footer row ── */
.or-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1.1rem;
  border-top: 1px solid #ebebeb;
}

.or-card-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.or-card-meta i {
  font-size: 0.7rem;
  color: #aaa;
  flex-shrink: 0;
}

.or-card-footer .btn {
  flex-shrink: 0;
  font-size: 0.72rem;
  padding: 0.45rem 1rem;
  letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .other-restaurants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .other-restaurants-grid {
    grid-template-columns: 1fr;
  }

  .other-restaurants {
    padding: 2.5rem 0 3rem;
  }

  .or-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* Hide price on mobile device */
@media (max-width: 768px) {
  .room-card-footer > div:first-child,
  .room-detail-footer .room-price {
    display: none !important;
  }
  
  .room-card-footer,
  .room-detail-footer {
    justify-content: center;
  }
  
  .testimonials-section,
  .other-offers-section {
    padding-top: 0px !important;
  }
  
  .offer-card-body {
    padding: 10px !important;
  }
  
  .bq-bc-inner {
    padding-bottom: 0px !important;
  }
}