/* ==========================================================================
   Hotel Pinathiya Paradise - Main Design System & Stylesheet
   Alpine Luxury & Warm Garhwali Hospitality
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette - Alpine Emerald, Himalayan Gold & Warm Snow */
  --pine-900: #081712;
  --pine-800: #0f291e;
  --pine-700: #163c2c;
  --pine-600: #1e523d;
  --pine-500: #2d7356;
  --pine-100: #eaf3ee;
  --pine-50:  #f3f8f5;

  --gold-600: #b38230;
  --gold-500: #cda250;
  --gold-400: #dfb86c;
  --gold-300: #ebd098;
  --gold-100: #fbf5e8;
  --gold-50:  #fdfaf3;

  --snow-bg:    #faf8f5;
  --card-bg:    #ffffff;
  --card-alt:   #f5f1eb;
  --border-light: rgba(15, 41, 30, 0.08);
  --border-gold:  rgba(205, 162, 80, 0.35);

  --text-main:    #18231e;
  --text-muted:   #5b6b64;
  --text-light:   #8a9c94;
  --text-white:   #ffffff;

  /* Glassmorphism & Shadows */
  --glass-header: rgba(15, 41, 30, 0.88);
  --glass-card:   rgba(255, 255, 255, 0.85);
  --shadow-sm:    0 2px 8px rgba(15, 41, 30, 0.04);
  --shadow-md:    0 8px 24px rgba(15, 41, 30, 0.08);
  --shadow-lg:    0 16px 40px rgba(15, 41, 30, 0.12);
  --shadow-glow:  0 10px 30px rgba(205, 162, 80, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-luxury: 'Cinzel', 'Playfair Display', serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--snow-bg);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--pine-900);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-luxury {
  font-family: var(--font-luxury);
}

.font-accent {
  font-family: var(--font-accent);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-600);
  background: linear-gradient(135deg, rgba(251, 245, 232, 0.95), rgba(253, 250, 243, 0.95));
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  border: 1px solid var(--border-gold);
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(205, 162, 80, 0.12);
}

.section-tag i {
  color: var(--gold-500);
  font-size: 0.78rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--pine-900);
  margin-bottom: 1rem;
  line-height: 1.22;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

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

.section-header {
  margin-bottom: 3.5rem;
}

/* Global Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(205, 162, 80, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 162, 80, 0.45);
}

.btn-pine {
  background: var(--pine-800);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 41, 30, 0.25);
}

.btn-pine:hover {
  background: var(--pine-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 41, 30, 0.35);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--pine-800);
  border: 1.5px solid var(--pine-800);
}

.btn-outline:hover {
  background: var(--pine-800);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: rgba(205, 162, 80, 0.1);
  color: var(--gold-600);
  border: 1.5px solid var(--gold-500);
}

.btn-outline-gold:hover {
  background: var(--gold-500);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Top Notification / Direct Booking Bar
   ========================================================================== */
.top-notice-bar {
  background: var(--pine-900);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(205, 162, 80, 0.2);
  font-family: var(--font-sans);
}

.top-notice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.top-notice-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-notice-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-notice-item i {
  color: var(--gold-400);
}

.top-notice-badge {
  background: linear-gradient(135deg, rgba(205, 162, 80, 0.25), rgba(205, 162, 80, 0.12));
  color: var(--gold-300);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-notice-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-notice-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.top-notice-link i {
  color: var(--gold-400);
}

.top-notice-link:hover {
  color: var(--gold-300);
}

.top-notice-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

.top-notice-whatsapp i {
  color: #25d366;
}

.top-notice-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  color: #ffffff;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--glass-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(205, 162, 80, 0.2);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 23, 18, 0.98);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(205, 162, 80, 0.35);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-crest {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--pine-700));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(205, 162, 80, 0.35), inset 0 0 8px rgba(255, 255, 255, 0.25);
  border: 1.5px solid var(--gold-300);
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-logo:hover .brand-crest {
  transform: translateY(-2px) rotate(4deg);
  box-shadow: 0 6px 20px rgba(205, 162, 80, 0.5);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-luxury);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-name-gold {
  background: linear-gradient(135deg, #ffffff 0%, #f7dfa5 45%, #cda250 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--gold-300);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.4rem 0.2rem;
  letter-spacing: 0.015em;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transition: width 0.3s ease;
  border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(205, 162, 80, 0.4);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-my-bookings {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(205, 162, 80, 0.35);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-my-bookings i {
  color: var(--gold-400);
}

.nav-my-bookings:hover {
  background: rgba(205, 162, 80, 0.18);
  border-color: var(--gold-400);
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(205, 162, 80, 0.35);
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(205, 162, 80, 0.2);
  color: var(--gold-300);
}

/* ==========================================================================
   Mobile Slide-out Navigation Drawer
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 23, 18, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--pine-900);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  border-left: 1px solid rgba(205, 162, 80, 0.25);
  overflow-y: auto;
}

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

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid rgba(205, 162, 80, 0.2);
  background: rgba(15, 41, 30, 0.7);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.mobile-drawer-close:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #f87171;
}

.mobile-drawer-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mobile-drawer-menu {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.2rem;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-drawer-link i {
  color: var(--gold-400);
  width: 20px;
  text-align: center;
  font-size: 1.05rem;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: rgba(205, 162, 80, 0.15);
  color: #ffffff;
  border-left: 3px solid var(--gold-400);
}

.mobile-drawer-actions {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-contact {
  padding: 0 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-contact-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-contact-pill.whatsapp {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366;
}

.mobile-contact-pill:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   Floating Mobile Sticky Bottom Quick-Bar
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
}

/* ==========================================================================
   Hero Section & Panoramic Banner
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(180deg, rgba(8, 23, 18, 0.78) 0%, rgba(15, 41, 30, 0.86) 65%, var(--snow-bg) 100%),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  padding: 6rem 0 7.5rem;
  color: #ffffff;
}

.hero-content {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(8, 23, 18, 0.75);
  border: 1.5px solid var(--gold-400);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.55rem 1.45rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 20px rgba(205, 162, 80, 0.28);
  animation: fadeIn 0.8s ease-out;
}

.hero-pill i {
  color: var(--gold-400);
  font-size: 0.9rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}

.hero-title-kicker {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 3.85rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7), 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-title-accent {
  font-family: var(--font-luxury);
  font-size: 2.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 10%, var(--gold-300) 50%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(205, 162, 80, 0.35);
  margin-top: 0.2rem;
}

.hero-subtitle-box {
  background: rgba(8, 23, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  max-width: 820px;
  margin: 0 auto 2.4rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.7;
  margin: 0;
}

.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

.hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(8, 23, 18, 0.65);
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  border: 1px solid rgba(205, 162, 80, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.hero-highlight-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold-400);
  background: rgba(15, 41, 30, 0.8);
}

.hero-highlight-item i {
  color: var(--gold-400);
  font-size: 0.95rem;
}

.hero-highlight-item strong {
  color: var(--gold-300);
}

/* ==========================================================================
   Hero Live Quick Booking Bar
   ========================================================================== */
.quick-booking-container {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  margin-bottom: 4rem;
}

.quick-booking-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  box-shadow: 0 20px 50px rgba(15, 41, 30, 0.15);
  border: 1px solid rgba(205, 162, 80, 0.3);
  position: relative;
}

.quick-booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.qb-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pine-900);
}

.qb-title i {
  color: var(--gold-600);
}

.qb-perk {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-600);
  background: var(--gold-50);
  border: 1px dashed var(--gold-500);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.quick-booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.2fr;
  gap: 1.2rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pine-700);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-label i {
  color: var(--gold-600);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--pine-50);
  border: 1.5px solid rgba(15, 41, 30, 0.12);
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  background: #ffffff;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(205, 162, 80, 0.18);
}

/* ==========================================================================
   Trust & Key Metrics Banner
   ========================================================================== */
.trust-banner-section {
  padding: 2.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--pine-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pine-700);
  font-size: 1.45rem;
  border: 1px solid rgba(15, 41, 30, 0.08);
}

.trust-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   Rooms & Suites Section
   ========================================================================== */
.rooms-section {
  padding: 5rem 0;
}

.room-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--gold-500);
  color: var(--pine-800);
}

.filter-btn.active {
  background: var(--pine-800);
  color: #ffffff;
  border-color: var(--pine-800);
  box-shadow: 0 4px 14px rgba(15, 41, 30, 0.25);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.room-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

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

.room-card:hover .room-image {
  transform: scale(1.06);
}

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pine-900);
  color: var(--gold-400);
  border: 1px solid var(--gold-500);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-view-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 41, 30, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.room-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-specs-strip {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.room-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.room-spec-item i {
  color: var(--pine-600);
}

.room-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--pine-900);
}

.room-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.room-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.amenity-pill {
  font-size: 0.76rem;
  background: var(--pine-50);
  color: var(--pine-800);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(15, 41, 30, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.amenity-pill i {
  color: var(--gold-600);
  font-size: 0.7rem;
}

.room-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
}

.room-price-box {
  display: flex;
  flex-direction: column;
}

.room-mrp {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.room-price {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--pine-900);
  line-height: 1;
}

.room-price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ==========================================================================
   Pahadi Kitchen & Dining Section
   ========================================================================== */
.dining-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--pine-900) 0%, var(--pine-800) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.dining-section .section-title {
  color: #ffffff;
}

.dining-section .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.dining-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.dining-tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.65rem 1.45rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.dining-tab-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.dining-tab-btn.active {
  background: var(--gold-500);
  color: #ffffff;
  border-color: var(--gold-400);
  box-shadow: 0 4px 18px rgba(205, 162, 80, 0.4);
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.menu-item-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
}

.menu-item-price {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-300);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

/* ==========================================================================
   Trekker & Pilgrim Hub Section
   ========================================================================== */
.trek-section {
  padding: 5.5rem 0;
  background: var(--snow-bg);
}

.trek-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.trek-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trek-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.trek-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.trek-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pine-900);
}

.trek-badge {
  background: var(--pine-100);
  color: var(--pine-800);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
}

.trek-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  background: var(--pine-50);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
}

.trek-meta-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
}

.trek-meta-item strong {
  color: var(--pine-900);
  font-weight: 600;
}

.trek-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.trek-perk-box {
  background: var(--gold-50);
  border-left: 3px solid var(--gold-500);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.84rem;
  color: var(--text-main);
  line-height: 1.4;
}

.trek-perk-box strong {
  color: var(--gold-600);
}

/* ==========================================================================
   Amenities & Hospitality Section
   ========================================================================== */
.amenities-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.amenity-card {
  background: var(--pine-50);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.amenity-card:hover {
  background: #ffffff;
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-icon-box {
  width: 58px;
  height: 58px;
  background: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--pine-700);
  border: 1px solid rgba(15, 41, 30, 0.08);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--pine-800);
  color: var(--gold-400);
}

.amenity-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pine-900);
}

.amenity-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Photo Gallery Section
   ========================================================================== */
.gallery-section {
  padding: 5.5rem 0;
  background: var(--snow-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

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

.gallery-item.span-2 {
  grid-column: span 2;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 23, 18, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: #ffffff;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-caption {
  font-size: 0.88rem;
  font-weight: 600;
}

/* ==========================================================================
   Distance & Route Guide Section
   ========================================================================== */
.route-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.route-container-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.route-table {
  width: 100%;
  border-collapse: collapse;
}

.route-table tr {
  border-bottom: 1px solid var(--border-light);
}

.route-table td {
  padding: 1rem 0.5rem;
  font-size: 0.92rem;
}

.route-table td:first-child {
  font-weight: 600;
  color: var(--pine-900);
}

.route-table td:nth-child(2) {
  color: var(--pine-600);
  font-weight: 700;
}

.route-table td:last-child {
  color: var(--text-muted);
  text-align: right;
}

.route-map-card {
  background: var(--pine-50);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
}

.route-map-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.route-map-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.route-directions-box {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.route-directions-box ol {
  padding-left: 1.2rem;
  font-size: 0.86rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* ==========================================================================
   Reviews & Testimonials Section
   ========================================================================== */
.reviews-section {
  padding: 5.5rem 0;
  background: var(--snow-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.review-author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pine-900);
}

.author-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.author-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ==========================================================================
   FAQs Accordion Section
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--pine-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  background: #ffffff;
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pine-900);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--gold-600);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.35rem;
}

/* ==========================================================================
   Contact & Direct Inquiry Section
   ========================================================================== */
.contact-section {
  padding: 5.5rem 0;
  background: var(--snow-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--pine-900) 0%, var(--pine-800) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 1.65rem;
  margin-bottom: 0.8rem;
}

.contact-host-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.8rem;
}

.host-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-300);
}

.host-title {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 700;
}

.contact-detail-text a, .contact-detail-text p {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group-full {
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--pine-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand .brand-name {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 1.2rem 0;
  color: rgba(255, 255, 255, 0.65);
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold-500);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-400);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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