/* 
   Project: The Nest - Premium Luxury Hostel
   Theme: Modern Premium (Deep Purple/Rose Gold/Cream)
   Enhanced with Glassmorphism, Animations, and Modern Effects
*/

:root {
  /* Premium Color Palette */
  --primary-color: #e8b4b8; /* Rose Gold */
  --primary-dark: #d4a5a9;
  --primary-gradient: linear-gradient(
    135deg,
    #e8b4b8 0%,
    #f4d3d5 50%,
    #e8b4b8 100%
  );
  --secondary-color: #1a1a2e; /* Deep Navy */
  --secondary-light: #16213e;
  --accent-color: #f8f4f0; /* Warm Cream */
  --accent-gold: #c9a227;
  --text-dark: #2d2d2d;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --white: #ffffff;
  --bg-light: #faf8f5;
  --bg-dark: #0f0f1a;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;

  /* Effects */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(232, 180, 184, 0.3);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Premium Refinements */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Touch-friendly: Android & iPhone */
a,
button,
.btn,
.mobile-cta-btn,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(232, 180, 184, 0.3);
  touch-action: manipulation;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* iOS Safari: fix 100vh including address bar */
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* iPhone / iOS: touch scrolling for scrollable areas */
.life-at-nest-thumbnails,
.video-testimonials-grid,
.testimonials-scroll-wrapper,
.nav-menu,
.gallery-grid,
.food-gallery-track {
  -webkit-overflow-scrolling: touch;
}

/* Scroll Progress Bar - Premium Feature */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-gradient);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 20px rgba(232, 180, 184, 0.5);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--bg-dark) 100%
  );
  color: var(--white);
}

.bg-pattern {
  background-color: var(--accent-color);
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(232, 180, 184, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 162, 39, 0.08) 0%,
      transparent 40%
    );
}

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

.text-white h2,
.text-white p {
  color: var(--white);
}

/* Animated Gradient Background */
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Shine Effect */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Separators */
.separator {
  width: 80px;
  height: 3px;
  background: var(--primary-gradient);
  margin: 15px auto 25px;
  border-radius: 2px;
  position: relative;
}

.separator::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
}

.separator-white {
  width: 80px;
  height: 3px;
  background: var(--primary-gradient);
  margin: 15px auto 25px;
  border-radius: 2px;
}

.separator-left {
  width: 80px;
  height: 3px;
  background: var(--primary-gradient);
  margin: 15px 0 25px;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  min-height: 44px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--secondary-color);
  border: none;
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 180, 184, 0.5);
  color: var(--secondary-color);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary-color);
  border-color: var(--white);
}

.btn-text {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-text:hover {
  color: var(--secondary-color);
  gap: 12px;
}

/* Header */
#header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  padding-top: max(18px, env(safe-area-inset-top));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  left: 0;
  right: 0;
  box-sizing: border-box;
}

#header.scrolled {
  padding: 12px 0;
  background: rgba(26, 26, 46, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.8rem; /* Increased size */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo i {
  color: var(--accent-gold);
  font-size: 1.6rem;
}

.logo-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
  background: transparent;
}
.logo-icon-wrap .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.logo-img {
  height: 42px;
  width: auto;
  max-height: 50px;
  display: block;
  object-fit: contain;
}

.nav-menu ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-menu > ul > li {
  position: relative;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary-gradient);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Nav Dropdown - More */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-trigger i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(232, 180, 184, 0.15);
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  width: 100%;
  overflow: hidden;
  background: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(232, 180, 184, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 162, 39, 0.1) 0%,
      transparent 40%
    );
  z-index: 1;
}

/* Dynamic gradient orbs - subtle animation */
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  z-index: 1;
  animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-30px, 30px) scale(1.05); opacity: 1; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(15, 15, 26, 0.9) 100%
  );
  z-index: 1;
}

.hero-overlay-light {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.35) 0%,
    rgba(15, 15, 26, 0.45) 100%
  );
}

.hero.hero-carousel {
  background: var(--secondary-color);
}

.hero.hero-carousel .room-hero-dots {
  bottom: 40px;
}

.hero.hero-single-slide .hero-carousel-nav,
.hero.hero-single-slide .hero-carousel-dots {
  display: none;
}

@media (max-width: 768px) {
  .hero .hero-carousel-nav {
    display: none;
  }
  .hero .hero-carousel-dots {
    display: none;
  }
  .hero .scroll-indicator {
    bottom: 100px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 900px;
  padding: 0 30px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 180, 184, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 180, 184, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 30px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 180, 184, 0.2); }
  50% { box-shadow: 0 0 25px 5px rgba(232, 180, 184, 0.15); }
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p,
.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-download-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

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

.btn-download svg {
  width: 16px;
  height: 16px;
}


/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #faf8f5 0%, #f3ece6 50%, #faf8f5 100%);
  padding: 80px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.stats-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 200px;
  padding: 20px 50px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(232, 180, 184, 0.12);
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-grid {
    gap: 0;
    justify-content: space-around;
  }

  .stat-item {
    padding: 15px 15px;
    min-width: unset;
    flex: 1;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .stat-item:not(:last-child)::after {
    height: 50px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }
}


/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid-minimal {
  gap: 60px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.feature-list {
  margin-top: 35px;
}

.feature-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.feature-list i {
  color: var(--primary-dark);
  margin-right: 15px;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  z-index: -1;
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: var(--primary-gradient);
  border-radius: 20px;
  z-index: -2;
  opacity: 0.5;
}

.img-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #94a3b8;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.img-placeholder i {
  font-size: 4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Rooms Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.room-card {
  display: block;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  color: inherit;
}

a.room-card:hover {
  color: inherit;
}

.room-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.room-card:hover::before {
  opacity: 1;
}

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

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

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

.room-img .img-placeholder {
  height: 280px;
  background: linear-gradient(135deg, #cbd5e1 0%, #e2e8f0 100%);
  border-radius: 0;
}

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-details {
  padding: 30px;
}

.room-details h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.room-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.room-features {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 25px;
}

.room-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.85rem;
  background: var(--bg-light);
  padding: 8px 14px;
  border-radius: 50px;
}

.room-features i {
  color: var(--primary-dark);
}

/* Facilities */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.facility-item {
  text-align: center;
  padding: 45px 30px;
  background: var(--white);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.facility-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.facility-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.facility-item:hover::before {
  opacity: 0.05;
}

.facility-item > * {
  position: relative;
  z-index: 1;
}

.facility-item i {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
  display: block;
}

.facility-item h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.facility-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Food Section */
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.col-half {
  flex: 1;
  min-width: 320px;
  max-width: 100%;
}

.content-box h2 {
  font-size: 2.5rem;
}

.content-box p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.food-features {
  margin-top: 35px;
}

.food-features li {
  margin-bottom: 18px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}

.food-features i {
  color: var(--primary-dark);
  width: 30px;
  text-align: center;
  margin-right: 18px;
  font-size: 1.1rem;
}

/* Food Section - Compact & Enhanced (index page) */
.section-food-compact {
  padding: 56px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  margin: 0 24px;
  overflow: hidden;
}

.section-food-compact .food-section-header {
  margin-bottom: 24px;
}

.section-food-compact .food-section-header h2 {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.section-food-compact .row {
  gap: 40px;
}

.section-food-compact .content-box p {
  text-align: justify;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.55;
}

.section-food-compact .content-box p:last-of-type {
  margin-bottom: 0;
}

.section-food-compact .food-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.section-food-compact .food-features li {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.section-food-compact .food-features i {
  width: 24px;
  margin-right: 12px;
  font-size: 1rem;
}

.section-food-compact .content-box .btn {
  margin-top: 22px;
}

/* Mess page - justified intro text */
.mess-section-header .mess-intro,
.mess-section-header .mess-meals,
.mess-section-header .mess-note {
  text-align: justify;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
  color: var(--white);
  padding: 50px 25px 20px;
  transform: translateY(100%);
  transition: var(--transition);
  font-weight: 600;
  font-size: 1.1rem;
}

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

/* Life at The Nest - Two-Card Gallery (Modern, Minimal) */
.life-at-nest-section .section-header {
  margin-bottom: 48px;
}

.life-at-nest-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.life-at-nest-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 24px;
  transition: box-shadow 0.3s ease;
}

.life-at-nest-card:hover {
  box-shadow: var(--shadow-lg);
}

.life-at-nest-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.life-at-nest-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg-light);
  cursor: pointer;
}

.life-at-nest-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s ease;
  pointer-events: none;
}

.life-at-nest-featured:hover::after {
  background: rgba(0, 0, 0, 0.05);
}

.life-at-nest-featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.life-at-nest-featured-img.active {
  opacity: 1;
  z-index: 1;
}

.life-at-nest-thumbnails {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  padding-bottom: 4px;
}

.life-at-nest-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.life-at-nest-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.life-at-nest-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.life-at-nest-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.life-at-nest-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  pointer-events: none;
}

.life-at-nest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.life-at-nest-thumb:hover {
  transform: scale(1.02);
}

.life-at-nest-thumb:active {
  transform: scale(0.98);
}

.life-at-nest-thumb.active {
  box-shadow: 0 0 0 2px var(--primary-color);
}

.life-at-nest-thumb.active::after {
  border-color: var(--primary-color);
}

/* Video card - featured video styling */
.life-at-nest-featured-video {
  cursor: default;
  aspect-ratio: 4/3;
}

.life-at-nest-featured-video::after {
  display: none;
}

.life-at-nest-main-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-at-nest-video-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.life-at-nest-video-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.life-at-nest-video-thumb .video-thumb-play {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.life-at-nest-video-thumb:hover .video-thumb-play,
.life-at-nest-video-thumb.active .video-thumb-play {
  background: var(--primary-color);
}

/* Hostel Videos – visible slider below thumbnails */
.life-at-nest-video-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  padding: 8px 0;
}
.life-at-nest-video-slider-prev,
.life-at-nest-video-slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: var(--white);
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.life-at-nest-video-slider-prev:hover,
.life-at-nest-video-slider-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.life-at-nest-video-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.life-at-nest-video-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.life-at-nest-video-slider-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}
.life-at-nest-video-slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Life at Nest – image cards: visible slider below thumbnails */
.life-at-nest-image-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  padding: 8px 0;
}
.life-at-nest-image-slider-prev,
.life-at-nest-image-slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: var(--white);
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.life-at-nest-image-slider-prev:hover,
.life-at-nest-image-slider-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.life-at-nest-image-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.life-at-nest-image-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.life-at-nest-image-slider-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}
.life-at-nest-image-slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .life-at-nest-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-advantages-v2 {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .location-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .location-col .location-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

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

@media (max-width: 768px) {
  .life-at-nest-cards {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  .life-at-nest-card-video .life-at-nest-main-video {
    object-fit: contain;
  }

  .life-at-nest-card {
    padding: 20px;
  }

  .life-at-nest-card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .life-at-nest-featured {
    margin-bottom: 16px;
    aspect-ratio: 4/3;
  }

  .life-at-nest-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }
}

/* Food Gallery Carousel (Mess Page - Mobile) */
.food-gallery-carousel-wrapper {
  position: relative;
}

.food-gallery-prev,
.food-gallery-next,
.food-gallery-dots {
  display: none;
}

/* Mess Food Gallery - Desktop grid (above 768px) */
@media (min-width: 769px) {
  .mess-page .food-gallery-carousel-wrapper {
    display: block;
  }

  .mess-page .food-gallery-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0;
    overflow: visible;
    margin: 0;
  }

  .mess-page .food-gallery-track .gallery-item {
    flex: none;
    height: auto;
    aspect-ratio: 4/3;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(15, 15, 26, 0.98);
  backdrop-filter: blur(20px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 1000px;
  width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#lightbox-caption {
  margin: 20px auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  font-weight: 500;
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 42px;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.close-lightbox:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* Location Advantages - Two-column list format */
.location-advantages-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Desktop & Tablet: two columns */
@media (min-width: 769px) {
  .location-advantages-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile: single column layout, Malls first */
@media (max-width: 768px) {
  .location-advantages-v2 {
    grid-template-columns: 1fr !important;
  }

  .location-col {
    display: contents;
  }

  .location-row-malls {
    order: -1;
  }
}

.location-col {
  display: flex;
  flex-direction: column;
}

.location-col:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.location-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
}

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

.location-row:hover {
  background: rgba(232, 180, 184, 0.06);
}

.location-row i {
  color: var(--primary-color);
  font-size: 1.15rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 180, 184, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.location-row .location-label {
  flex: 1;
  min-width: 0;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.location-row .location-dist {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

#location .section-header {
  margin-bottom: 40px;
}

/* Location */
.address-box {
  margin-top: 50px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
}

.map-container {
  height: 500px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  border: none;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  padding-right: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.info-item i {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-top: 5px;
  width: 24px;
  text-align: center;
}

.info-item h5 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-item p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 45px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-5px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
  margin-bottom: 22px;
}

input,
select,
textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(232, 180, 184, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

select option {
  background: var(--secondary-color);
  color: var(--white);
}

.full-width {
  width: 100%;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0a0a14 0%, #0f0f1a 100%);
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

footer .heart {
  color: var(--primary-color);
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll-to-Top Button - Premium Feature */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: var(--secondary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 180, 184, 0.5);
}

/* Testimonials Section - Premium Social Proof */
.testimonials-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 180, 184, 0.3), transparent);
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  flex: 0 0 380px;
  min-width: 320px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(232, 180, 184, 0.2);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 180, 184, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Video Testimonials Section */
.video-testimonials-section {
  padding: 80px 0;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.video-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper-native {
  padding-bottom: 0;
  height: auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper-native video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg-dark);
}

.video-testimonial-label {
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

@media (max-width: 768px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Testimonials - Horizontal scroll on all screen sizes */
.testimonials-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -24px;
  padding: 0 24px 20px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-carousel-wrapper {
  position: relative;
}

.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Trust Badges / Key Advantages */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.trust-badge i {
  color: var(--primary-dark);
  font-size: 1.3rem;
}

/* Trust Badge Cards - Symmetrical Grid */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.trust-badges-grid .trust-badge {
  display: flex;
}

.trust-badges-section {
  padding: 60px 0;
}

.trust-badges-section-enhanced {
  background: linear-gradient(180deg, #fdfbfb 0%, #faf8f7 100%);
  padding: 64px 0;
}

.trust-badges-section-enhanced .trust-badges-header {
  margin-bottom: 40px;
}

.trust-badges-intro {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

.trust-badges-header {
  margin-bottom: 36px;
}

.trust-badge-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.trust-badge-card {
  flex-direction: column;
  text-align: center;
  background: var(--white);
  padding: 28px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-height: 180px;
  justify-content: flex-start;
}

.trust-badges-section-enhanced .trust-badge-card {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 30px 22px;
  min-height: 190px;
}

.trust-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-badges-section-enhanced .trust-badge-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(232, 180, 184, 0.15);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 180, 184, 0.2);
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.trust-badges-section-enhanced .trust-badge-icon {
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
  background: rgba(232, 180, 184, 0.25);
}

.trust-badge-text {
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Minimal About Section */
.section-minimal .section-header {
  margin-bottom: 50px;
}

.section-header-minimal p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.feature-list-compact {
  margin-top: 28px;
}

.feature-list-compact li {
  margin-bottom: 14px;
}

/* FAQ Accordion Section */
.faq-section {
  background: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.faq-item:hover {
  border-color: rgba(232, 180, 184, 0.3);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-dark);
}

.faq-question i {
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

/* Enhanced Lightbox - Prev/Next Navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2002;
}

.lightbox-nav:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Mobile Sticky CTA Bar - Call & Visit Us Now */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 10px 12px;
  padding-left: max(12px, env(safe-area-inset-left));
  padding-right: max(12px, env(safe-area-inset-right));
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: nowrap;
}

.mobile-cta-call {
  background: var(--primary-gradient);
  color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.mobile-cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.5);
}

.mobile-cta-visit {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.mobile-cta-visit:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Slide-up entrance for mobile CTA */
@keyframes ctaBarSlide {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  position: absolute;
  top: 100px;
  left: 30px;
  z-index: 10;
}

.back-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateX(-5px);
}

.back-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.back-btn:hover i {
  transform: translateX(-3px);
}

/* Page Header for Sub-pages */
.page-header {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  overflow: hidden;
}

/* Dynamic Page Header - Parallax & Ken Burns */
.page-header-dynamic {
  background: var(--secondary-color);
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  z-index: 0;
}

/* Room Page - Hero Image Carousel */
.page-header-carousel .room-hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-carousel.room-images-section {
  min-height: 500px;
  height: 85vh;
}

.room-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.room-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.room-hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.page-header-carousel .room-hero-prev,
.page-header-carousel .room-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-header-carousel .room-hero-prev:hover,
.page-header-carousel .room-hero-next:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.page-header-carousel .room-hero-prev {
  left: 24px;
}

.page-header-carousel .room-hero-next {
  right: 24px;
}

.page-header-carousel .room-hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.page-header-carousel .room-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-header-carousel .room-hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.page-header-carousel .room-hero-dot.active {
  background: var(--primary-color);
  width: 28px;
  border-radius: 5px;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-2%, -2%);
  }
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(26, 26, 46, 0.82) 0%,
    rgba(15, 15, 26, 0.88) 50%,
    rgba(26, 26, 46, 0.92) 100%
  );
  z-index: 1;
}

/* Carousel pages & mess hero: show images without dark overlay */
.page-header-carousel::before,
.mess-hero-section::before {
  display: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 80px;
}

.page-header-badge {
  display: inline-block;
  background: rgba(232, 180, 184, 0.25);
  border: 1px solid rgba(232, 180, 184, 0.5);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-header-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-header-badge {
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 180, 184, 0.2); }
  50% { box-shadow: 0 0 20px 2px rgba(232, 180, 184, 0.15); }
}

/* Festival Pages - Subtle Enhancements */
.festival-page .page-header-content {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.festival-page .page-header-content h1 {
  letter-spacing: 0.5px;
}

.festival-page .section .row {
  align-items: center;
}

.festival-page .col-half .responsive-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.festival-page .feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.festival-page .feature-list li:last-child {
  border-bottom: none;
}

.festival-page .feature-list li:hover {
  padding-left: 8px;
  color: var(--secondary-color);
}

.festival-page .feature-list li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.festival-page .section.bg-light .section-header p {
  color: var(--text-light);
}

.festival-page .gallery-grid {
  gap: 24px;
}

.festival-page .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.festival-page .gallery-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.festival-page .btn.btn-primary {
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.35);
}

.festival-page .btn.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.45);
}

/* Room Page - Dynamic Featured Image */
.room-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.room-img-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.4) 0%, transparent 70%);
  border-radius: 0 100% 0 0;
  z-index: 2;
  pointer-events: none;
}

.room-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 3px solid transparent;
  transition: var(--transition);
}

.room-img-wrap:hover::after {
  border-color: rgba(232, 180, 184, 0.6);
  box-shadow: inset 0 0 40px rgba(232, 180, 184, 0.08);
}

.room-featured-img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
}

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

/* Feature List - Staggered Reveal Animation */
.room-page .feature-list-animated li {
  opacity: 0;
}

.room-page .feature-list-animated.revealed li {
  animation: fadeSlideIn 0.6s ease forwards;
}

.room-page .feature-list-animated.revealed li:nth-child(1) { animation-delay: 0.1s; }
.room-page .feature-list-animated.revealed li:nth-child(2) { animation-delay: 0.2s; }
.room-page .feature-list-animated.revealed li:nth-child(3) { animation-delay: 0.3s; }
.room-page .feature-list-animated.revealed li:nth-child(4) { animation-delay: 0.4s; }
.room-page .feature-list-animated.revealed li:nth-child(5) { animation-delay: 0.5s; }
.room-page .feature-list-animated.revealed li:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Room Page - OTA Structure: Images First, Then Perks */
.room-images-section {
  /* Images carousel only - no overlay content */
}

/* Room Title + Perks Section (OTA-style) */
.room-title-perks-section {
  background: var(--white);
  padding: 40px 0 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.room-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.room-title-left .room-badge-room {
  display: inline-block;
  background: rgba(232, 180, 184, 0.2);
  border: 1px solid rgba(232, 180, 184, 0.4);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.room-title-left h1 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin: 0 0 8px 0;
}

.room-tagline {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
}

.room-title-right .btn {
  white-space: nowrap;
}

/* OTA Perks - "What this room offers" */
.room-perks-ota {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 28px 32px;
}

.room-perks-ota h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 20px 0;
}

.perks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 24px;
}

.perks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.perks-list li i {
  color: var(--primary-dark);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Room Overview Section */
.room-overview-section {
  background: var(--white);
  padding-top: 60px;
}

.room-overview-content {
  max-width: 720px;
}

.room-overview-content h2 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.room-overview-content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text-light);
}

.room-page .btn.btn-primary {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(232, 180, 184, 0.4);
  transition: all 0.3s ease;
}

.room-page .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.5);
}

/* Room Gallery - Premium Styling */
.room-page .gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.room-page .gallery-item:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
}

.room-page .gallery-caption {
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
  padding: 40px 16px 16px;
  font-weight: 500;
}

/* Amenity Cards - Dynamic Icon Bounce */
.amenity-card-dynamic {
  transition: var(--transition);
}

.amenity-card-dynamic:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232, 180, 184, 0.3);
}

.amenity-card-dynamic i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.amenity-card-dynamic:hover i {
  transform: scale(1.2);
}

/* Gallery Items - Enhanced Hover */
.gallery-item {
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(232, 180, 184, 0.2);
}

/* Menu Cards for Mess Page */
.menu-card {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.menu-card h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary-color);
}

.menu-card h3 i {
  color: var(--primary-dark);
}

.menu-card-note {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin: -8px 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-card-note i {
  font-size: 0.95rem;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-light);
  font-size: 0.95rem;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list li span {
  font-weight: 600;
  color: var(--secondary-color);
}

/* Mess Page - Meal Highlights & Special Days */
.meal-highlight-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.meal-highlight-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.meal-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.meal-highlight-card i {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  display: block;
}

.meal-highlight-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.meal-highlight-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.special-days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.special-day-card {
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.12) 0%, var(--white) 100%);
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(232, 180, 184, 0.25);
  transition: var(--transition);
}

.special-day-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.special-day-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.special-day-card h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.special-day-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Mess Hero - Content Overlay */
.mess-hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
}

/* Mess Hero - Three Images Visible at Once */
.mess-hero-section .mess-hero-triple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
}

.mess-hero-section .mess-hero-panel {
  flex: 1;
  min-width: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.mess-hero-section .mess-hero-panel:last-child {
  border-right: none;
}

/* Back button on sub-pages (e.g. Our Meals) */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin-bottom: 24px;
  background: rgba(26, 26, 46, 0.06);
  color: var(--secondary-color, #1a1a2e);
  border: 1px solid rgba(26, 26, 46, 0.12);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: var(--primary-color, #e8b4b8);
  color: var(--secondary-color, #1a1a2e);
  border-color: transparent;
  transform: translateX(-4px);
}

.btn-back i {
  font-size: 0.85rem;
}

/* Amenities Grid for Room Pages */
.amenities-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

.amenity-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(232, 180, 184, 0.3);
  border-color: rgba(232, 180, 184, 0.3);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-card i {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  display: block;
}

.amenity-card h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--secondary-color);
}

/* Room Page - Explore Other Rooms Section */
.room-cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
}

.room-cta-section .section-header h2,
.room-cta-section .section-header p {
  color: var(--white);
}

.room-cta-section .separator {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
}

.room-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.room-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.room-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 180, 184, 0.5);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.room-cta-card:hover::before {
  opacity: 1;
}

.room-cta-card i {
  font-size: 2.5rem;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.room-cta-card:hover i {
  transform: scale(1.2);
}

.room-cta-card h4 {
  color: var(--white);
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.room-cta-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Responsive Image Utility */
.responsive-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   EVENTS SECTION 
   ========================================== */
.events-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 15px 5px 30px 5px;
}

.event-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.event-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-gradient, #333);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  text-align: center;
  z-index: 2;
}

.event-date .day {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-details h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--secondary-color, #222);
}

.event-details p {
  font-size: 0.9rem;
  color: var(--text-light, #666);
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* --- Tablet (max-width: 992px) --- */
@media (max-width: 992px) {
  /* Hamburger menu visible - nav switches to mobile layout */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    padding: 25px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.5s ease;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: var(--white) !important;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
    width: 40px;
    height: 40px;
  }

  .mobile-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke: var(--white);
  }

  .header-actions .btn-primary {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .about-grid,
  .contact-grid,
  .row {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 40px;
  }

  .about-image::before,
  .about-image::after {
    display: none;
  }

  .img-placeholder {
    height: 350px;
  }

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

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-stats {
    gap: 40px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Testimonials - Horizontal Slidable on Mobile */
  .testimonials-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 0 20px 25px;
  }

  .testimonials-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    grid-template-columns: unset;
  }

  .testimonial-card {
    flex: 0 0 85%;
    min-width: 280px;
    max-width: 340px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 28px 22px;
  }

  /* Gallery - Standard Carousel on Mobile */
  #gallery .gallery-carousel-wrapper {
    padding: 0 50px 0;
  }

  #gallery .carousel-btn {
    display: flex;
  }

  #gallery .carousel-dots {
    display: flex;
  }

  /* Room Perks - Tablet */
  .perks-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Trust Badges - 2x2 Symmetrical Grid on Tablet */
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-badge-card {
    min-height: 160px;
    padding: 24px 18px;
  }

  .trust-badge-title {
    font-size: 0.95rem;
  }

  .trust-badge-text {
    font-size: 0.84rem;
    -webkit-line-clamp: 3;
  }

  .trust-badges-intro {
    font-size: 0.98rem;
  }

  .trust-badges {
    gap: 25px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .scroll-top-btn {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .responsive-img {
    height: 400px;
  }

  .contact-info {
    padding-right: 0;
  }

  .content-box h2 {
    font-size: 2rem;
  }

  /* Mess - Special Days Tablet */
  .special-days-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* Mobile Sticky CTA Bar - Show on mobile only */
  .mobile-cta-bar {
    display: grid;
    animation: ctaBarSlide 0.5s ease-out;
  }

  body {
    padding-bottom: 90px;
  }

  .scroll-top-btn {
    bottom: max(85px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }

  /* Mobile Navigation */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    padding: 25px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.5s ease;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-dropdown-trigger {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: var(--white) !important;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
    width: 40px;
    height: 40px;
  }

  .mobile-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke: var(--white);
  }

  .header-actions .btn-primary {
    display: none;
  }

  .contact-form .btn-primary {
    display: block;
  }

  /* Logo Scaling */
  .logo a {
    font-size: 1.4rem;
  }

  .logo-img {
    height: 38px;
  }
  .logo-icon-wrap {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }
  .logo-icon-wrap .logo-img {
    width: 100%;
    height: 100%;
  }

  .logo i {
    font-size: 1.2rem;
  }

  /* Hero */
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: unset;
    padding: 100px 20px 60px;
    align-items: center;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-btns {
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 8px 18px;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  /* About Section - Minimal */
  .about-text p,
  .about-lead {
    font-size: 1rem;
  }

  /* Welcome to The Nest: show image first on mobile */
  #about .about-grid-minimal .about-image {
    order: -1;
  }

  #about .about-grid-minimal .about-text {
    order: 1;
  }

  .feature-list-compact li {
    font-size: 0.95rem;
  }

  /* Prime Location Advantages - Single column, no overflow on Mobile */
  #location .location-advantages-v2 {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  #location .location-row {
    padding: 16px 18px;
  }

  #location .location-row .location-label {
    font-size: 0.9rem;
  }

  /* Trust Badges - Symmetrical 2x2 on Mobile */
  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .trust-badge-card {
    min-height: 150px;
    padding: 20px 14px;
  }

  .trust-badge-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .trust-badge-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .trust-badge-text {
    font-size: 0.78rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .trust-badges-intro {
    font-size: 0.92rem;
  }

  .location-row {
    padding: 16px 20px;
  }

  /* Facilities - Symmetrical & Engaging on Mobile */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .facility-item {
    padding: 22px 14px;
  }

  .facility-item i {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }

  .facility-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .facility-item p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .responsive-img {
    height: 300px;
  }

  /* Rooms Grid */
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-features {
    gap: 10px;
  }

  .room-features span {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  /* Food Section */
  .content-box h2 {
    font-size: 1.8rem;
  }

  .food-features li {
    font-size: 0.95rem;
  }

  .section-food-compact .food-features {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-food-compact {
    margin: 0 16px;
  }

  /* Events / Festivals Grid */
  .events-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .events-grid::-webkit-scrollbar {
    display: none;
  }

  .event-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    min-width: 260px;
  }

  .event-card:hover {
    transform: none;
  }

  .event-img {
    height: 180px;
  }

  .event-details {
    padding: 16px;
  }

  .event-details h3 {
    font-size: 1.1rem;
  }

  .event-details p {
    font-size: 0.85rem;
  }

  /* Gallery Carousel */
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 25px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-item {
    flex: 0 0 70%;
    scroll-snap-align: center;
    margin-bottom: 0;
    height: 250px;
    aspect-ratio: auto;
  }

  .gallery-caption {
    transform: translateY(0);
    font-size: 0.95rem;
    padding: 30px 15px 15px;
  }

  /* Page Header */
  .page-header {
    height: 55vh;
    min-height: 380px;
    padding-top: 70px;
  }

  .page-header-content {
    padding-top: 30px;
  }

  .page-header-content h1 {
    font-size: 2.2rem;
  }

  .page-header-content p {
    font-size: 1rem;
  }

  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding-right: 0;
  }

  .contact-form {
    padding: 25px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 30px;
  }

  .info-item {
    margin-bottom: 25px;
  }

  /* Map */
  .map-container {
    height: 300px;
    border-radius: 15px;
  }

  /* Lightbox */
  .lightbox-content {
    width: 95%;
    max-height: 70vh;
  }

  .close-lightbox {
    top: 15px;
    right: 20px;
    font-size: 36px;
  }

  #lightbox-caption {
    font-size: 0.95rem;
    width: 90%;
  }

  /* Back Button */
  .back-btn {
    top: 85px;
    left: 15px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* Row / Column Layout */
  .row {
    flex-direction: column;
    gap: 30px;
  }

  .col-half {
    width: 100%;
    min-width: 100%;
  }

  .col-half .responsive-img {
    height: 280px;
    margin-top: 20px;
  }

  /* Feature List */
  .feature-list {
    margin-top: 25px;
  }

  .feature-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  /* Menu Cards */
  .menu-card {
    padding: 25px;
  }

  .menu-card h3 {
    font-size: 1.2rem;
  }

  /* Amenities Grid */
  .amenities-detail-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  /* Footer */
  footer {
    padding: 25px 0;
    font-size: 0.8rem;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .section-header h2,
  .testimonials-section .section-header p {
    color: var(--white);
  }

  .testimonials-section .separator {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer-inner {
    padding: 0 20px 18px;
  }
}

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

  .section {
    padding: 45px 0;
  }

  /* Header Compact - keep safe area for notch */
  #header {
    padding: 12px 0;
    padding-top: max(12px, env(safe-area-inset-top));
  }

  .logo a {
    font-size: 1.2rem;
    gap: 6px;
  }

  .logo-img {
    height: 34px;
  }
  .logo-icon-wrap {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  .logo-icon-wrap .logo-img {
    width: 100%;
    height: 100%;
  }

  .logo i {
    font-size: 1rem;
  }

  /* Hero Compact */
  .hero {
    min-height: 450px;
    padding: 100px 16px 50px;
  }

  .hero-content {
    margin-top: 20px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .hero-btns {
    max-width: 240px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 30px;
  }

  .hero-stat h3 {
    font-size: 1.5rem;
  }

  .hero-stat p {
    font-size: 0.75rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.85rem;
  }

  .separator {
    width: 60px;
    margin: 12px auto 20px;
  }

  /* About */
  .about-text p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .responsive-img {
    height: 220px;
    border-radius: 15px;
  }

  /* Rooms */
  .room-details {
    padding: 20px;
  }

  .room-details h3 {
    font-size: 1.3rem;
  }

  .room-details p {
    font-size: 0.85rem;
  }

  .room-features {
    gap: 8px;
  }

  .room-features span {
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .location-row {
    padding: 14px 16px;
  }

  .location-row .location-label {
    font-size: 0.95rem;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .facility-item {
    padding: 20px 15px;
  }

  .facility-item i {
    font-size: 1.8rem;
  }

  .facility-item h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .facility-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Food */
  .content-box h2 {
    font-size: 1.5rem;
  }

  .food-features {
    margin-top: 20px;
  }

  .food-features li {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .section-food-compact .food-features li {
    margin-bottom: 8px;
  }

  .section-food-compact .content-box .btn {
    margin-top: 18px;
  }

  .section-food-compact {
    margin: 0 12px;
  }

  .food-features i {
    font-size: 0.95rem;
    margin-right: 12px;
  }

  /* Events/Festivals */
  .event-card {
    flex: 0 0 85%;
    min-width: 240px;
  }

  .event-img {
    height: 150px;
  }

  .event-details h3 {
    font-size: 1rem;
  }

  .event-details p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  /* Gallery Carousel */
  .gallery-grid {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-item {
    flex: 0 0 80%;
    height: 200px;
  }

  .gallery-caption {
    font-size: 0.85rem;
    padding: 25px 12px 12px;
  }

  /* Food Gallery Carousel - Mess Page Mobile */
  .mess-page .food-gallery-carousel-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }

  .mess-page .food-gallery-prev {
    order: 1;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    flex-shrink: 0;
  }

  .mess-page .food-gallery-next {
    order: 3;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    flex-shrink: 0;
  }

  .mess-page .food-gallery-prev:hover,
  .mess-page .food-gallery-next:hover {
    background: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .mess-page .food-gallery-track {
    order: 2;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 20px;
  }

  .mess-page .food-gallery-track .gallery-item {
    flex: 0 0 88%;
    scroll-snap-align: center;
    height: 220px;
  }

  .mess-page .food-gallery-dots {
    order: 4;
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 20px;
    max-width: 100%;
    padding: 0 8px;
  }

  .mess-page .food-gallery-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mess-page .food-gallery-dot.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 4px;
  }

  /* Contact */
  .contact-form {
    padding: 20px 16px;
  }

  input,
  select,
  textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .info-item h5 {
    font-size: 1rem;
  }

  .info-item p {
    font-size: 0.85rem;
  }

  /* Map */
  .map-container {
    height: 250px;
    border-radius: 12px;
  }

  /* Lightbox */
  .lightbox {
    padding-top: 40px;
  }

  .lightbox-content {
    width: 98%;
    max-height: 60vh;
    border-radius: 8px;
  }

  .close-lightbox {
    top: 10px;
    right: 15px;
    font-size: 32px;
  }

  #lightbox-caption {
    font-size: 0.85rem;
    width: 95%;
  }

  /* Amenities Grid */
  .amenities-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .amenity-card {
    padding: 20px 12px;
  }

  .amenity-card i {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .amenity-card h4 {
    font-size: 0.8rem;
  }

  /* Back Button */
  .back-btn {
    top: 75px;
    left: 10px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  /* Page Header */
  .page-header {
    height: 50vh;
    min-height: 320px;
    padding-top: 60px;
  }

  .page-header-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 18px;
    margin: 0 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
  }

  .page-header-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--secondary-color);
  }

  .page-header-content p {
    font-size: 0.85rem;
    padding: 0;
    color: var(--text-light);
  }

  /* Room Hero Carousel - Mobile */
  .page-header-carousel .room-hero-prev,
  .page-header-carousel .room-hero-next {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .page-header-carousel .room-hero-prev {
    left: 12px;
  }

  .page-header-carousel .room-hero-next {
    right: 12px;
  }

  .page-header-carousel .room-hero-dots {
    bottom: 80px;
  }

  .page-header-carousel .room-hero-dot {
    width: 8px;
    height: 8px;
  }

  .page-header-carousel .room-hero-dot.active {
    width: 20px;
  }

  /* Row / Column Layout */
  .col-half .responsive-img {
    height: 220px;
    border-radius: 15px;
  }

  /* Mess - Meal Highlights & Special Days Mobile */
  .meal-highlight-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .meal-highlight-card {
    padding: 24px 20px;
  }

  .special-days-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .special-day-card {
    padding: 20px 18px;
  }

  /* Mess Page - Mobile Enhancements */
  .mess-page .page-header {
    height: 55vh;
    min-height: 360px;
  }

  .mess-page .mess-hero-triple {
    flex-direction: column;
  }

  .mess-page .mess-hero-panel {
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    min-height: 33.33%;
  }

  .mess-page .mess-hero-panel:last-child {
    border-bottom: none;
  }

  .mess-page .page-header-content {
    padding: 20px 16px;
    margin: 0 12px;
  }

  .mess-page .mess-hero-content h1 {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .mess-page .mess-hero-content p {
    font-size: 0.8rem;
  }

  .mess-page .page-header-carousel .room-hero-dots {
    bottom: 70px;
  }

  .mess-section-header {
    margin-bottom: 8px;
  }

  .mess-section-header .mess-intro,
  .mess-section-header .mess-meals,
  .mess-section-header .mess-note {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    hyphens: auto;
    text-align: justify;
  }

  .mess-section-header .mess-note {
    margin-bottom: 0;
  }

  .mess-page .section {
    padding: 48px 0 56px;
  }

  .mess-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Kitchen Standards - text first on mobile */
  .mess-page .row {
    flex-direction: column;
  }

  .mess-page .row .col-half:first-child {
    order: 1;
  }

  .mess-page .row .col-half:last-child {
    order: 2;
    margin-top: 20px;
  }

  /* Room Title + Perks - Mobile */
  .room-title-bar {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .room-title-left h1 {
    font-size: 1.6rem;
  }

  .room-tagline {
    font-size: 0.95rem;
  }

  .room-title-right {
    width: 100%;
  }

  .room-title-right .btn {
    width: 100%;
  }

  .room-perks-ota {
    padding: 20px 20px;
  }

  .perks-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
  }

  .perks-list li {
    font-size: 0.85rem;
  }

  /* Feature List */
  .feature-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .feature-list i {
    font-size: 0.95rem;
    margin-right: 10px;
  }

  /* Menu Cards */
  .menu-card {
    padding: 20px;
  }

  .menu-card h3 {
    font-size: 1.1rem;
    gap: 8px;
  }

  .menu-list li {
    padding: 10px 0;
    font-size: 0.85rem;
  }

  /* WhatsApp Button */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    right: 16px;
    bottom: 16px;
  }

  /* Footer */
  footer {
    padding: 20px 0;
    font-size: 0.75rem;
  }

  /* btn-text */
  .btn-text {
    font-size: 0.85rem;
  }
}

/* --- iPhone SE / Very small phones (max-width: 320px) --- */
@media (max-width: 320px) {
  .container {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .logo a {
    font-size: 1.1rem;
  }

  .mobile-cta-bar {
    grid-template-columns: 1fr;
  }

  .mobile-cta-btn {
    font-size: 0.75rem;
  }
}