/* ============================================
   StayNamasté v2.0 — Full Feature Theme
   Dark Mode + All New Features
   ============================================ */

:root {
  --teal: #0d4f4f;
  --teal-mid: #1a6b6b;
  --teal-light: #2d8a8a;
  --gold: #c9943e;
  --gold-light: #e4b86a;
  --gold-pale: #fdf3e0;
  --ivory: #faf8f4;
  --dark: #0e1a1a;
  --text: #2c3e35;
  --text-muted: #6b7c74;
  --white: #ffffff;
  --border: rgba(13, 79, 79, 0.12);
  --shadow: 0 8px 32px rgba(13, 79, 79, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --bg: #faf8f4;
  --card-bg: #ffffff;
  --nav-bg: rgba(13, 26, 26, 0.92);
}

[data-theme="dark"] {
  --bg: #0e1a1a;
  --card-bg: #142020;
  --ivory: #0e1a1a;
  --white: #142020;
  --text: #d4e8e0;
  --text-muted: #8aada0;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gold-pale: #1e2e2a;
  --nav-bg: rgba(10, 20, 20, 0.98);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 148, 62, 0.2);
  transition: all 0.3s;
}

.navbar.scrolled {
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 40px;
  /* reduce size here */
  height: 28px;
  object-fit: contain;
}

.nav-logo em {
  color: var(--gold-light);
  font-style: italic;
}

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

.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--gold-light);
}

.nav-btn {
  padding: 0.4rem 1.1rem;
  border: 1.5px solid rgba(201, 148, 62, 0.6);
  border-radius: 50px;
  color: var(--gold-light) !important;
  transition: all 0.2s !important;
}

.nav-btn:hover {
  background: rgba(201, 148, 62, 0.15) !important;
}

.nav-btn-solid {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

.nav-btn-solid:hover {
  background: var(--gold-light) !important;
}

.dark-mode-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--gold-light);
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.dark-mode-toggle:hover {
  background: rgba(201, 148, 62, 0.2);
}

.lang-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* Align properly in navbar */
.nav-extra-logo {
  width: 210px;
  /* increase here */
  height: auto;
  object-fit: contain;
}

/* Align properly in navbar */
.sushant-logo {
  display: flex;
  align-items: center;
  /* margin-left: 10px; */
  margin-top: 25px;
  /* margin-right: 10px; */
  /* pushes it to right */
  display: flex;
  align-items: center;
}

/* .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
} */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width:768px) {

  .navbar {
    padding: 0.75rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    margin-top: 70px;
  }

  .search-bar {
    margin-bottom: 3rem !important;
  }

  /* ← ADD THIS LINE */

  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    background: #0a1818;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--gold);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    font-weight: 500;
  }

  .nav-links li a:hover {
    background: rgba(201, 148, 62, 0.12);
    color: var(--gold-light) !important;
  }

  .nav-btn {
    margin: 0.5rem 1.5rem !important;
    display: block !important;
    text-align: center !important;
    border-radius: 50px !important;
    padding: 0.7rem 1rem !important;
    width: calc(100% - 3rem) !important;
  }

  .dark-mode-toggle {
    width: calc(100% - 3rem);
    margin: 0.5rem 1.5rem;
    border-radius: 8px;
    height: 44px;
    justify-content: center;
  }

  .lang-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 0.5rem 1.5rem 1rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    max-width: none;
  }

  /* Fix search bar on mobile */
  .search-bar {
    flex-direction: column;
    width: 92%;
    margin: 1.5rem auto 0;
    border-radius: 14px;
  }

  .search-group {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .search-group label {
    min-width: 90px;
    margin-bottom: 0;
    font-size: 0.7rem;
  }

  .search-group select,
  .search-group input {
    flex: 1;
    font-size: 0.92rem;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0 0 14px 14px;
  }

  /* Fix hero top padding */
  .hero-content {
    margin-top: 70px;
    padding: 1.5rem;
  }

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

  .hero-sub {
    font-size: 0.95rem;
  }

  /* Fix wishlist fab overlapping */
  .wishlist-fab {
    bottom: 6.5rem;
    right: 1rem;
  }

  .chatbot-bubble {
    bottom: 1.5rem;
    right: 1rem;
  }

  .hero-content {
    margin-top: 70px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 780px;
    padding: 2rem;
    margin-top: -80px;
  }

}

/* ======== TABLET VIEW (769px - 1024px) ======== */
@media (min-width:769px) and (max-width:1024px) {

  /* NAVBAR */
  .navbar {
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .nav-links li a {
    font-size: 0.8rem;
  }

  .lang-select {
    display: none;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  /* HERO */
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .search-bar {
    max-width: 95%;
  }

  .search-group {
    padding: 0.8rem 0.9rem;
  }

  /* STATS */
  .stats-strip {
    gap: 0;
  }

  .stat-item {
    padding: 0.5rem 0.6rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  /* HOTELS GRID - 2 columns on tablet */
  .hotels-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hotel-params {
    grid-template-columns: 1fr;
  }

  .hotel-actions {
    flex-wrap: wrap;
  }

  .btn-book {
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
  }

  /* FOOD GRID - 2 columns */
  .food-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .food-card {
    height: 180px;
  }

  /* OFFERS - 1 column */
  .offers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* ABOUT */
  .about-grid {
    gap: 2.5rem;
  }

  .about-img-secondary {
    width: 45%;
    right: -1rem;
    bottom: -1rem;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* FOOD ORDER PAGE */
  .food-order-grid {
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
  }

  /* ROOM CARDS */
  .room-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* DASHBOARD */
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CHEF SPECIAL */
  .chefs-special-inner {
    gap: 1rem;
  }

  .chefs-content h3 {
    font-size: 1rem;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    min-width: 260px;
  }

  /* COMPARE BAR */
  .compare-bar-inner {
    gap: 0.8rem;
  }

  /* SEARCH BAR */
  .search-bar {
    flex-wrap: wrap;
  }

  .search-group {
    min-width: 45%;
  }

  /* SECTIONS PADDING */
  .section {
    padding: 4rem 1.5rem;
  }

  .about-section {
    padding: 4rem 1.5rem;
  }

  .offers-section {
    padding: 4rem 1.5rem;
  }

  /* AUTH PAGE */
  .auth-page {
    grid-template-columns: 1fr 1fr;
  }

  .auth-visual {
    padding: 2rem;
  }

  .auth-visual h2 {
    font-size: 1.8rem;
  }

  /* CHATBOT */
  .chatbot-window {
    width: 300px;
  }

  /* WISHLIST SIDEBAR */
  .wishlist-sidebar {
    width: 280px;
  }

  /* PROMO BOX */
  .promo-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .promo-input-wrap {
    min-width: 100%;
  }
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13, 26, 26, 0.72) 0%, rgba(13, 79, 79, 0.5) 60%, rgba(13, 26, 26, 0.75) 100%);
}

/* .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 780px;
  padding: 2rem;
  margin-top: -80px;
} */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 780px;
  padding: 2rem;
  margin-top: 60px;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(201, 148, 62, 0.35);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 148, 62, 0.4);
}

.btn-outline {
  padding: 0.85rem 2.2rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* SEARCH BAR */
/* .search-bar {
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 60px rgba(13, 26, 26, 0.35);
  margin: 2.5rem auto 0;
  max-width: 920px;
  width: 94%;
  overflow: hidden;
} */
.search-bar {
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 60px rgba(13, 26, 26, 0.35);
  margin: 2.5rem auto 0;
  max-width: 920px;
  width: 94%;
  overflow: hidden;
  flex-wrap: nowrap;
}

.search-group {
  flex: 1;
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--border);
}

.search-group:last-of-type {
  border-right: none;
}

.search-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.search-group select,
.search-group input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.search-btn {
  padding: 1.1rem 2rem;
  background: var(--teal);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-btn:hover {
  background: var(--teal-mid);
}

/* ======== STATS ======== */
.stats-strip {
  background: var(--teal);
  display: flex;
  justify-content: center;
  padding: 1.8rem 2rem;
}

.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
}

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

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ======== CHEF'S SPECIAL ======== */
.chefs-special {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal) 100%);
  padding: 1.5rem 2rem;
}

.chefs-special-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.chefs-badge {
  background: var(--gold);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.chefs-content {
  flex: 1;
  color: white;
}

.chefs-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.chefs-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.chefs-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.4rem;
}

.chefs-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

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

.chefs-timer strong {
  color: var(--gold-light);
}

/* ======== SECTION COMMONS ======== */
.section {
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.light * {
  color: white;
}

.section-tag {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.8rem;
}

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

/* COMPARE BAR */
.compare-bar {
  background: var(--teal);
  padding: 0.8rem 2rem;
  position: sticky;
  top: 64px;
  z-index: 900;
}

.compare-bar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: white;
  font-size: 0.9rem;
}

.compare-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.compare-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
  font-size: 0.8rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.compare-chip button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 1rem;
}

/* CITY TABS */
.city-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.city-tab {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.city-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.city-tab.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

/* HOTEL GRID */
.hotels-section {
  background: var(--bg);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.hotel-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 79, 79, 0.18);
}

.hotel-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.hotel-card:hover .hotel-img-wrap img {
  transform: scale(1.06);
}

.hotel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: white;
  padding: 0.28rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74c3c;
  font-size: 1rem;
  transition: all 0.2s;
  z-index: 2;
}

.wishlist-btn:hover {
  background: white;
  transform: scale(1.1);
}

.wishlist-btn.active {
  background: #e74c3c;
  color: white;
}

.wishlist-btn.active i {
  font-weight: 900;
}

.compare-check-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(13, 26, 26, 0.8);
  border: none;
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  color: white;
  font-size: 0.72rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition: all 0.2s;
  z-index: 2;
}

.compare-check-btn:hover {
  background: var(--teal);
}

.compare-check-btn.added {
  background: var(--gold);
}

.avail-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.avail-good {
  background: rgba(46, 204, 113, 0.9);
  color: white;
}

.avail-few {
  background: rgba(231, 76, 60, 0.9);
  color: white;
}

.hotel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 26, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.hotel-card:hover .hotel-overlay {
  opacity: 1;
}

.overlay-btn {
  padding: 0.6rem 1.8rem;
  background: white;
  color: var(--teal);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
}

.hotel-info {
  padding: 1.4rem 1.5rem;
}

.hotel-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.3rem;
}

.hotel-name-row h3 {
  font-size: 1.2rem;
  color: var(--text);
}

.hotel-stars {
  color: var(--gold);
  font-size: 0.85rem;
}

.hotel-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.hotel-loc i {
  color: var(--gold);
  margin-right: 0.3rem;
}

.hotel-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mini-stars {
  color: var(--gold);
  font-size: 0.82rem;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hotel-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hotel-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  margin-bottom: 0.8rem;
}

.param {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text);
}

.param i {
  color: var(--teal);
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.param strong {
  color: var(--teal);
}

.meal-plans {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.meal-tag {
  font-size: 0.72rem;
  background: rgba(13, 79, 79, 0.08);
  color: var(--teal);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(13, 79, 79, 0.15);
  font-weight: 500;
}

.hotel-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-book {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 0.55rem 0.8rem;
  background: var(--teal);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-book:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

.btn-book-alt {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-book-alt:hover {
  background: var(--teal);
  color: white;
}

.btn-book-food {
  background: var(--gold);
}

.btn-book-food:hover {
  background: var(--gold-light);
}

/* ======== DINING ======== */
.dining-section {
  background: var(--teal);
}

.dining-section .section-tag {
  color: var(--gold-light);
}

.dining-section h2 {
  color: white;
}

.dining-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.food-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 220px;
}

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

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

.food-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(13, 26, 26, 0.9), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
}

.food-label span {
  font-weight: 600;
  font-size: 1rem;
}

.food-label a {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 500;
}

/* ======== ABOUT ======== */
.about-section {
  background: var(--card-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius);
  border: 6px solid var(--card-bg);
  box-shadow: var(--shadow);
}

.about-text-col {
  padding-left: 1rem;
}

.about-text-col h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1.2rem;
}

.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.ab-feat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.ab-feat i {
  color: var(--gold);
  font-size: 1rem;
}

/* ======== PROMO CODE ======== */
.promo-box {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  background: var(--card-bg);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.promo-icon {
  font-size: 2rem;
}

.promo-inner h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.promo-inner p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.promo-input-wrap {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  min-width: 240px;
}

.promo-input-wrap input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
}

.promo-result {
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
}

.promo-success {
  color: #2d7a50;
}

.promo-error {
  color: #e74c3c;
}

/* ======== OFFERS ======== */
.offers-section {
  background: var(--bg);
  padding: 5rem 2rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card {
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.offer-gold {
  background: linear-gradient(135deg, #fdf3e0, #f5e0b5);
  border: 1px solid #e4b86a;
}

.offer-terracotta {
  background: linear-gradient(135deg, #fff0eb, #fdd5c4);
  border: 1px solid #e8956b;
}

.offer-green {
  background: linear-gradient(135deg, #ebfbf5, #c5f0dd);
  border: 1px solid #7fd4b0;
}

[data-theme="dark"] .offer-gold {
  background: linear-gradient(135deg, #1e2a18, #2a3318);
}

[data-theme="dark"] .offer-terracotta {
  background: linear-gradient(135deg, #2a1a18, #2a2018);
}

[data-theme="dark"] .offer-green {
  background: linear-gradient(135deg, #182a22, #182a20);
}

.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offer-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

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

.offer-btn {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: var(--teal);
  color: white;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}

.offer-btn:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
}

/* ======== REVIEWS ======== */
.reviews-section {
  background: var(--card-bg);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.review-score {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  font-weight: 700;
}

.review-score span {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.review-bars {
  flex: 1;
  min-width: 200px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.review-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.review-bar div {
  height: 100%;
  background: var(--gold);
  border-radius: 50px;
}

.review-total {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 290px;
  max-width: 310px;
  flex-shrink: 0;
  border-radius: var(--radius);
  padding: 1.8rem;
  background: #0d4f4f;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.testi-stars {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testi-author {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.verified-badge {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.4rem;
  font-weight: 600;
}

.write-review-box {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.write-review-box h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.star-picker {
  font-size: 2rem;
  color: var(--border);
  cursor: pointer;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.star-picker span {
  transition: color 0.1s;
}

.star-picker span.active {
  color: var(--gold);
}

.write-review-box textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: var(--card-bg);
  color: var(--text);
  resize: vertical;
  outline: none;
}

/* ======== CONTACT ======== */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--text);
  margin: 0.5rem 0 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}

.contact-item i {
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.contact-form {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  background: var(--bg);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #e6f9ef;
  color: #2d7a50;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
}

/* REFERRAL */
.referral-box {
  background: var(--gold-pale);
  border: 1.5px solid rgba(201, 148, 62, 0.3);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  margin-top: 2rem;
}

.referral-box h4 {
  color: var(--teal);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.referral-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.referral-code-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.referral-code {
  background: var(--card-bg);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.4rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  letter-spacing: 0.1em;
}

/* ======== FOOTER ======== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo em {
  color: var(--gold-light);
  font-style: italic;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo-img {
  width: 40px;
  /* 👈 adjust size */
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  color: white;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ======== BOOKING PAGES ======== */
.page-header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
  padding: 6rem 2rem 3rem;
  text-align: center;
  color: white;
}

.page-header .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.page-header .breadcrumb a {
  color: var(--gold-light);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.booking-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.booking-form-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.booking-form-card h2 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.booking-form-card .form-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

.booking-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin: 1.5rem 0 1rem;
  grid-column: 1/-1;
}

.room-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.room-select-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: var(--bg);
}

.room-select-card:hover {
  border-color: var(--teal);
}

.room-select-card.selected {
  border-color: var(--teal);
  background: rgba(13, 79, 79, 0.06);
}

.room-select-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.7rem;
}

.room-select-card .room-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.room-select-card .room-price {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.room-select-card .room-features {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.price-summary {
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(201, 148, 62, 0.3);
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.price-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  border-top: 1px solid rgba(201, 148, 62, 0.3);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
}

.booking-submit-btn {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: var(--teal);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
}

.booking-submit-btn:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 79, 79, 0.25);
}

.booking-confirm-msg {
  display: none;
  text-align: center;
  padding: 2.5rem;
}

.booking-confirm-msg .confirm-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.booking-confirm-msg h3 {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.booking-confirm-msg p {
  color: var(--text-muted);
}

/* ======== FOOD ORDER ======== */
.food-order-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  align-items: start;
}

.menu-section-title {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-pale);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-item-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 79, 79, 0.08);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.menu-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.menu-item-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.menu-item-info {
  padding: 0.8rem;
}

.menu-item-info h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.menu-item-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.diet-tag {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.diet-veg {
  background: #e8f8ec;
  color: #27ae60;
  border: 1px solid #27ae60;
}

.diet-nonveg {
  background: #fde8e8;
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.diet-jain {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #c9943e;
}

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

.menu-item-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
}

.add-to-cart-btn {
  background: var(--teal);
  color: white;
  border: none;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.add-to-cart-btn:hover {
  background: var(--teal-mid);
}

.cart-panel {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
}

.cart-panel h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-items {
  min-height: 100px;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.cart-item-name {
  color: var(--text);
}

.cart-item-price {
  color: var(--teal);
  font-weight: 600;
}

.cart-remove {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 1.5rem 0;
}

.cart-total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  padding-top: 0.6rem;
}

.checkout-btn {
  width: 100%;
  padding: 0.85rem;
  margin-top: 1rem;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.checkout-btn:hover {
  background: var(--gold-light);
}

/* ======== AUTH ======== */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-visual {
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: white;
}

.auth-visual h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.auth-visual p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 340px;
  text-align: center;
  line-height: 1.8;
}

.auth-visual .visual-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.auth-logo-img {
  width: 150px;
  /* 👈 adjust size here */
  height: auto;
  object-fit: contain;
}

.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--bg);
}

.auth-form-wrap {
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 2rem;
}

.auth-form-wrap h2 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.auth-form-wrap p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.auth-submit {
  width: 100%;
  padding: 1rem;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
  margin-top: 0.5rem;
}

.auth-submit:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
}

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-switch a {
  color: var(--teal);
  font-weight: 600;
}

.form-divider {
  text-align: center;
  margin: 1.2rem 0;
  position: relative;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.form-divider span {
  background: var(--bg);
  padding: 0 0.8rem;
  position: relative;
}

/* ======== DASHBOARD ======== */
.dashboard-page {
  max-width: 1100px;
  margin: 6rem auto 3rem;
  padding: 0 2rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-header h1 {
  font-size: 2rem;
  color: var(--text);
}

.loyalty-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.loyalty-points-display {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold-light);
  font-weight: 700;
}

.loyalty-label {
  font-size: 0.85rem;
  opacity: 0.7;
}

.loyalty-progress {
  flex: 1;
  min-width: 200px;
}

.loyalty-progress p {
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.progress-bar-wrap {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  height: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gold-light);
  border-radius: 50px;
  transition: width 1s ease;
}

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

.dash-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.dash-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.booking-item:last-child {
  border-bottom: none;
}

.booking-item-name {
  font-weight: 600;
  color: var(--text);
}

.booking-item-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.booking-status {
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-confirmed {
  background: #e8f8ec;
  color: #27ae60;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

/* ======== CHATBOT ======== */
.chatbot-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(13, 79, 79, 0.4);
  z-index: 999;
  transition: all 0.2s;
}

.chatbot-bubble:hover {
  background: var(--teal-mid);
  transform: scale(1.1);
}

.chat-ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #e74c3c;
  border-radius: 50%;
  border: 2px solid white;
  animation: ping 1.5s infinite;
}

@keyframes ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.chatbot-window {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 330px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 998;
  display: none;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  max-height: 480px;
}

.chatbot-window.open {
  display: flex;
}

.chat-header {
  background: var(--teal);
  color: white;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 250px;
}

.chat-msg {
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  max-width: 85%;
  line-height: 1.5;
}

.chat-msg.bot {
  background: var(--gold-pale);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--teal);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-quick {
  display: flex;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.chat-quick button {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--teal);
  background: transparent;
  color: var(--teal);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.chat-quick button:hover {
  background: var(--teal);
  color: white;
}

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem;
  border-top: 1px solid var(--border);
}

.chat-input-row input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  background: var(--bg);
  color: var(--text);
}

.chat-send {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-send:hover {
  background: var(--teal-mid);
}

/* ======== LOYALTY TOAST ======== */
.loyalty-toast {
  position: fixed;
  top: 80px;
  right: 2rem;
  background: var(--teal);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 9999;
  display: none;
  font-size: 0.9rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ======== WISHLIST SIDEBAR ======== */
.wishlist-sidebar {
  position: fixed;
  right: -360px;
  top: 0;
  bottom: 0;
  width: 320px;
  background: var(--card-bg);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  transition: right 0.35s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.wishlist-sidebar.open {
  right: 0;
}

.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.wishlist-header h3 {
  color: var(--text);
}

.wishlist-fab {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  background: white;
  border: 2px solid var(--gold);
  color: var(--teal);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.wishlist-fab:hover {
  background: var(--gold);
  color: white;
}

.wishlist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.wishlist-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.wishlist-item a {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeInUp 0.8s ease both;
}

.hero-content .hero-tagline {
  animation-delay: 0.1s;
}

.hero-content .hero-title {
  animation-delay: 0.25s;
}

.hero-content .hero-sub {
  animation-delay: 0.4s;
}

.hero-content .hero-actions {
  animation-delay: 0.55s;
}

.search-bar {
  animation: fadeInUp 0.8s 0.7s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* RESPONSIVE */
@media (max-width:900px) {
  .hotels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .food-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-secondary {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .food-order-grid {
    grid-template-columns: 1fr;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .chefs-special-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:640px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--dark);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-group {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .chatbot-window {
    width: calc(100vw - 2rem);
    right: 1rem;
  }

  .wishlist-sidebar {
    width: 100%;
    right: -100%;
  }

  .reviews-summary {
    flex-direction: column;
    gap: 1.5rem;
  }
}