/* ==========================================================================
   SELISTA INN - LUXURY HOTEL & DORMITORY DESIGN SYSTEM
   Theme inspired by Logo: Charcoal Black (#23272A) & Vibrant Sunset Orange (#E05A2B)
   ========================================================================== */

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

:root {
  /* Logo Theme Colors */
  --brand-orange: #E05A2B;
  --brand-orange-hover: #C6491E;
  --brand-orange-light: #FF7A47;
  --brand-orange-glow: rgba(224, 90, 43, 0.25);

  --brand-charcoal: #23272A;
  --brand-dark: #11161B;
  --brand-slate: #1E232A;

  /* Neutral Colors */
  --bg-body: #F8FAF9;
  --bg-card: #FFFFFF;
  --bg-muted: #F1F5F3;
  --text-main: #1F242A;
  --text-muted: #5A6573;
  --text-light: #F8FAFC;

  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(224, 90, 43, 0.15);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  --glass-dark-bg: rgba(17, 22, 27, 0.9);

  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1280px;

  /* Typography */
  --font-serif: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
  position: relative;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

p {
  color: var(--text-muted);
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.section-padding {
  padding: 6rem 0;
}

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

.subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: var(--brand-orange-glow);
  border: 1px solid rgba(224, 90, 43, 0.3);
  color: var(--brand-orange);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title span {
  color: var(--brand-orange);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-orange {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-hover) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 25px var(--brand-orange-glow);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(224, 90, 43, 0.4);
  background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 100%);
}

.btn-dark {
  background: var(--brand-charcoal);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(35, 39, 42, 0.2);
}

.btn-dark:hover {
  background: #000000;
  transform: translateY(-3px);
  color: var(--brand-orange);
}

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

.btn-outline:hover {
  background: var(--brand-charcoal);
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

.btn-outline-orange:hover {
  background: var(--brand-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

/* Header Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 0.7rem 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.navbar.scrolled .brand-logo img {
  height: 60px;
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-text {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.navbar.scrolled .brand-text {
  color: var(--brand-charcoal);
}

.brand-text span {
  color: var(--brand-orange);
}

.brand-location-tag {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar.scrolled .brand-location-tag {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 0.3rem 0;
}

.navbar.scrolled .nav-link {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--brand-orange);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

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

.nav-link:hover {
  color: var(--brand-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
}

.navbar.scrolled .hamburger-btn {
  color: var(--brand-charcoal);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(17, 22, 27, 0.45) 0%,
      rgba(17, 22, 27, 0.8) 60%,
      rgba(17, 22, 27, 0.95) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #FFFFFF;
  max-width: 920px;
  margin-top: 1rem;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(224, 90, 43, 0.2);
  border: 1px solid rgba(224, 90, 43, 0.4);
  backdrop-filter: blur(8px);
  color: var(--brand-orange-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.8rem;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--brand-orange);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Quick Search Widget Bar */
.search-widget {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) auto;
  gap: 1.2rem;
  align-items: end;
  max-width: 1080px;
  margin: 0 auto;
}

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

.search-field label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.search-field label i {
  color: var(--brand-orange);
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: var(--text-main);
  font-weight: 600;
  outline: none;
  transition: var(--transition-fast);
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px var(--brand-orange-glow);
}

/* Quick Stats Banner */
.stats-banner {
  background: var(--brand-charcoal);
  color: #FFFFFF;
  padding: 3rem 0;
  position: relative;
  z-index: 5;
  border-bottom: 3px solid var(--brand-orange);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Inner Page Tabs Sub-Navigation */
.room-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.room-tab-btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid #E2E8F0;
  background: #FFFFFF;
  color: var(--brand-charcoal);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.room-tab-btn:hover,
.room-tab-btn.active {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-color: var(--brand-orange);
  box-shadow: 0 8px 20px var(--brand-orange-glow);
}

/* Rooms Grid & Room Cards */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.room-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(224, 90, 43, 0.15);
}

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

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

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

.room-price-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(17, 22, 27, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--brand-orange);
}

.room-price-badge span {
  color: var(--brand-orange);
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 800;
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-orange);
  color: #FFFFFF;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.room-title {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.room-specs {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.room-specs span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.room-specs i {
  color: var(--brand-orange);
}

.room-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-pill {
  background: #F1F5F9;
  color: var(--text-main);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.room-card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
}

.room-card-actions .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

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

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

.about-img-main {
  width: 92%;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-img-secondary {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  border: 6px solid var(--bg-body);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--brand-orange);
  color: #FFFFFF;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 15px 30px var(--brand-orange-glow);
  text-align: center;
}

.about-badge .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: var(--brand-charcoal);
}

.about-feature-item i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-orange-glow);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-charcoal), var(--brand-orange));
  opacity: 0;
  transition: var(--transition-fast);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(224, 90, 43, 0.15);
}

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

.amenity-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-orange-glow);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
  background: var(--brand-orange);
  color: #FFFFFF;
  transform: rotateY(180deg);
}

/* Gallery Grid */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.gallery-tab {
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: var(--brand-charcoal);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-color: var(--brand-orange);
  box-shadow: 0 5px 15px var(--brand-orange-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 22, 27, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-overlay i {
  font-size: 2rem;
  color: var(--brand-orange);
  margin-bottom: 0.5rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-title {
  color: #FFFFFF;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--brand-orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 1rem;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  font-size: 1.2rem;
}

.lightbox-btn:hover {
  background: var(--brand-orange);
}

/* Booking Section */
.booking-section {
  background: var(--brand-dark);
  color: #FFFFFF;
  position: relative;
}

.booking-section .section-title {
  color: #FFFFFF;
}

.booking-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.booking-form-wrapper {
  background: var(--brand-slate);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: #0B0F14;
  border: 1px solid #334155;
  color: #FFFFFF;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px var(--brand-orange-glow);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
  color: #CBD5E1;
}

.checkbox-label input {
  width: auto;
}

/* Booking Summary Card */
.booking-summary-card {
  background: linear-gradient(180deg, rgba(224, 90, 43, 0.15) 0%, rgba(17, 22, 27, 0.95) 100%);
  border: 1px solid var(--brand-orange);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 6rem;
}

.summary-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.summary-header h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #CBD5E1;
}

.summary-total {
  border-top: 1px dashed rgba(224, 90, 43, 0.5);
  padding-top: 1.2rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.summary-total-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-orange);
}

/* Wayanad Attractions Section */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.attraction-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(224, 90, 43, 0.12);
}

.attraction-img {
  height: 180px;
  overflow: hidden;
}

.attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-content {
  padding: 1.5rem;
}

.attraction-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.attraction-dist {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-orange-glow);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 440px;
  border: 4px solid #FFFFFF;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-charcoal);
}

.faq-question i {
  color: var(--brand-orange);
  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.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

/* Footer */
.footer {
  background: var(--brand-dark);
  color: #CBD5E1;
  padding: 5rem 0 2rem 0;
  border-top: 3px solid var(--brand-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 62px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #94A3B8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1E293B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--brand-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #64748B;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 22, 27, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.modal-close:hover {
  background: var(--brand-orange);
  color: #FFFFFF;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Page Banner Inner Headers Contrast Fix */
.page-banner h1 {
  color: #FFFFFF !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.page-banner h1 span {
  color: var(--brand-orange-light) !important;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* High-End Mobile & Tablet Responsive Design System */
@media (max-width: 992px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid,
  .location-grid,
  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  p {
    font-size: 0.82rem !important;
  }

  .container {
    padding: 0 1rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

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

  /* Navbar Mobile Header */
  .navbar {
    padding: 0.7rem 0;
  }

  .navbar.scrolled {
    padding: 0.5rem 0;
  }

  .brand-logo img {
    height: 48px;
  }

  .navbar.scrolled .brand-logo img {
    height: 42px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .btn-orange {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    z-index: 1100;
  }

  /* Fullscreen Slide Navigation Menu (Zero Horizontal Overflow) */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    padding: 2rem 1.5rem;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-link {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 0.6rem;
    border-radius: var(--radius-sm);
  }

  .nav-link.active,
  .nav-link:hover {
    background: rgba(224, 90, 43, 0.15);
    color: var(--brand-orange-light);
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 80vh;
    padding-top: 95px;
  }

  .hero-badge i {
    display: none !important;
  }

  .hero-badge {
    font-size: 0.65rem !important;
    padding: 0.22rem 0.65rem !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 0.7rem !important;
    display: inline-block !important;
    white-space: nowrap !important;
    width: auto !important;
    max-width: 90% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.25;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* About Image Badge & Image Layout Fix */
  .about-img-secondary {
    display: none !important;
  }

  .about-img-main {
    height: 240px !important;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: var(--radius-md) !important;
  }

  .about-badge {
    top: 10px !important;
    left: 10px !important;
    padding: 0.4rem 0.9rem !important;
    font-size: 0.85rem !important;
  }

  .about-features {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }

  /* Page Inner Banner Mobile */
  .page-banner {
    padding: 105px 0 35px !important;
  }

  .page-banner h1 {
    font-size: 1.85rem !important;
    line-height: 1.3 !important;
  }

  .page-banner p {
    font-size: 0.95rem !important;
  }

  /* Room Grid & Cards */
  .room-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .room-card-image {
    height: 210px;
  }

  .room-card-content {
    padding: 1.2rem;
  }

  .room-title {
    font-size: 1.25rem;
  }

  /* Amenities Grid Vertical Layout on Mobile */
  .amenities-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .amenity-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem 1.2rem !important;
    gap: 0.6rem !important;
  }

  .amenity-icon {
    margin: 0 0 0.4rem 0 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    font-size: 1.35rem !important;
  }

  .amenity-title {
    font-size: 1.15rem !important;
    margin-bottom: 0.3rem !important;
  }

  .amenity-card p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  /* Compact 2-Column Gallery Grid on Mobile */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .gallery-item {
    aspect-ratio: 1 / 1 !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Form & Booking Touch Inputs - Stacking 1-column */
  .booking-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .booking-form-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.4rem 1rem !important;
    box-sizing: border-box !important;
  }

  .form-grid {
    display: block !important;
    width: 100% !important;
  }

  .form-group {
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .form-group.full-width {
    width: 100% !important;
    grid-column: auto !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
    padding: 0.75rem 0.9rem !important;
    box-sizing: border-box !important;
  }

  #bookingForm button[type="submit"] {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 0.95rem 0.8rem !important;
    white-space: normal !important;
    text-align: center;
    justify-content: center;
  }

  /* Contact Cards Mobile */
  .contact-details-wrapper {
    padding: 1.5rem 1.2rem;
  }

  /* Map Container */
  .map-container {
    height: 260px;
  }

  /* Footer Mobile */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.2rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .subtitle-badge {
    font-size: 0.78rem;
  }

  .nav-actions .btn-orange {
    display: none !important;
  }

  .brand-logo img {
    height: 42px;
  }

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

/* Dedicated 360x640 & Narrow Screen Mobile Optimization */
@media (max-width: 400px) {
  .container {
    padding: 0 0.75rem !important;
  }

  .section-padding {
    padding: 2.8rem 0 !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  /* Header Bar */
  .brand-logo img {
    height: 50px !important;
  }

  .hamburger-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.15rem !important;
  }

  /* Hero Section */
  .hero {
    padding-top: 85px !important;
    padding-bottom: 30px !important;
    min-height: auto !important;
  }

  .hero-title {
    font-size: 1.55rem !important;
    line-height: 1.25 !important;
  }

  .hero-description {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .hero-buttons .btn {
    min-height: 44px !important;
    font-size: 0.88rem !important;
    padding: 0.65rem 0.8rem !important;
  }

  /* Inner Page Banners */
  .page-banner {
    padding: 95px 0 25px !important;
  }

  .page-banner h1 {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }

  .page-banner p {
    font-size: 0.88rem !important;
  }

  /* About Section */
  .about-img-main {
    height: 190px !important;
  }

  .about-badge {
    top: 6px !important;
    left: 6px !important;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.75rem !important;
  }

  .about-content h2 {
    font-size: 1.5rem !important;
  }

  .about-content p {
    font-size: 0.88rem !important;
  }

  .about-feature-item {
    font-size: 0.82rem !important;
    padding: 0.4rem 0.6rem !important;
  }

  /* Room Cards */
  .room-card-image {
    height: 180px !important;
  }

  .room-card-content {
    padding: 1rem !important;
  }

  .room-title {
    font-size: 1.15rem !important;
  }

  .room-specs {
    font-size: 0.8rem !important;
    gap: 0.5rem !important;
  }

  .feature-pill {
    font-size: 0.75rem !important;
    padding: 0.25rem 0.5rem !important;
  }

  .room-card-actions .btn {
    min-height: 44px !important;
    font-size: 0.88rem !important;
  }

  /* Amenities Cards */
  .amenity-card {
    padding: 1rem !important;
    gap: 0.8rem !important;
  }

  .amenity-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    font-size: 1.1rem !important;
  }

  .amenity-title {
    font-size: 1rem !important;
  }

  .amenity-card p {
    font-size: 0.82rem !important;
  }

  /* Gallery Grid */
  .gallery-grid {
    gap: 0.4rem !important;
  }

  /* Form Section */
  .booking-form-wrapper {
    padding: 1.1rem 0.8rem !important;
  }

  .form-group label {
    font-size: 0.82rem !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    padding: 0.65rem 0.75rem !important;
  }

  #bookingForm button[type="submit"] {
    font-size: 0.9rem !important;
    padding: 0.85rem 0.6rem !important;
    min-height: 46px !important;
  }

  /* Contact & Location Cards */
  .contact-details-wrapper {
    padding: 1.2rem 0.85rem !important;
  }

  .contact-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 1rem !important;
  }

  .contact-details h4 {
    font-size: 0.95rem !important;
  }

  .contact-details p {
    font-size: 0.85rem !important;
  }

  .map-container {
    height: 220px !important;
  }

  /* Footer */
  .footer-brand img {
    height: 42px !important;
  }

  .footer-desc,
  .footer-links li {
    font-size: 0.85rem !important;
  }

  /* Floating WhatsApp FAB */
  .floating-whatsapp-btn {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.75rem !important;
  }
}

/* Floating WhatsApp FAB (Bottom Right Corner) */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}