/* ==========================================================
   KUWAIT RESIDENCY — Premium Glassmorphism Editorial Layout
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ----- Design Variables ----- */
:root {
  --bg-body: #eef1ea;          /* Soft light sage green */
  --text-primary: #282f25;     /* Deep forest charcoal-olive */
  --text-secondary: #586154;   /* Slate-sage body color */
  --text-muted: #848f7f;       /* Light-sage muted text */
  --bg-white: #ffffff;
  
  /* Glassmorphism Specs */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-shadow: 0 10px 40px 0 rgba(118, 126, 110, 0.12);
  --glass-blur: blur(16px) saturate(120%);
  --glass-bg-hover: rgba(255, 255, 255, 0.6);
  
  /* Accents */
  --accent-gradient: linear-gradient(90deg, rgba(255, 236, 150, 1) 2%, rgba(255, 208, 0, 1) 46%, rgba(255, 236, 150, 1) 100%);
  --accent-solid: #ffd000;
  --accent-dark: #9c7c00;      /* Dark gold for accessible text */
  
  /* Channels */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  
  /* Typography */
  --font-serif: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
}

/* ----- Reset & Global Styles ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* ----- Utility Glass Classes ----- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-sm {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* ==========================================================
   1. HEADER & NAVIGATION
   ========================================================== */
.glass-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-header.scrolled {
  top: 12px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  box-shadow: 0 4px 10px rgba(255, 208, 0, 0.2);
}

.logo-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.35);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 1001;
  padding: 2px 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: left center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(-2px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(2px);
}

/* Mobile Dropdown Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(238, 241, 234, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 998;
  padding: 100px 40px 40px;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav .nav-link {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 40px;
}

.mobile-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ==========================================================
   2. HERO SECTION
   ========================================================== */
.hero-section {
  padding: 140px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-card {
  padding: 64px;
  border-radius: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

/* Text elements */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
}

/* Standard Premium Buttons styling */
.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 32px;
  height: 52px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
}

.btn-primary svg, .btn-secondary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #111;
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 208, 0, 0.35);
}
.btn-primary:hover svg {
  transform: scale(1.1);
}

.btn-primary.wa {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}
.btn-primary.wa:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.4);
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: var(--text-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-secondary:hover svg {
  transform: scale(1.1);
}

/* Highlights */
.hero-highlights {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(40, 47, 37, 0.08);
  padding-top: 28px;
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.highlight span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Hero Image side */
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-image-wrap:hover img {
  transform: scale(1.06);
}

.hero-img-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}

/* ==========================================================
   3. GENERAL SECTION BLOCKS & HEADINGS
   ========================================================== */
.section-block {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.big-heading {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 48px;
  max-width: 820px;
  letter-spacing: -0.5px;
}

/* ==========================================================
   4. FEATURES GRID
   ========================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 44px 36px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--glass-bg-hover);
  box-shadow: 0 15px 40px rgba(118, 126, 110, 0.16);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--glass-border);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-dark);
  stroke-width: 1.5;
  fill: none;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================
   5. ROOMS GRID
   ========================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.room-card {
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(118, 126, 110, 0.14);
}

.room-img-wrap {
  height: 320px;
  overflow: hidden;
  position: relative;
}

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

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

.room-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.room-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.room-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.room-features li::before {
  content: '•';
  color: var(--accent-dark);
  position: absolute;
  left: 6px;
  font-size: 1.2rem;
  top: -2px;
}

.room-ctas {
  display: flex;
  gap: 16px;
  margin-top: auto;
}











/* ==========================================================
   6. SPLIT GRID / STORY HIGHLIGHT
   ========================================================== */
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.split-card {
  padding: 60px;
  border-radius: 32px;
}

.split-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.split-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.split-ctas {
  display: flex;
  gap: 16px;
}

.split-image {
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.split-image:hover img {
  transform: scale(1.05);
}

/* ==========================================================
   7. AMENITIES GRID
   ========================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 30px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.amenity-pill:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(118, 126, 110, 0.08);
}

.amenity-pill svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-dark);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.amenity-pill span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* ==========================================================
   8. REVIEWS / VOICES
   ========================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  padding: 44px 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-card:hover {
  transform: translateY(-5px);
  background: var(--glass-bg-hover);
  box-shadow: 0 15px 40px rgba(118, 126, 110, 0.15);
}

.review-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px 0 18px;
  color: var(--text-primary);
}

.quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  flex-grow: 1;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(40, 47, 37, 0.08);
  padding-top: 20px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.author-tag {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================
   9. GALLERY GRID
   ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 290px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   10. CTA & CONTACT SECTION
   ========================================================== */
.cta-card {
  padding: 64px 40px;
  border-radius: 32px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto 56px;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 10px 0 20px;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}









.cta-contact-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(40, 47, 37, 0.08);
  padding-top: 28px;
}

.cta-contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cta-contact-details svg {
  stroke: var(--accent-dark);
  flex-shrink: 0;
}

/* Map Wrap */
.map-wrap {
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

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

/* ==========================================================
   11. FOOTER
   ========================================================== */
.footer {
  padding: 44px 0;
  border-top: 1px solid rgba(40, 47, 37, 0.08);
  margin-top: 40px;
}

.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================
   12. FLOATING ACTIONS & WHATSAPP
   ========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-float:hover {
  background-color: var(--whatsapp-dark);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================
   13. LIGHTBOX SYSTEM
   ========================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 39, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

#lb-img {
  max-width: 90%;
  max-height: 75vh;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox.active #lb-img {
  transform: scale(1);
}

.lb-caption {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  margin-top: 24px;
  font-size: 1.05rem;
  text-align: center;
  max-width: 600px;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  transition: opacity 0.3s;
}

.lb-close:hover {
  opacity: 0.65;
}

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.lb-prev:hover, .lb-next:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) scale(1.05);
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ==========================================================
   14. SCROLL REVEALS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

/* ==========================================================
   15. RESPONSIVE BREAKPOINTS
   ========================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrap {
    height: 420px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-image {
    height: 400px;
  }
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .glass-header {
    width: 95%;
    top: 16px;
  }
  .header-inner {
    padding: 12px 24px;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav {
    display: none;
  }
  .hero-card {
    padding: 40px 24px;
  }
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section-block {
    padding: 60px 0;
  }
  .big-heading, .cta-heading {
    font-size: 2.2rem;
  }
  .split-heading {
    font-size: 2rem;
  }
  .cta-card {
    padding: 40px 24px;
  }
  .cta-contact-details {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .lb-prev, .lb-next {
    display: none; /* Swipe/tap close on mobile */
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.8rem;
    height: 48px;
  }
  .hero-highlights {
    flex-direction: column;
    gap: 20px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}
