/* ============================================
   KEDARNATH STAYS — Design System
   Hotel Bharatpur House, Kedarnath
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --saffron: #D4872C;
  --saffron-light: #E8A54D;
  --saffron-dark: #B56E1A;
  --saffron-glow: rgba(212, 135, 44, 0.25);

  /* Mountain & Nature */
  --mountain-blue: #1B3A5C;
  --mountain-deep: #0F2440;
  --sky-blue: #4A90C4;
  --forest-green: #2D5A3D;
  --snow-white: #F8F6F3;
  --mist: #E8E4DF;

  /* Neutrals */
  --charcoal: #1A1A1A;
  --slate: #2E2E2E;
  --ash: #6B6B6B;
  --pebble: #9A9A9A;
  --cloud: #D4D0CC;
  --ivory: #FDFCFA;

  /* Gradients */
  --gradient-saffron: linear-gradient(135deg, #D4872C 0%, #E8A54D 50%, #D4872C 100%);
  --gradient-mountain: linear-gradient(135deg, #0F2440 0%, #1B3A5C 50%, #2A5580 100%);
  --gradient-hero-overlay: linear-gradient(180deg,
      rgba(15, 36, 64, 0.5) 0%,
      rgba(15, 36, 64, 0.3) 30%,
      rgba(15, 36, 64, 0.6) 70%,
      rgba(15, 36, 64, 0.95) 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 100%);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border-light: rgba(255, 255, 255, 0.6);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.20);
  --shadow-glow: 0 0 30px rgba(212, 135, 44, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-mountain { color: var(--mountain-blue); }

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--saffron);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header .subtitle {
  display: block;
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--ash);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.btn-primary {
  background: var(--gradient-saffron);
  color: white;
  box-shadow: 0 4px 20px rgba(212, 135, 44, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 135, 44, 0.5);
}

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

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

.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}

.btn-outline:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-dark {
  background: var(--gradient-mountain);
  color: white;
  box-shadow: 0 4px 20px rgba(15, 36, 64, 0.35);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 36, 64, 0.5);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-icon {
  font-size: 1.1em;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(15, 36, 64, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding: var(--space-sm) 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo .logo-icon {
  font-size: 1.8rem;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.nav-logo .logo-text span {
  color: var(--saffron-light);
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: -2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-saffron) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 15px rgba(212, 135, 44, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 135, 44, 0.45) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: white;
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero h1 .highlight {
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.trust-item .trust-icon {
  font-size: 1.2rem;
}

/* Hero Scroll Indicator */
@media (max-height: 750px) {
  .hero-scroll { display: none !important; }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- Enquiry Form (Floating) ---------- */
.enquiry-float {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  padding: 0 var(--space-xl);
}

.enquiry-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--mist);
}

.enquiry-card h3 {
  text-align: center;
  margin-bottom: var(--space-xs);
}

.enquiry-card .enquiry-sub {
  text-align: center;
  color: var(--ash);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: var(--space-md);
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 2px solid var(--mist);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--snow-white);
  transition: all var(--duration-fast) var(--ease-out);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px var(--saffron-glow);
  background: white;
}

.form-group input::placeholder {
  color: var(--pebble);
}

.enquiry-form .btn-primary {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* ---------- Features / Quick Info Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--mist);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--saffron-glow), rgba(212, 135, 44, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
}

.feature-card h4 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--ash);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-card .feature-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: var(--space-md);
  transition: gap var(--duration-fast) var(--ease-out);
}

.feature-card:hover .feature-link {
  gap: var(--space-sm);
}

/* ---------- About / Legacy Section ---------- */
.about-section {
  background: var(--mountain-deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 135, 44, 0.08), transparent 70%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content .subtitle {
  color: var(--saffron-light);
}

.about-content h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.about-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.9;
}

.about-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--saffron-light);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---------- Stays / Room Cards ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.room-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mist);
  transition: all var(--duration-normal) var(--ease-out);
}

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

.room-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-saffron);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Native CSS Carousel */
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--mist); /* Fills empty space for vertical photos */
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.carousel-collage {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  background: var(--mist);
}
.carousel-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: none;
  background: transparent;
  flex: none;
}
.carousel-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 36, 64, 0.7);
  backdrop-filter: blur(4px);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  white-space: nowrap;
}

.room-details {
  padding: var(--space-xl);
}

.room-details h3 {
  margin-bottom: var(--space-sm);
}

.room-details .room-desc {
  color: var(--ash);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: var(--snow-white);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--ash);
  border: 1px solid var(--mist);
}

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

.room-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--mountain-blue);
}

.room-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--pebble);
}

/* ---------- Yatra Guide Cards ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.guide-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mist);
  transition: all var(--duration-normal) var(--ease-out);
}

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

.guide-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.guide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.guide-card-image .guide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 36, 64, 0.6) 100%);
}

.guide-card-content {
  padding: var(--space-xl);
}

.guide-card-content h4 {
  margin-bottom: var(--space-sm);
}

.guide-card-content p {
  color: var(--ash);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--snow-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--mist);
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--saffron-light);
  opacity: 0.5;
  font-family: var(--font-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  color: var(--ash);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

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

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

.testimonial-role {
  font-size: 0.8rem;
  color: var(--pebble);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-mountain);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 135, 44, 0.15), transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 196, 0.1), transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: white;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  margin-bottom: var(--space-md);
}

.footer-brand .logo-text span {
  color: var(--saffron-light);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.8rem;
}

.footer-trust-badge .badge-icon {
  font-size: 1.2rem;
}

.footer-column h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer-column a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-column a:hover {
  color: var(--saffron-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer-contact-item .contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-social a:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-bounce);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ---------- Page-Specific: Stays Page ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--gradient-mountain);
  color: white;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 135, 44, 0.1), transparent 60%);
}

.page-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

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

.breadcrumb .separator {
  font-size: 0.7rem;
}

/* ---------- Yatra Guide Page ---------- */
.guide-section {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--mist);
}

.guide-section:last-child {
  border-bottom: none;
}

.guide-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.guide-content-grid.reverse {
  direction: rtl;
}

.guide-content-grid.reverse > * {
  direction: ltr;
}

.guide-text h3 {
  margin-bottom: var(--space-md);
}

.guide-text p {
  color: var(--ash);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.guide-steps {
  counter-reset: step;
}

.guide-step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.guide-step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-saffron);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.guide-step-content h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.05rem;
}

.guide-step-content p {
  color: var(--ash);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Info boxes */
.info-box {
  background: var(--snow-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border-left: 4px solid var(--saffron);
  margin: var(--space-lg) 0;
}

.info-box.info-warning {
  border-left-color: #E74C3C;
  background: #FFF5F5;
}

.info-box.info-tip {
  border-left-color: #2ECC71;
  background: #F0FFF4;
}

.info-box h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.info-box p, .info-box ul {
  color: var(--ash);
  font-size: 0.9rem;
}

.info-box ul {
  list-style: disc;
  padding-left: var(--space-xl);
}

.info-box ul li {
  margin-bottom: var(--space-xs);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mist);
}

.contact-form h3 {
  margin-bottom: var(--space-xs);
}

.contact-form .form-sub {
  color: var(--ash);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.contact-form .form-group {
  margin-bottom: var(--space-md);
}

.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--mist);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--snow-white);
  resize: vertical;
  min-height: 120px;
  transition: all var(--duration-fast) var(--ease-out);
}

.contact-form textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px var(--saffron-glow);
  background: white;
}

.contact-form input {
  width: 100%;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--mist);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--saffron-glow), rgba(212, 135, 44, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.contact-info-card p {
  color: var(--ash);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--saffron);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--saffron-dark);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 500ms; }

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==============================================
   RESPONSIVE — Mobile-First for 75% Mobile Users
   ============================================== */

/* --- Touch-friendly defaults (all screens) --- */
@media (pointer: coarse) {
  /* Ensure all tappable elements are at least 48px tall */
  .btn, 
  .nav-links a, 
  .amenity-tag,
  .footer-column a,
  .faq-question,
  .breadcrumb a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  /* Disable hover lift effects on touch (causes sticky :hover) */
  .feature-card:hover,
  .room-card:hover,
  .guide-card:hover,
  .testimonial-card:hover,
  .contact-info-card:hover {
    transform: none;
  }

  /* Remove parallax on touch devices (saves battery) */
  .hero-bg img {
    transform: none !important;
  }
}

/* Remove tap highlight on mobile webkit */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Ensure smooth scroll with safe-area awareness */
html {
  scroll-padding-top: calc(var(--header-height) + 16px);
}

/* --- Reduce motion for users who prefer it --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }

  .hero-bg img {
    transform: none !important;
  }
}

/* ========== LAPTOP (≤ 1150px) ========== */
@media (max-width: 1150px) {
  .enquiry-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .enquiry-form .btn-primary {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: var(--space-sm);
  }
}

/* ========== TABLET (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .features-grid,
  .guide-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid,
  .guide-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .guide-content-grid.reverse {
    direction: ltr;
  }

  .about-image img {
    height: 350px;
  }

  .room-image {
    height: 240px;
  }
}

/* ========== MOBILE (≤ 768px) — Primary Breakpoint ========== */
@media (max-width: 768px) {

  /* --- Base adjustments --- */
  html {
    /* Prevent iOS auto-zoom on input focus (inputs < 16px trigger zoom) */
    font-size: 16px;
  }

  body {
    /* Safe area padding for notched phones */
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-sm {
    padding: var(--space-xl) 0;
  }

  /* --- Mobile Navigation (full-screen slide-in) --- */
  .navbar {
    padding: var(--space-sm) 0;
    background: rgba(15, 36, 64, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .navbar.scrolled {
    padding: var(--space-sm) 0;
  }

  .nav-logo .logo-text {
    font-size: 1.1rem;
  }

  .nav-logo .logo-sub {
    font-size: 0.6rem;
  }

  .nav-logo .logo-icon {
    font-size: 1.5rem;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: var(--mountain-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-out);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-xl);
    width: 80%;
    text-align: center;
    border-radius: var(--radius-md);
    min-height: 52px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links a::after {
    display: none; /* Remove underline animation on mobile */
  }

  .nav-cta {
    margin-top: var(--space-md);
    width: 80% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 16px 24px !important;
    font-size: 1rem !important;
  }

  /* --- Hero Section (Mobile) --- */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-bg img {
    object-position: center 40%;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(15, 36, 64, 0.7) 0%,
      rgba(15, 36, 64, 0.6) 25%,
      rgba(15, 36, 64, 0.8) 60%,
      rgba(15, 36, 64, 0.98) 100%);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-3xl);
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-bottom: var(--space-md);
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: var(--space-md);
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .hero-scroll {
    display: none; /* Hide on mobile — not useful */
  }

  /* --- Floating Enquiry Card (Mobile) --- */
  .enquiry-float {
    padding: 0 var(--space-md);
    margin-top: -30px;
  }

  .enquiry-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

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

  .enquiry-card .enquiry-sub {
    font-size: 0.85rem;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .enquiry-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    margin-top: var(--space-sm);
  }

  /* Larger touch targets for inputs on mobile */
  .form-group input,
  .form-group select,
  .contact-form textarea {
    padding: 16px;
    font-size: 16px; /* Prevents iOS auto-zoom */
    border-radius: var(--radius-md);
    min-height: 52px;
  }

  .form-group label {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }

  /* --- Section Headers (Mobile) --- */
  .section-header {
    margin-bottom: var(--space-xl);
  }

  .section-header h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

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

  .subtitle {
    font-size: 0.95rem;
  }

  /* --- Feature Cards (Mobile) --- */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .feature-card {
    padding: var(--space-xl);
    border-radius: var(--radius-md);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .feature-card .feature-link {
    font-size: 0.9rem;
    padding: var(--space-sm) 0;
    min-height: 44px;
  }

  /* --- About Section (Mobile) --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image {
    border-radius: var(--radius-md);
  }

  .about-image img {
    height: 240px;
    border-radius: var(--radius-md);
  }

  .about-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .about-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
  }

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

  .stat-label {
    font-size: 0.7rem;
  }

  /* --- Room Cards (Mobile) --- */
  .room-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .room-image {
    height: 220px;
  }

  .room-details {
    padding: var(--space-lg);
  }

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

  .room-amenities {
    gap: 6px;
  }

  .amenity-tag {
    padding: 8px 12px;
    font-size: 0.75rem;
    min-height: auto;
  }

  .room-footer {
    flex-direction: column;
    gap: var(--space-md);
    align-items: stretch;
  }

  .room-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
  }

  .room-price {
    text-align: center;
    font-size: 1.2rem;
  }

  /* --- Guide Cards (Mobile) --- */
  .guide-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .guide-card-image {
    height: 180px;
  }

  .guide-card-content {
    padding: var(--space-lg);
  }

  /* --- Yatra Guide Page Sections (Mobile) --- */
  .guide-section {
    padding: var(--space-xl) 0;
  }

  .guide-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .guide-content-grid.reverse {
    direction: ltr;
  }

  .guide-content-grid .about-image img,
  .guide-content-grid img {
    height: 200px;
    border-radius: var(--radius-md);
  }

  .guide-step {
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }

  .guide-step::before {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .guide-step-content h4 {
    font-size: 0.95rem;
  }

  .guide-step-content p {
    font-size: 0.85rem;
  }

  .info-box {
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
  }

  .info-box h4 {
    font-size: 0.9rem;
  }

  .info-box p, .info-box ul {
    font-size: 0.85rem;
  }

  /* --- Testimonials (Mobile — Horizontal Scroll) --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .testimonial-card {
    padding: var(--space-xl);
  }

  .testimonial-quote {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  /* --- CTA Banner (Mobile) --- */
  .cta-banner {
    padding: var(--space-2xl) 0;
  }

  .cta-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
  }

  /* --- Contact Page (Mobile) --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-form {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
  }

  .contact-form h3 {
    font-size: 1.3rem;
  }

  .contact-info-card {
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .contact-info-card h4 {
    font-size: 0.95rem;
  }

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

  /* --- Page Hero (Mobile) --- */
  .page-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .page-hero h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
  }

  /* --- Footer (Mobile) --- */
  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand .logo-text {
    font-size: 1.2rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-column h4 {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
  }

  .footer-column a {
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    font-size: 0.75rem;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  /* --- WhatsApp Float (Mobile — bigger touch target) --- */
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 16px;
    /* Make room for mobile bottom CTA if present */
  }
}

/* ========== SMALL MOBILE (≤ 480px) ========== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .enquiry-card {
    padding: var(--space-md);
  }

  .enquiry-card h3 {
    font-size: 1.1rem;
  }

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

  .about-image img {
    height: 200px;
  }

  .room-image {
    height: 200px;
  }

  .guide-card-image {
    height: 160px;
  }

  .about-stats {
    gap: var(--space-md);
  }

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

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .feature-card {
    padding: var(--space-lg);
  }

  /* Stack contact info icon + text vertically on very small screens */
  .contact-info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ========== VERY SMALL (≤ 360px — budget phones) ========== */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .enquiry-card h3 {
    font-size: 1rem;
  }

  .room-details {
    padding: var(--space-md);
  }

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

  .amenity-tag {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .page-hero h1 {
    font-size: 1.4rem;
  }
}

/* ========== Landscape phone ========== */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: var(--space-4xl) 0 var(--space-2xl);
  }

  .hero-content {
    padding-top: var(--space-xl);
  }

  .hero-scroll {
    display: none;
  }
}

/* ========== Safe area for notched devices (iPhone X+) ========== */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .nav-links {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

