/* ==========================================================================
   STAYBHARAT - PIXEL PERFECT STYLESHEET
   Tagline: Your Stay, Your Journey, Your Bharat
   ========================================================================== */

@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;900&display=swap');

:root {
  /* Brand Colors */
  --primary-gold: #F5A623;
  --primary-gold-hover: #E09612;
  --primary-amber: #F39C12;
  
  --dark-navy: #0B192C;
  --dark-navy-deep: #081220;
  --dark-navy-card: #10223B;
  
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --bg-page: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  
  --rating-green: #10B981;
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: relative;
  background: #FFFFFF;
  z-index: 100;
  border-bottom: 1px solid #EAEAEA;
}

/* Header layout: brand on the left spanning full height,
   utility row + nav stacked on the right (matches design) */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 12px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  flex: 1;
  min-width: 0;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  padding: 0;
  font-size: 0.82rem;
  color: #334155;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-links a {
  color: #475569;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.top-bar-links a:hover {
  color: var(--primary-amber);
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0F172A;
  font-weight: 600;
  font-size: 0.84rem;
}

.top-bar-phone i {
  font-size: 0.85rem;
}

.btn-login-header {
  background: #0B192C;
  color: #FFFFFF !important;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.btn-login-header:hover {
  background: #1E3A8A;
}

.main-nav-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon-svg {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: #F39C12;
  line-height: 1;
}

.brand-name-stay {
  color: var(--dark-navy);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1E293B;
  letter-spacing: 0.2px;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1E293B;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-item a:hover,
.nav-item.active a {
  color: #F39C12;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: #0F172A;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 490px;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 44px 0 28px;
  color: #FFFFFF;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.4) 0%, rgba(11, 25, 44, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-block {
  max-width: 600px;
  margin-bottom: 26px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.hero-heading-highlight {
  color: #F5A623;
  display: block;
}

.hero-subtext {
  font-size: 1rem;
  font-weight: 400;
  color: #F8FAFC;
  line-height: 1.4;
  opacity: 0.95;
}

/* Search Widget */
.search-widget-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  padding: 10px 14px 16px 14px;
  max-width: 1080px;
  margin-bottom: 22px;
}

.search-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 6px 10px 6px;
  border-bottom: 1px solid #F1F5F9;
}

.search-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition-fast);
}

.search-tab-btn i {
  font-size: 0.95rem;
}

.search-tab-btn:hover {
  color: #0F172A;
}

.search-tab-btn.active {
  color: #0F172A;
  font-weight: 700;
}

.search-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: #F5A623;
  border-radius: 2px 2px 0 0;
}

/* Search Form Grid */
.search-form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.1fr 1.3fr auto;
  gap: 12px;
  align-items: flex-end;
  padding-top: 12px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 5px;
  padding-left: 2px;
}

.input-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #D5DCE5;
  border-radius: var(--radius-sm);
  padding: 0 12px;
  height: 42px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.input-with-icon:hover,
.input-with-icon:focus-within {
  border-color: #F5A623;
}

.input-with-icon i {
  font-size: 0.88rem;
  color: #64748B;
  flex-shrink: 0;
}

.input-with-icon input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1E293B;
}

.input-with-icon input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.input-display-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1E293B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guest-chevron {
  margin-left: auto;
  color: #94A3B8;
  font-size: 0.75rem;
}

.btn-search-now {
  background: #F5A623;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0 22px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(245, 166, 35, 0.3);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-search-now:hover {
  background: #E09612;
  transform: translateY(-1px);
}

/* Guest Dropdown Popup */
.guest-picker-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 250px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #E2E8F0;
  padding: 14px;
  z-index: 50;
  display: none;
}

.guest-picker-dropdown.show {
  display: block;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.counter-row:not(:last-child) {
  border-bottom: 1px solid #F1F5F9;
}

.counter-label h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1E293B;
}

.counter-label p {
  font-size: 0.68rem;
  color: #64748B;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-counter {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: #1E293B;
}

.btn-counter:hover {
  background: #E2E8F0;
}

.counter-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B;
  min-width: 14px;
  text-align: center;
}

/* Trust Bar Under Search */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  padding: 4px 6px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
}

.trust-item i {
  font-size: 0.85rem;
  color: #FFFFFF;
  opacity: 0.9;
}

/* ==========================================================================
   COMMON SECTION STYLING
   ========================================================================== */
.section-wrapper {
  padding: 38px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 0.86rem;
  color: #64748B;
  margin-top: 3px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  border: 1px solid #CBD5E1;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-view-all:hover {
  border-color: #F5A623;
  color: #E09612;
}

.btn-view-all-dest {
  color: #F5A623;
  border: none;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.btn-view-all-dest:hover {
  color: #E09612;
}

/* ==========================================================================
   FEATURED HOTELS SECTION
   ========================================================================== */
.hotels-carousel-container {
  position: relative;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hotel-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.hotel-img-wrapper {
  position: relative;
  height: 168px;
  overflow: hidden;
  background-color: #E2E8F0;
}

.hotel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-card:hover .hotel-img-wrapper img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.badge-popular {
  background: #FFFFFF;
  color: #F5A623;
  font-weight: 800;
}

.badge-bestseller {
  background: #0F172A;
  color: #FFFFFF;
  font-weight: 700;
}

.badge-new {
  background: #FFFFFF;
  color: #2563EB;
  font-weight: 800;
}

.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  z-index: 2;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.btn-wishlist:hover,
.btn-wishlist.active {
  background: #FFFFFF;
  color: #EF4444;
}

.hotel-card-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 2px;
}

.hotel-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10B981;
  flex-shrink: 0;
}

.rating-badge i {
  font-size: 0.65rem;
}

.rating-count {
  color: #64748B;
  font-weight: 500;
  font-size: 0.68rem;
}

.hotel-location {
  font-size: 0.74rem;
  color: #64748B;
  margin-bottom: 8px;
}

.hotel-category-tag {
  font-size: 0.68rem;
  color: #64748B;
  margin-top: auto;
}

.hotel-category-tag span {
  display: block;
  font-size: 0.62rem;
  color: #94A3B8;
}

.hotel-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 4px;
}

.hotel-price {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0F172A;
}

.hotel-price span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #64748B;
}

.carousel-nav-btn {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  font-size: 0.85rem;
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
}

/* ==========================================================================
   POPULAR DESTINATIONS SECTION
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.destination-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.destination-card:hover {
  transform: translateY(-3px);
}

.destination-img-box {
  height: 105px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 8px;
  background-color: #E2E8F0;
}

.destination-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-img-box img {
  transform: scale(1.06);
}

.destination-info {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.destination-info i {
  font-size: 0.82rem;
  color: #0F172A;
  margin-top: 3px;
  flex-shrink: 0;
}

.destination-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.destination-state {
  font-size: 0.7rem;
  color: #64748B;
  display: block;
}

/* ==========================================================================
   TOURS & TRANSPORT TWO-COLUMN CARDS
   ========================================================================== */
.two-column-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.showcase-card {
  border-radius: var(--radius-lg);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.showcase-banner {
  position: relative;
  height: 155px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.showcase-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(234, 160, 35, 0.9) 0%, rgba(217, 119, 6, 0.65) 45%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.showcase-banner-transport .showcase-banner-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.65) 50%, rgba(0,0,0,0.05) 100%);
}

.showcase-banner-content {
  position: relative;
  z-index: 2;
  max-width: 260px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.showcase-subtitle {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  margin-bottom: 12px;
}

.btn-showcase-tours {
  background: #F5A623;
  color: #0F172A;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.btn-showcase-tours:hover {
  background: #E09612;
}

.btn-showcase-transport {
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.btn-showcase-transport:hover {
  background: #1E293B;
}

.showcase-tags-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 8px;
  background: #FFFFFF;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.tag-item i {
  font-size: 0.8rem;
  color: #64748B;
}

.tag-item:hover,
.tag-item:hover i {
  color: #F5A623;
}

/* ==========================================================================
   PARTNER WITH STAYBHARAT BANNER
   ========================================================================== */
.partner-banner {
  background: #0B192C;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  margin-top: 14px;
}

.partner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partner-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5A623;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.partner-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.partner-subtitle {
  font-size: 0.78rem;
  color: #94A3B8;
}

.partner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-partner-login {
  background: transparent;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #475569;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.btn-partner-login:hover {
  border-color: #FFFFFF;
}

.btn-become-partner {
  background: #F5A623;
  color: #0F172A;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
}

.btn-become-partner:hover {
  background: #E09612;
}

/* ==========================================================================
   WHY CHOOSE STAYBHARAT SECTION
   ========================================================================== */
.why-choose-section {
  padding: 38px 0 48px;
  background: #FFFFFF;
}

.why-choose-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  text-align: center;
  color: #0F172A;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box svg {
  width: 32px;
  height: 32px;
}

.feature-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.35;
  max-width: 160px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0B192C;
  color: #FFFFFF;
  padding: 44px 0 20px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr 1.6fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: #F39C12;
  letter-spacing: 0.4px;
  line-height: 1;
}

.footer-brand-name .brand-name-stay {
  color: var(--text-white);
}

.footer-brand-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: #94A3B8;
  margin-top: 2px;
  white-space: nowrap;
  display: block;
}

.footer-bio {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.4;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.social-link-btn:hover {
  background: #F5A623;
  color: #0F172A;
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

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

.footer-links-list a {
  font-size: 0.78rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: #F5A623;
}

.newsletter-desc {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 12px;
  line-height: 1.35;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #10223B;
  border: 1px solid #1E3A5F;
  border-radius: var(--radius-sm);
  padding: 2px;
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #FFFFFF;
}

.newsletter-input::placeholder {
  color: #64748B;
}

.btn-subscribe {
  background: #F5A623;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
}

.btn-subscribe:hover {
  background: #E09612;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  font-size: 0.74rem;
  color: #64748B;
}

.payment-methods-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-pill {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 2px 8px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  color: #1A365D;
}

.payment-pill.visa {
  color: #1A1F71;
  font-style: italic;
  font-weight: 900;
}

.payment-pill.mastercard {
  color: #EB001B;
}

.payment-pill.rupay {
  color: #097938;
}

.payment-pill.upi {
  color: #5F259F;
}

/* Modals & Toast */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-header {
  padding: 16px 20px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
}

.btn-close-modal {
  font-size: 1.3rem;
  color: #64748B;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

.modal-form-group {
  margin-bottom: 12px;
}

.modal-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 4px;
}

.modal-form-group input,
.modal-form-group select {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.85rem;
}

.modal-form-group input:focus,
.modal-form-group select:focus {
  border-color: #F5A623;
}

.btn-submit-modal {
  width: 100%;
  background: #F5A623;
  color: #0F172A;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 8px;
}

.btn-submit-modal:hover {
  background: #E09612;
}

.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0F172A;
  color: #FFFFFF;
  border-left: 4px solid #F5A623;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1080px) {
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 868px) {
  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .btn-search-now {
    grid-column: 1 / -1;
    margin-top: 4px;
  }
  .two-column-showcase {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
  .partner-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .partner-left {
    flex-direction: column;
  }
  .hero-trust-bar {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #E2E8F0;
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 520px) {
  /* Compact brand block so logo + tagline fit neatly on small screens */
  .logo-icon-svg {
    width: 56px;
    height: 56px;
  }
  .brand-logo-container {
    gap: 8px;
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .brand-tagline {
    font-size: 0.55rem;
    margin-top: 2px;
  }
  .hotels-grid {
    grid-template-columns: 1fr;
  }
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .logo-icon-svg {
    width: 48px;
    height: 48px;
  }
  .brand-name {
    font-size: 1.08rem;
  }
  .brand-tagline {
    font-size: 0.5rem;
  }
}

/* ==========================================================================
   AUTH MODAL — Google sign-in
   ========================================================================== */
.btn-google-signin {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1F2937;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-google-signin:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.btn-google-signin:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-light);
  font-size: 0.76rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.auth-note {
  font-size: 0.76rem;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
  color: var(--text-muted);
}

.auth-note.error {
  color: #B91C1C;
}

.auth-note.success {
  color: #047857;
}

/* Signed-in state in the header */
.btn-login-header.is-signed-in {
  background: transparent;
  color: var(--dark-navy) !important;
  border: 1px solid var(--border-light);
  gap: 8px;
}

.btn-login-header.is-signed-in:hover {
  background: var(--bg-subtle);
}

.header-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 800;
  flex-shrink: 0;
}
