/* ============================================================
   WHERE TO STAY — LANDING PAGE STYLES
   ============================================================
   Hero section, search bar, featured hotels, discover
   destinations, trust section, testimonials, CTA and other
   marketing sections for the public landing page.
   ============================================================ */


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 640px;
  min-height: 90vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-16) 0 var(--space-12);
  color: white;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--gradient-brand-vivid);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(15, 48, 41, 0.55) 0%,
    rgba(15, 48, 41, 0.75) 50%,
    rgba(15, 48, 41, 0.90) 100%
  );
}

.hero-decorative {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blob-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--brand-secondary);
  animation: floatBlob 20s ease-in-out infinite;
}

.hero-blob-2 {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: var(--brand-accent);
  animation: floatBlob 25s ease-in-out infinite reverse;
}

.hero-blob-3 {
  top: 50%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: var(--brand-primary-lighter);
  animation: floatBlob 18s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-container { padding: 0 var(--space-6); }
}

@media (min-width: 1024px) {
  .hero-container { padding: 0 var(--space-8); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-pill);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-6);
  animation: fadeInDown var(--transition-smooth) ease-out;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-secondary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw + 1rem, 5.5rem);
  font-weight: var(--weight-black);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: var(--space-5);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  animation: fadeInUp var(--transition-smooth) ease-out;
  animation-delay: 100ms;
  animation-fill-mode: both;
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--brand-secondary-light) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--brand-secondary);
  opacity: 0.35;
  border-radius: var(--radius-sm);
  z-index: -1;
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 1.5vw + 0.5rem, var(--text-xl));
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.90);
  max-width: 720px;
  margin: 0 auto var(--space-8);
  font-weight: var(--weight-normal);
  text-wrap: pretty;
  animation: fadeInUp var(--transition-smooth) ease-out;
  animation-delay: 200ms;
  animation-fill-mode: both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  animation: fadeInUp var(--transition-smooth) ease-out;
  animation-delay: 300ms;
  animation-fill-mode: both;
}


/* ============================================================
   HERO SEARCH BAR
   ============================================================ */

.hero-search {
  max-width: 960px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr auto;
  gap: var(--space-2);
  align-items: stretch;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
  animation: fadeInUp var(--transition-smooth) ease-out;
  animation-delay: 400ms;
  animation-fill-mode: both;
  border: 1px solid rgba(255, 255, 255, 0.30);
}

[data-theme="dark"] .hero-search {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
}

.hero-search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
  cursor: pointer;
  position: relative;
  min-height: 64px;
}

.hero-search-field:hover:not(.hero-search-btn-wrap) {
  background: var(--bg-surface-alt);
}

.hero-search-field + .hero-search-field {
  border-left: 1px solid var(--border-color-light);
}

.hero-search-field:hover + .hero-search-field,
.hero-search-field:has(+ .hero-search-field:hover) {
  border-left-color: transparent;
}

.hero-search-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: 4px;
}

.hero-search-input {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  outline: none;
}

.hero-search-input::placeholder {
  color: var(--text-tertiary);
  font-weight: var(--weight-normal);
}

.hero-search-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-search-btn {
  height: 100%;
  min-height: 64px;
  padding: 0 var(--space-6);
  background: var(--brand-accent);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(232, 93, 58, 0.30);
  white-space: nowrap;
}

.hero-search-btn:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 58, 0.45);
}

.hero-search-btn:active {
  transform: translateY(0);
}

.hero-search-btn-text {
  display: inline;
}

/* Mobile hero search */
@media (max-width: 900px) {
  .hero-search {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    padding: var(--space-3);
  }

  .hero-search-field {
    border-left: none !important;
    background: var(--bg-surface-alt);
  }

  .hero-search-field:first-child {
    grid-column: 1 / -1;
  }

  .hero-search-btn-wrap {
    grid-column: 1 / -1;
    padding: 0;
  }

  .hero-search-btn {
    width: 100%;
    min-height: 56px;
  }
}

@media (max-width: 480px) {
  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-search-field {
    padding: var(--space-3);
  }
}


/* ============================================================
   HERO STATS ROW
   ============================================================ */

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp var(--transition-smooth) ease-out;
  animation-delay: 500ms;
  animation-fill-mode: both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: white;
  line-height: 1;
  margin-bottom: var(--space-1);
  letter-spacing: var(--tracking-tighter);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-weight: var(--weight-medium);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.20);
}

@media (max-width: 640px) {
  .hero-stats {
    gap: var(--space-4);
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-value {
    font-size: var(--text-2xl);
  }
}


/* ============================================================
   TRIP PURPOSE PILLS
   ============================================================ */

.purpose-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-6);
  padding: 0 var(--space-2);
  animation: fadeInUp var(--transition-smooth) ease-out;
  animation-delay: 500ms;
  animation-fill-mode: both;
}

.purpose-pill {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.purpose-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  color: white;
}


/* ============================================================
   FEATURED HOTELS SECTION
   ============================================================ */

.featured-section {
  background: var(--bg-body);
  position: relative;
}

.featured-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}

.featured-view-all {
  display: flex;
  justify-content: center;
  margin-top: var(--space-10);
}


/* ============================================================
   DISCOVER BY LOCATION SECTION
   ============================================================ */

.discover-section {
  background: var(--bg-surface-alt);
  position: relative;
  overflow: hidden;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
}

.discover-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  isolation: isolate;
  text-decoration: none;
  color: white;
}

.discover-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
  color: white;
}

.discover-card-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-smooth);
}

.discover-card:hover .discover-card-image {
  transform: scale(1.08);
}

.discover-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 48, 41, 0.55) 70%,
    rgba(15, 48, 41, 0.95) 100%
  );
}

.discover-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  z-index: 1;
}

.discover-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: white;
  margin-bottom: var(--space-1);
  line-height: var(--leading-tight);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.discover-card-count {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.discover-card-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 1;
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border: 1px solid rgba(255, 255, 255, 0.25);
}


/* ============================================================
   TRUST & VERIFICATION SECTION
   ============================================================ */

.trust-section {
  background: var(--bg-body);
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

.trust-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.trust-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-image-badge {
  position: absolute;
  padding: var(--space-4);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: floatBadge 4s ease-in-out infinite;
}

.trust-image-badge-1 {
  top: 8%;
  left: -20px;
  animation-delay: 0s;
}

.trust-image-badge-2 {
  bottom: 15%;
  right: -20px;
  animation-delay: -2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trust-image-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-image-badge-text {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  line-height: 1.3;
}

.trust-image-badge-sub {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: var(--weight-normal);
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.trust-feature {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-surface);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.trust-feature:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.trust-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-50);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-feature-content {
  flex: 1;
  min-width: 0;
}

.trust-feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  line-height: var(--leading-tight);
}

.trust-feature-desc {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */

.how-it-works {
  background: var(--bg-surface-alt);
  position: relative;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

@media (max-width: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .how-grid { grid-template-columns: 1fr; }
}

.how-step {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  position: relative;
}

.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-5);
  box-shadow: 0 8px 24px rgba(27, 77, 62, 0.25);
  position: relative;
}

.how-step-number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--brand-primary-200);
  opacity: 0.5;
  animation: spin 20s linear infinite;
}

.how-step-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.how-step-desc {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   BENEFITS SECTION (For Travellers vs Hotels)
   ============================================================ */

.benefits-section {
  background: var(--bg-body);
}

.benefits-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  padding: var(--space-1);
  background: var(--bg-surface-alt);
  border-radius: var(--radius-pill);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-tab {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.benefits-tab:hover {
  color: var(--text-primary);
}

.benefits-tab.is-active {
  background: var(--brand-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  padding: var(--space-6);
  background: var(--bg-surface);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 0 0 var(--radius-md) 0;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-50);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.benefit-icon-accent {
  background: var(--brand-accent-50);
  color: var(--brand-accent);
}

.benefit-icon-gold {
  background: var(--brand-secondary-50);
  color: var(--brand-secondary-dark);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: var(--leading-tight);
}

.benefit-desc {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
  background: var(--bg-surface-alt);
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  padding: var(--space-6);
  background: var(--bg-surface);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-primary);
  opacity: 0.15;
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  color: var(--brand-secondary);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color-light);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.testimonial-author-name {
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.testimonial-author-role {
  color: var(--text-tertiary);
  font-size: var(--text-xs);
}


/* ============================================================
   CTA SECTION (Bottom of landing page)
   ============================================================ */

.cta-section {
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--gradient-brand-vivid);
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15, 48, 41, 0.90), rgba(27, 77, 62, 0.75));
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--space-4);
  text-align: center;
  color: white;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  font-weight: var(--weight-extrabold);
  color: white;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-4);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.cta-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.90);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* ============================================================
   PARTNER LOGOS STRIP (Trust badges)
   ============================================================ */

.partners-section {
  padding: var(--space-8) 0;
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-color-light);
  border-bottom: 1px solid var(--border-color-light);
}

.partners-container {
  text-align: center;
}

.partners-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
}

.partners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  opacity: 0.6;
}

.partner-logo {
  height: 32px;
  filter: grayscale(100%);
  transition: filter var(--transition-fast);
}

.partner-logo:hover {
  filter: grayscale(0);
}


/* ============================================================
   HOTEL CARD (Used in featured section)
   ============================================================ */

.hotel-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-color);
  color: inherit;
}

.hotel-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-surface-alt);
}

.hotel-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hotel-card:hover .hotel-card-image {
  transform: scale(1.08);
}

.hotel-card-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2);
  pointer-events: none;
}

.hotel-card-badges-left,
.hotel-card-badges-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  pointer-events: auto;
}

.hotel-card-favorite {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.hotel-card-favorite:hover {
  transform: scale(1.1);
  color: var(--brand-accent);
}

.hotel-card-favorite.is-active {
  color: var(--brand-accent);
}

.hotel-card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.hotel-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-tertiary);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}

.hotel-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-card-features {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  color: var(--text-tertiary);
  font-size: var(--text-xs);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-color-light);
}

.hotel-card-feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hotel-card-footer {
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
}

.hotel-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hotel-card-price-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.hotel-card-price-value {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: var(--tracking-tighter);
}

.hotel-card-price-per {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: var(--weight-normal);
  margin-left: 2px;
}

.hotel-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--brand-primary-50);
  color: var(--brand-primary);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.hotel-card-cta {
  display: block;
  margin: 0 var(--space-4) var(--space-4);
  padding: var(--space-3);
  background: var(--brand-primary);
  color: white;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  transition: background var(--transition-fast);
  text-decoration: none;
}

.hotel-card:hover .hotel-card-cta {
  background: var(--brand-primary-dark);
  color: white;
}


/* ============================================================
   NEWSLETTER / SUBSCRIBE SECTION
   ============================================================ */

.newsletter-section {
  padding: var(--space-16) 0;
  background: var(--bg-body);
}

.newsletter-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-8);
  background: var(--gradient-brand-vivid);
  border-radius: var(--radius-2xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: white;
  margin-bottom: var(--space-3);
  letter-spacing: var(--tracking-tighter);
}

.newsletter-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: var(--space-6);
}

.newsletter-form {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin: 0 auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.newsletter-input {
  flex: 1;
  padding: 0 var(--space-4);
  background: transparent;
  border: none;
  color: white;
  font-size: var(--text-base);
  outline: none;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-btn {
  padding: 0 var(--space-5);
  background: white;
  color: var(--brand-primary);
  border: none;
  border-radius: var(--radius-md);
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}

.newsletter-btn:hover {
  background: var(--brand-secondary);
  color: var(--text-on-secondary);
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: var(--space-3);
  }

  .newsletter-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    min-height: 48px;
  }

  .newsletter-btn {
    width: 100%;
  }
}


/* ============================================================
   IMAGE SLOT PLACEHOLDER
   For CMS-managed images that haven't been uploaded yet
   ============================================================ */

.image-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-surface-alt);
  border: 2px dashed var(--border-color-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  overflow: hidden;
}

.image-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 12px,
    rgba(0, 0, 0, 0.02) 12px,
    rgba(0, 0, 0, 0.02) 24px
  );
}

.image-slot-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-2);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.image-slot-text {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  position: relative;
  z-index: 1;
}

.image-slot-hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
  position: relative;
  z-index: 1;
}


/* ============================================================
   SCROLL INDICATOR (Hero)
   ============================================================ */

.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-weight: var(--weight-medium);
  animation: bounce 2s ease-in-out infinite;
  pointer-events: none;
}

@media (max-width: 640px) {
  .scroll-indicator {
    display: none;
  }
}


/* ============================================================
   RESPONSIVE HERO TWEAKS
   ============================================================ */

@media (max-width: 640px) {
  .hero {
    min-height: 560px;
    padding: var(--space-12) 0 var(--space-10);
  }

  .hero-eyebrow {
    font-size: 10px;
    padding: 0.375rem 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
    margin-bottom: var(--space-4);
  }

  .hero-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
  }
}