/* ==========================================================================
   Raj PG & Hostel - Modern Design System & CSS Stylesheet
   ========================================================================== */

/* --- 1. Variables & Root Theme --- */
:root {
  /* Color Palette */
  --primary-rgb: 15, 23, 42; /* Slate 900 */
  --primary-dark-rgb: 2, 6, 23; /* Slate 950 */
  --accent-rgb: 217, 119, 6; /* Amber 600 */
  --accent-light-rgb: 245, 158, 11; /* Amber 500 */
  --accent-dark-rgb: 180, 83, 9; /* Amber 700 */
  
  --primary: rgb(var(--primary-rgb));
  --primary-dark: rgb(var(--primary-dark-rgb));
  --accent: rgb(var(--accent-rgb));
  --accent-light: rgb(var(--accent-light-rgb));
  --accent-dark: rgb(var(--accent-dark-rgb));
  
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b; /* Slate 800 */
  --bg-tertiary: #334155; /* Slate 700 */
  --bg-light: #fafaf9; /* Stone 50 */
  --bg-light-alt: #f5f5f4; /* Stone 100 */
  
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  --text-light: #f8fafc;
  --text-light-muted: #cbd5e1;
  
  --success: #059669;
  --danger: #dc2626;
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadow & Blurs */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.25);
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
}

/* --- 2. Base Resets & Global Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light-muted);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

button {
  cursor: pointer;
}

/* --- 3. Helper Utilities & Components --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  color: var(--accent-light);
}

.text-white {
  color: var(--text-light) !important;
}

.hidden {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-family: var(--font-headings);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--border-radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-light);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--bg-tertiary);
  color: var(--text-light-muted);
}

.btn-outline:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-light);
}

/* Section Title Headers */
.section-title-wrapper {
  margin-bottom: 50px;
}

.section-tagline {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light-muted);
}

/* Scroll Animation Hooks */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- 4. Main Header / Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  height: 70px;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--text-dark);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-light);
}

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

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-light);
  transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

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

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

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* --- 5. Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 120px;
  background-image: radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 1) 90%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(80% 80% at 80% 20%, rgba(217, 119, 6, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Staggered Hero Image Grid */
.hero-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  position: relative;
}

.hero-gallery-grid::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(20px);
  bottom: -20px;
  right: -20px;
  z-index: 0;
}

.grid-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  z-index: 1;
}

.grid-card img {
  width: 100%;
  height: 100%;
  transition: var(--transition-slow);
}

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

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

.card-main {
  grid-row: span 2;
  height: 420px;
}

.card-secondary-1, .card-secondary-2 {
  height: 200px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: var(--text-light);
}

.card-overlay h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Hero Wave Divider */
.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.hero-divider .shape-fill {
  fill: var(--bg-primary);
}

/* --- 6. Quick Stats Section --- */
.stats-section {
  position: relative;
  z-index: 2;
  margin-top: -35px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.stat-card:not(:last-child) {
  border-right: 1px solid var(--glass-border);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-light);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.about-image-card img {
  width: 100%;
  height: 100%;
}

.floating-badge-years {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--text-dark);
  padding: 20px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.badge-num {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text {
  font-size: 1rem;
  color: var(--text-light-muted);
  margin-bottom: 35px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about-feature-item .feature-icon {
  color: var(--accent-light);
  font-size: 1.2rem;
  margin-top: 3px;
}

.about-feature-item .feature-text {
  color: var(--text-light-muted);
}

.about-feature-item .feature-text strong {
  color: var(--text-light);
}

/* --- 8. Rooms & Accommodation Section --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.room-card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.3);
}

.room-img-wrapper {
  position: relative;
  height: 300px;
}

.room-img-wrapper img {
  width: 100%;
  height: 100%;
}

.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent);
  color: var(--text-dark);
  padding: 6px 14px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.room-badge.badge-secondary {
  background-color: #0284c7;
  color: var(--text-light);
}

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

.room-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.room-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 24px;
}

.room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

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

.room-features li i {
  color: var(--accent-light);
  font-size: 1rem;
  width: 18px;
}

.room-pricing-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.price-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light-muted);
  letter-spacing: 0.5px;
}

.price-value {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* --- 9. Amenities Section --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-normal);
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-md);
}

.amenity-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.amenity-card:hover .amenity-icon-wrapper {
  background-color: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.amenity-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* --- 10. Photo Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: var(--transition-slow);
}

.gallery-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 10%, rgba(15, 23, 42, 0.3) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition-normal);
}

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

.gallery-item:hover .gallery-info {
  opacity: 1;
}

.gallery-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gallery-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
}

.gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* --- 11. Location & Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method-card {
  display: flex;
  gap: 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 24px;
  border: 1px solid var(--glass-border);
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.method-details h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.method-details p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 12px;
}

.link-action {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-action:hover {
  color: var(--text-light);
}

.phone-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--glass-border);
}

.phone-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.whatsapp-link {
  background-color: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.whatsapp-link:hover {
  background-color: #25d366;
  color: #0f172a;
}

/* Custom Interactive Map Visualizer */
.map-visualizer {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.map-canvas {
  height: 240px;
  background-color: #0b0f19;
  position: relative;
  overflow: hidden;
}

.map-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 30px 30px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.map-canvas::before {
  /* Road Representation */
  content: '';
  position: absolute;
  width: 40px;
  height: 150%;
  background-color: #1e293b;
  left: 30%;
  top: -20%;
  transform: rotate(-15deg);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.map-canvas::after {
  /* Crossing Road */
  content: '';
  position: absolute;
  width: 150%;
  height: 40px;
  background-color: #1e293b;
  left: -20%;
  top: 55%;
  transform: rotate(5deg);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.map-marker-pin {
  position: absolute;
  left: 34%;
  top: 36%;
  font-size: 2.2rem;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.pin-tooltip {
  background-color: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  margin-top: -5px;
}

.map-landmark {
  position: absolute;
  background-color: var(--bg-secondary);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--glass-border);
}

.wines-landmark {
  left: 45%;
  top: 65%;
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}

.naigaon-station {
  left: 70%;
  top: 20%;
  color: #38bdf8;
  border-color: rgba(14, 165, 233, 0.3);
}

.map-footer {
  background-color: var(--bg-secondary);
  padding: 15px 20px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  border-top: 1px solid var(--glass-border);
}

.map-footer i {
  color: var(--accent-light);
  margin-right: 5px;
}

/* --- Form Fields & Interactive Card --- */
.contact-form-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.form-container-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  position: relative;
}

.form-container-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-container-card > p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 30px;
}

.interactive-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-group label .required {
  color: var(--accent-light);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background-color: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.input-wrapper::after {
  /* custom select arrow */
  content: '';
  position: absolute;
}

.input-wrapper select + i::after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  background-color: var(--primary-dark);
}

.align-items-start {
  align-items: flex-start;
}

.margin-top-xs {
  margin-top: 15px;
}

.input-wrapper textarea {
  padding-left: 44px;
  resize: vertical;
}

/* Success Form Alert */
.alert-success {
  display: flex;
  gap: 15px;
  background-color: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  color: #a7f3d0;
  margin-top: 20px;
  animation: fadeIn 0.4s ease forwards;
}

.alert-icon {
  font-size: 1.5rem;
  color: #34d399;
}

.alert-content h4 {
  color: #34d399;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.alert-content p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* --- 12. Booking Modal dialog --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(2, 6, 23, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-container {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.modal-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.modal-content-wrapper {
  display: flex;
  flex-direction: column;
}

.modal-header-panel {
  background-color: var(--bg-primary);
  padding: 40px 40px 30px;
  border-bottom: 1px solid var(--glass-border);
}

.modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-family: var(--font-headings);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.modal-header-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal-header-panel p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.modal-body-panel {
  padding: 40px;
}

/* Multi-Step Indicator */
.form-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light-muted);
  position: relative;
  font-weight: 600;
}

.step-indicator span {
  font-size: 0.75rem;
  font-weight: 500;
}

.step-indicator::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  transition: var(--transition-normal);
  line-height: 1;
}

.step-indicator[data-step="1"]::before { content: '1'; }
.step-indicator[data-step="2"]::before { content: '2'; }
.step-indicator[data-step="3"]::before { content: '3'; }

.step-indicator.active {
  color: var(--accent-light);
}

.step-indicator.active::before {
  border-color: var(--accent-light);
  background-color: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.step-indicator.completed {
  color: var(--success);
}

.step-indicator.completed::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border-color: var(--success);
  background-color: var(--success);
  color: var(--text-light);
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--glass-border);
  margin-top: -16px;
  margin-left: 10px;
  margin-right: 10px;
}

.step-line.completed {
  background-color: var(--success);
}

.form-step-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.form-step-content.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Radio buttons styled custom */
.radio-group-horizontal {
  display: flex;
  gap: 15px;
}

.radio-label {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.radio-label input {
  position: absolute;
  opacity: 0;
}

.radio-label span {
  color: var(--text-light-muted);
}

.radio-label:hover {
  border-color: rgba(255,255,255,0.2);
}

.radio-label input:checked + span {
  color: var(--accent-light);
}

.radio-label:has(input:checked) {
  border-color: var(--accent-light);
  background-color: rgba(245, 158, 11, 0.05);
}

.modal-actions-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.flex-row-reverse-gap {
  flex-direction: row-reverse;
}

.flex-grow-1 {
  flex-grow: 1;
}

/* Success screen styles */
.success-checkmark-wrapper {
  font-size: 4.5rem;
  color: var(--success);
  margin-bottom: 20px;
}

.success-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.success-message {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 24px;
}

.booking-receipt-box {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  text-align: left;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.receipt-row span {
  color: var(--text-light-muted);
}

.receipt-row strong {
  color: var(--text-light);
}

/* --- 13. Lightbox Gallery styles --- */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.05);
}

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

.lightbox-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.lightbox-content img {
  max-height: 70vh;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

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

#lightbox-title {
  font-size: 1.25rem;
  font-weight: 600;
}

#lightbox-counter {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

/* --- 14. Main Footer --- */
.main-footer {
  background-color: var(--primary-dark);
  padding-top: 80px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .logo-container {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  border: 1px solid var(--glass-border);
}

.social-links a:hover {
  background-color: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-light);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links ul a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.9rem;
}

.footer-contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-light-muted);
}

.footer-contact p i {
  color: var(--accent-light);
  font-size: 1.05rem;
  margin-top: 3px;
  width: 16px;
}

.footer-contact p a:hover {
  color: var(--accent-light);
}

.working-hours {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom {
  background-color: rgba(2, 6, 23, 0.4);
  padding: 25px 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-15px);}
  60% {transform: translateY(-7px);}
}

.animate-fade-in { animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-slide-up { animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-scale-up { animation: scaleUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-pulse { animation: pulse 2s infinite ease-in-out; }
.animate-bounce { animation: bounce 1.5s ease-out; }

.hero-content h1.animate-slide-up { animation-delay: 0.1s; }
.hero-content p.animate-slide-up { animation-delay: 0.2s; }
.hero-content .hero-actions.animate-slide-up { animation-delay: 0.3s; }

/* --- 15. Responsive Media Queries --- */

@media (max-width: 1024px) {
  html { font-size: 15px; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-gallery-grid {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-card:nth-child(2) { border-right: none; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image-card {
    height: 380px;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-form-panel {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-dark);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 100px 40px 40px;
    align-items: flex-start;
    gap: 40px;
    transition: right var(--transition-normal);
    z-index: 1000;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .nav-link {
    font-size: 1.15rem;
    display: block;
    width: 100%;
  }
  .nav-mobile-btn {
    display: block;
    width: 100%;
    margin-top: auto;
  }
  .desktop-booking-btn {
    display: none;
  }
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-card {
    border-right: none !important;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
  }
  .stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .radio-group-horizontal {
    flex-direction: column;
  }
  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
}
