/* ==========================================
   Sri Sai Datta PG - Premium Redesign Styling
   ========================================== */

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

/* 2. Color Schemes (Variables) */
:root {
  /* LIGHT MODE CONFIG */
  --bg-base: #f7f6f3;       /* Warm Soft Ivory/Alabaster */
  --bg-card: rgba(255, 255, 255, 0.75); /* Glassmorphism translucent */
  --bg-solid-card: #ffffff;
  --bg-header: rgba(247, 246, 243, 0.85);
  
  --primary: #0f172a;       /* Deep Midnight Navy */
  --primary-rgb: 15, 23, 42;
  --secondary: #b45309;     /* Warm Gold / Amber Accent */
  --secondary-light: #d97706;
  --secondary-rgb: 180, 83, 9;
  
  --accent-green: #15803d;  /* Forest Green */
  --accent-green-rgb: 21, 128, 61;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-color-focus: rgba(180, 83, 9, 0.4);
  
  --text-primary: #1e293b;  /* Slate text */
  --text-muted: #57657a;
  --text-light: #8e9cae;
  
  --card-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 8px -1px rgba(15, 23, 42, 0.02);
  --card-shadow-hover: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --glow-color: rgba(180, 83, 9, 0.15);
  
  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.25rem;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 64px;
}

body.dark-mode {
  /* DARK MODE CONFIG */
  --bg-base: #111113;       /* Near Black Charcoal */
  --bg-card: rgba(24, 24, 28, 0.7);
  --bg-solid-card: #1c1c20;
  --bg-header: rgba(17, 17, 19, 0.85);
  
  --primary: #f8fafc;       /* Light contrast slate */
  --primary-rgb: 248, 250, 252;
  --secondary: #f59e0b;     /* Vibrant Amber gold */
  --secondary-light: #fbbf24;
  --secondary-rgb: 245, 158, 11;
  
  --accent-green: #22c55e;
  --accent-green-rgb: 34, 197, 94;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-color-focus: rgba(245, 158, 11, 0.4);
  
  --text-primary: #f1f5f9;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --card-shadow-hover: 0 20px 35px -5px rgba(0, 0, 0, 0.6), 0 4px 15px rgba(245, 158, 11, 0.15);
  --glow-color: rgba(245, 158, 11, 0.25);
  
  background-image: radial-gradient(rgba(255, 255, 255, 0.018) 1.2px, transparent 1.2px);
}

/* 3. Base Resets & Theme Transitions */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  background-image: radial-gradient(rgba(180, 83, 9, 0.035) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  color: var(--text-primary);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              background-image 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.3s ease, 
              border-color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button, select, input, textarea {
  font-family: inherit;
  outline: none;
  background: none;
  border: none;
}

/* Container Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 5rem 0;
  position: relative;
}

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

/* 4. Background Design Blobs System */
.bg-blobs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.14;
  transition: opacity 0.4s ease;
}

.dark-mode .bg-blob {
  opacity: 0.055;
}

.blob-1 {
  top: 10%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--secondary-light) 0%, rgba(255,255,255,0) 70%);
}

.blob-2 {
  top: 40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, rgba(255,255,255,0) 70%);
}

.blob-3 {
  bottom: 15%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary) 0%, rgba(255,255,255,0) 70%);
}

/* Section specific background overrides to prevent giant blank canvas */
.hero-wrap {
  background: radial-gradient(circle at 50% 20%, rgba(var(--secondary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0) 75%);
}

.why-choose-wrap {
  background: radial-gradient(circle at 10% 30%, rgba(var(--primary-rgb), 0.04) 0%, rgba(var(--secondary-rgb), 0.03) 100%);
}

.safety-wrap {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(15, 23, 42, 0.07) 100%);
}
.dark-mode .safety-wrap {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(24, 24, 28, 0.15) 100%);
}

.location-wrap {
  background: radial-gradient(circle at 80% 50%, rgba(var(--secondary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.01) 100%);
}

.contact-wrap {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.01) 0%, rgba(var(--secondary-rgb), 0.06) 100%);
}

/* Section Header Styles */
.section-header {
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.01em;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 50px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Translucent Glass Card Utility */
.glass-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color-focus);
  box-shadow: var(--card-shadow-hover);
}

/* Badge/Tag styling */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  letter-spacing: 0.06em;
}

.badge-primary {
  background-color: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary);
  border: 1px solid rgba(var(--secondary-rgb), 0.15);
}

.badge-green {
  background-color: rgba(var(--accent-green-rgb), 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(var(--accent-green-rgb), 0.15);
}

.badge-outline {
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
}

/* --- Sticky Header & Brand --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
}

.logo img {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-smooth);
}

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Sun/Moon Theme Toggle Button */
.theme-btn {
  background: none;
  border: 1.5px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.theme-btn:hover {
  background-color: rgba(var(--secondary-rgb), 0.08);
  border-color: var(--secondary);
  transform: rotate(15deg);
}

.theme-btn i {
  transition: transform 0.4s ease;
}

/* Language Selector */
.lang-select {
  padding: 0.3rem 1.5rem 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid var(--border-color);
  background-color: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23b45309' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 4px) center;
  transition: var(--transition-smooth);
}
.lang-select option {
  background-color: var(--bg-solid-card);
  color: var(--text-primary);
}
.dark-mode .lang-select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23f59e0b' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}

.lang-select:hover {
  border-color: var(--secondary);
}

/* Hamburger button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--primary);
  cursor: pointer;
}

/* Mobile Sidebar Drawer Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: var(--bg-solid-card);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.25rem;
}

.mobile-menu-header h3 {
  font-size: 1.15rem;
  color: var(--primary);
}

.close-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1.5px solid var(--border-color);
}

.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}


/* --- Hero Section --- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content .badge {
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 2rem;
  background-color: rgba(var(--secondary-rgb), 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--secondary-rgb), 0.1);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

/* Custom modern buttons with press animation */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn:active {
  transform: scale(0.96);
}

.btn-whatsapp {
  background-color: var(--accent-green);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: rgba(var(--accent-green-rgb), 0.9);
  box-shadow: 0 4px 12px rgba(var(--accent-green-rgb), 0.25);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-base);
}

.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
  opacity: 0.92;
}

.btn-secondary {
  background-color: var(--bg-solid-card);
  color: var(--primary);
  border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  background-color: rgba(var(--secondary-rgb), 0.04);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border-top: 1.5px solid var(--border-color);
  padding-top: 1.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.highlight-item i {
  color: var(--secondary);
  font-size: 1rem;
}

/* Hero Right Side Decorative Vector shapes (Replacing large photos) */
.hero-visual {
  position: relative;
  width: 100%;
}

.hero-vector-art {
  width: 100%;
  aspect-ratio: 1.1;
  background: radial-gradient(circle at 30% 30%, rgba(var(--secondary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vector-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.12) 0%, rgba(255,255,255,0) 80%);
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -20px;
  right: -20px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: -50px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(255,255,255,0) 80%);
}

.hero-map-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-map-badge:hover {
  transform: scale(1.06);
}

.hero-badge-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--bg-solid-card);
  border: 2px dashed var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--card-shadow-hover);
  animation: rotateSlow 25s linear infinite;
}

.hero-badge-circle-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  z-index: 6;
}

.hero-badge-circle-content i {
  font-size: 1.85rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.hero-badge-circle-content span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}


/* --- Quick View Scrollable strip --- */
.quick-view-section {
  padding: 1.25rem 0;
  border-top: 1.5px solid var(--border-color);
  border-bottom: 1.5px solid var(--border-color);
  background-color: var(--bg-solid-card);
}

.quick-view-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.quick-view-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chips-strip {
  display: flex;
  overflow-x: auto;
  gap: 0.6rem;
  padding: 0.25rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
  min-width: 0;
}

.chips-strip::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  background-color: var(--bg-base);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
}

.chip:hover {
  border-color: var(--secondary);
  background-color: rgba(var(--secondary-rgb), 0.05);
}

.quick-view-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.quick-view-link:hover {
  color: var(--secondary);
}


/* --- Facilities Section --- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.facility-card {
  display: flex;
  flex-direction: column;
}

.facility-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--secondary-rgb), 0.08);
  border: 1px solid rgba(var(--secondary-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon-wrapper {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.facility-icon-wrapper i {
  font-size: 1.35rem;
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon-wrapper i {
  color: #ffffff;
}

.facility-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.facility-card-header h3 {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
}

.facility-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.why-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

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

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}


/* --- Rooms Section (Image-Free design) --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.room-vector-header {
  height: 180px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9), rgba(var(--primary-rgb), 0.98));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  overflow: hidden;
  border-bottom: 2px solid var(--secondary);
}

.dark-mode .room-vector-header {
  background: linear-gradient(135deg, rgba(28, 28, 32, 0.8), rgba(20, 20, 24, 0.95));
}

.room-vector-icon {
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.room-card:hover .room-vector-icon {
  transform: scale(1.1);
  color: var(--secondary-light);
}

.room-vector-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 15px 15px;
}

.room-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-info h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.room-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.room-features {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.room-features li i {
  color: var(--secondary);
  font-size: 0.9rem;
}


/* --- Food Section (Elegant timeline) --- */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 2.5rem auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--border-color), var(--secondary), var(--border-color));
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-card {
  padding: 2rem 1.5rem;
  height: 100%;
}

.timeline-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-solid-card);
  border: 3px solid var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.timeline-card:hover .timeline-node {
  transform: scale(1.1);
  background-color: var(--secondary);
  color: #ffffff;
}

.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.food-notice {
  background-color: rgba(var(--secondary-rgb), 0.06);
  border: 1px dashed rgba(var(--secondary-rgb), 0.3);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  max-width: 700px;
  margin: 0 auto;
}

.food-notice p {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
}


/* --- Safety Section --- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.safety-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border: 1.5px solid var(--border-color);
}

.safety-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(var(--secondary-rgb), 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.safety-card:hover .safety-icon {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.safety-icon i {
  font-size: 1.35rem;
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.safety-card:hover .safety-icon i {
  color: #ffffff;
}

.safety-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}


/* --- Location Section (Image-Free design) --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 750px;
  margin: 0 auto;
}

.location-info {
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.location-icon-lg {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  display: block;
}

.location-info h3 {
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.address-block {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 1.75rem;
  text-align: center;
}

.landmark-block {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landmark-block h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.landmark-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.landmark-item i {
  color: var(--secondary);
}

.location-info .btn {
  max-width: 320px;
  margin: 0 auto;
}


/* --- Ideal For Section --- */
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ideal-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.ideal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--secondary-rgb), 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.ideal-card:hover .ideal-icon {
  background-color: var(--secondary);
}

.ideal-icon i {
  font-size: 1.35rem;
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.ideal-card:hover .ideal-icon i {
  color: #ffffff;
}

.ideal-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.ideal-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* --- FAQ Section --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--card-shadow);
}

.faq-question {
  padding: 1.15rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.faq-icon-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(var(--primary-rgb), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-icon-toggle i {
  font-size: 0.75rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-toggle {
  background-color: var(--secondary);
}

.faq-item.active .faq-icon-toggle i {
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.15rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}


/* --- Enquiry Section --- */
.enquiry-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.form-group label span {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-base);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--secondary);
  background-color: var(--bg-solid-card);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.enquiry-card .btn-whatsapp {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
}


/* --- Footer --- */
footer {
  background-color: var(--bg-solid-card);
  border-top: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(var(--primary-rgb), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--secondary);
  color: #ffffff;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 3px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-list li i {
  color: var(--secondary);
  margin-top: 3px;
}

.footer-contact-list li a:hover {
  color: var(--primary);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* --- Sticky Mobile Contact Bar --- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-solid-card);
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);
  z-index: 1500;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-color);
}

.sticky-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  border-right: 1px solid var(--border-color);
}

.sticky-bar-btn:last-child {
  border-right: none;
}

.sticky-bar-btn i {
  font-size: 1.15rem;
}

.sticky-bar-btn.btn-call-accent {
  background-color: var(--primary);
  color: var(--bg-base);
}

.sticky-bar-btn.btn-whatsapp-accent {
  background-color: var(--accent-green);
  color: #ffffff;
}

.sticky-bar-btn.btn-directions-accent {
  background-color: var(--bg-solid-card);
  color: var(--primary);
}

/* Animations declarations */
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-badge-circle {
    animation: none;
  }
}


/* ==========================================
   5. RESPONSIVE BREAKPOINTS (MOBILE-FIRST)
   ========================================== */

@media screen and (max-width: 1024px) {
  body {
    padding-top: 124px !important;
  }
  h1 { font-size: 2.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { max-width: 450px; margin: 0 auto; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 10%; right: 10%; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .ideal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Collapse navigation list to Flipkart-style mobile navbar */
  .nav-links { display: none; }
  .menu-btn { display: none !important; }
  .lang-selector-wrapper { display: block !important; }
  .mobile-nav-bar { display: block !important; }
  
  /* Hide background blobs on mobile to prevent layout stretch and improve performance */
  .bg-blobs-container { display: none !important; }
}

@media screen and (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
  
  .section-padding { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.75rem; }
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Quick view stack on mobile to prevent layout stretch */
  .quick-view-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .quick-view-container .chips-strip {
    width: 100%;
  }
  .quick-view-link {
    align-self: flex-end;
    font-size: 0.8rem;
  }
  
  /* 2 Cards per row for facilities (Tap friendly mobile view) */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  
  .facility-card {
    padding: 1.25rem 1rem;
    text-align: center;
  }
  
  .facility-card-header {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  
  .facility-icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 0.5rem;
  }
  
  .facility-icon-wrapper i {
    font-size: 1.2rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Timeline vertical layout for mobile */
  .timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .timeline::before {
    left: 45px;
    top: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
    transform: none;
  }
  
  .timeline-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
  }
  
  .timeline-card {
    padding: 1.25rem 1.5rem;
    margin-left: 2rem;
    flex-grow: 1;
  }
  
  .timeline-node {
    margin-bottom: 0;
    flex-shrink: 0;
    z-index: 3;
  }
  
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .ideal-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .location-info { padding: 2rem 1.5rem; }
  .enquiry-card { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; gap: 1rem; }
  .form-group-full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-mobile-bar { display: grid; }
}

@media screen and (max-width: 480px) {
  h1 { font-size: 2.15rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-highlights { grid-template-columns: 1fr; gap: 0.65rem; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .landmark-container { flex-direction: column; align-items: center; gap: 0.85rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline-card { margin-left: 1rem; }
  .timeline::before { left: 45px; }
}

/* --- HORIZONTALLY SCROLLABLE MOBILE NAVBAR STYLES --- */
.mobile-nav-bar {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mobile-nav-bar {
    display: block !important;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bg-solid-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1.5px solid var(--border-color);
    z-index: 998;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-nav-bar::-webkit-scrollbar {
    display: none;
  }
  
  .mobile-nav-bar-wrapper {
    display: inline-flex !important;
    height: 100%;
    align-items: center;
    padding: 0 1.25rem;
    gap: 1.5rem;
  }
  
  .mobile-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.15rem !important;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.25rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  
  .mobile-nav-item i {
    font-size: 1.15rem;
    transition: var(--transition-smooth);
  }
  
  .mobile-nav-item.active {
    color: var(--secondary);
  }
  
  .mobile-nav-item.active i {
    transform: translateY(-1px);
    color: var(--secondary);
  }
  
  .mobile-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--glow-color);
  }
}
