/* ==========================================================================
   RAAHI - Full-Bleed Widescreen Luxury Landing Page Styles
   Theme: Widescreen Layout + Warm Cream & Golden Sunset Aesthetic
   ========================================================================== */

:root {
  /* Colors */
  --bg-cream: #F9F5EC;
  --bg-cream-alt: #F3ECE0;
  --bg-white: #FFFFFF;
  --bg-dark: #121317;
  --bg-dark-card: #1C1E24;
  
  --primary-amber: #D97706;
  --primary-gold: #E58E12;
  --primary-gradient: linear-gradient(135deg, #E58E12 0%, #D97706 100%);
  --amber-glow: rgba(217, 119, 6, 0.25);
  
  --text-main: #1C1917;
  --text-muted: #57534E;
  --text-light: #F5F5F4;
  --text-light-muted: #A8A29E;
  
  --border-cream: rgba(217, 119, 6, 0.2);
  --border-dark: rgba(255, 255, 255, 0.12);

  --accent-green: #059669;
  
  /* Typography */
  --font-serif: 'Playfair Display', 'Lora', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 35px rgba(217, 119, 6, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100vw;
}

/* Widescreen Full-Width Container */
.container {
  width: 100%;
  max-width: 1560px; /* Expands to utilize full widescreen monitors */
  margin: 0 auto;
  padding: 0 4vw;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 960px;
}

/* Typography Utilities */
h1, h2, h3, .serif-font {
  font-family: var(--font-serif);
}

.gold-text {
  color: var(--primary-amber);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid var(--border-cream);
  color: var(--primary-amber);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 18px;
}

.dark-section .section-title {
  color: var(--text-light);
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 56px auto;
}

.dark-section .section-subtitle {
  color: var(--text-light-muted);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 24px var(--amber-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(217, 119, 6, 0.45);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-main);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #F2EBE0;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 12px 26px;
  font-size: 0.9rem;
}

/* Header & Widescreen Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(249, 245, 236, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.15);
}

.header.scrolled {
  padding: 14px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

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

/* Brand Logo Styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-icon-svg {
  width: 44px;
  height: 44px;
}

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

.brand-title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.38em;
  color: var(--text-main);
  line-height: 1;
}

.brand-subtext {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 5px;
}

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

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

.nav-links a.active {
  color: var(--primary-amber);
  font-weight: 800;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-amber);
  border-radius: 2px;
}

/* HERO SECTION - Widescreen Full-Bleed Design */
.hero-section {
  width: 100vw;
  min-height: 92vh;
  padding-top: 140px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #FAF6EE 0%, #F1E7D6 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-widescreen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
  width: 100%;
}

.hero-content-left {
  padding-right: 2vw;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border-cream);
  color: var(--primary-amber);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-main-heading span {
  color: var(--primary-amber);
  display: block;
}

.hero-curated-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-curated-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--primary-amber);
}

.hero-description-text {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 640px;
}

.hero-tagline {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 38px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Widescreen Hero Photo Frame */
.hero-visual-right {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.1);
  border: 4px solid var(--bg-white);
}

.hero-image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-script-overlay {
  position: absolute;
  bottom: 40px;
  right: 40px;
  text-align: right;
  z-index: 4;
  pointer-events: none;
}

.hero-script-text {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 5vw, 5rem);
  color: #FFFFFF;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  line-height: 0.85;
}

.hero-script-line {
  width: 140px;
  height: 4px;
  background: var(--primary-amber);
  border-radius: 2px;
  margin-left: auto;
  margin-top: 8px;
  box-shadow: 0 0 10px var(--primary-amber);
}

/* FEATURE ICONS BAR - Widescreen Full-Bleed Charcoal Bar */
.feature-icons-bar {
  width: 100vw;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 48px 0;
  border-top: 4px solid var(--primary-amber);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.feature-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2vw;
  position: relative;
}

.feature-icon-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon-svg {
  width: 42px;
  height: 42px;
  color: var(--primary-amber);
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(217, 119, 6, 0.3));
}

.feature-icon-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.4;
}

/* Widescreen Trust Bar Section (Matching Dark Aesthetics - Horizontal Layout) */
.trust-bar-section {
  width: 100vw;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 4px solid var(--primary-amber);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1vw;
  align-items: center;
}

.trust-grid-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 1vw;
  position: relative;
  white-space: nowrap;
}

.trust-grid-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.trust-grid-item .stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #F59E0B;
}

.trust-item-icon {
  font-size: 1.35rem;
  filter: drop-shadow(0 2px 6px rgba(217, 119, 6, 0.3));
}

.trust-item-text {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.2;
}

/* Section Spacing */
.section {
  width: 100vw;
  padding: 110px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-cream-alt);
}

.dark-section {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* What is Raahi */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.comparison-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.comparison-card.highlight {
  border-color: var(--primary-amber);
  background: #FFFDF8;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(217, 119, 6, 0.12);
}

.card-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.highlight .card-tag {
  color: var(--primary-amber);
}

.card-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.highlight .feature-list li {
  color: var(--text-main);
  font-weight: 600;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-weight: bold;
}

.cross-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-weight: bold;
}

/* Why Raahi Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cream);
  box-shadow: var(--shadow-md);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid var(--border-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 1.025rem;
  line-height: 1.65;
}

.safety-bullets {
  margin-top: 14px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.safety-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Experiences Widescreen Grid */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.experience-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-amber);
  box-shadow: var(--shadow-lg);
}

.exp-image-container {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
}

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

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

.exp-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.exp-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-dark);
  color: var(--primary-amber);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.exp-title {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.exp-description {
  color: var(--text-muted);
  font-size: 1.025rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.price-strike {
  text-decoration: line-through;
  color: #A8A29E;
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 6px;
}

.exp-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary-amber);
}

.discount-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-amber);
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 3px;
}

/* Pilot Program & Pricing Table */
.pilot-benefits-box {
  background: var(--bg-white);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  font-weight: 700;
}

.pricing-table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th, .pricing-table td {
  padding: 22px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-table th {
  background: #F8F4EC;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td.experience-name {
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--font-serif);
}

.pricing-table td.pilot-price {
  font-weight: 800;
  color: var(--primary-amber);
  font-size: 1.25rem;
}

.pilot-disclaimer {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* Meet Host Section */
.host-box {
  background: var(--bg-white);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.host-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  background: #15161A;
}

.host-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.host-image-frame:hover .host-image {
  transform: scale(1.03);
}

.host-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(21, 22, 26, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary-amber);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.host-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.host-role {
  color: var(--primary-amber);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.host-name {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.host-story p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.75;
}

.host-guarantee {
  background: rgba(217, 119, 6, 0.08);
  border-left: 5px solid var(--primary-amber);
  padding: 22px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  font-style: italic;
}

/* Form Section */
.form-section {
  background: linear-gradient(180deg, #F9F5EC 0%, #EDE4D4 100%);
}

.form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: #FAF8F5;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-amber);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
}

/* Custom Date Picker Styling */
input[type="date"].form-control {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23D97706' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 22px 22px;
  padding-right: 50px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-options-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  cursor: pointer;
  font-weight: 600;
}

/* Companion Box & Checkbox Styling */
.companion-box {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-top: 4px;
  transition: var(--transition);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-main);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary-amber);
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-submit-row {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.form-submit-row .btn {
  width: 100%;
  max-width: 440px;
  padding: 20px 40px;
  font-size: 1.2rem;
}

.submission-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FAQ Section */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

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

.faq-question {
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-serif);
  cursor: pointer;
  user-select: none;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary-amber);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 34px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 34px 28px 34px;
}

/* Final CTA Section */
.final-cta {
  width: 100vw;
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.18) 0%, rgba(18, 19, 23, 0.95) 100%);
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  box-shadow: var(--shadow-glow);
}

.final-cta .section-title {
  color: #FFFFFF;
}

.final-cta .section-subtitle {
  color: var(--text-light-muted);
}

/* Footer */
.footer {
  width: 100vw;
  background: #0A0B0E;
  color: var(--text-light-muted);
  border-top: 1px solid var(--border-dark);
  padding: 72px 0 36px 0;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-brand .brand-logo {
  gap: 12px;
}

.footer-brand .brand-icon-svg {
  width: 34px;
  height: 34px;
}

.footer-brand .brand-title {
  font-size: 1.3rem;
  letter-spacing: 0.32em;
}

.footer-brand .brand-subtext {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 340px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.footer-links-column h4 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.footer-links-column li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links-column a {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links-column a:hover {
  color: var(--primary-amber);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

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

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  color: var(--text-main);
}

.modal-backdrop.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.video-modal-container {
  max-width: 900px;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.video-player-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-player-wrapper iframe, .video-player-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px auto;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.config-trigger {
  background: transparent;
  border: none;
  color: var(--text-light-muted);
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.config-trigger:hover {
  color: var(--primary-amber);
}

/* Legal On-Page Section Styles */
.legal-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.legal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  height: 540px;
  display: flex;
  flex-direction: column;
}

.legal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

.legal-card-body {
  overflow-y: auto;
  padding-right: 12px;
  flex-grow: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-amber);
  margin: 18px 0 8px 0;
}

.legal-card-body p, .legal-card-body ul {
  margin-bottom: 12px;
}

.legal-card-body ul {
  padding-left: 20px;
}

/* Legal Modals & Pre-booking Fee Styling */
.legal-modal-container {
  max-width: 840px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 44px;
  text-align: left;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.legal-content .last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 24px 0 10px 0;
  color: var(--primary-amber);
}

.legal-content p, .legal-content ul {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 6px;
}

.prebooking-badge {
  background: #FFFDF8;
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.prebooking-badge-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.prebooking-badge-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-amber);
  margin-bottom: 4px;
}

.prebooking-badge-text p {
  font-size: 0.925rem;
  color: var(--text-main);
  margin: 0;
}

/* Mobile Navigation & Responsive Enhancements */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Widescreen & Tablet Responsive Adjustments */
@media (max-width: 1200px) {
  .why-grid, .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-widescreen-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content-left {
    padding-right: 0;
  }
  
  .hero-curated-tag {
    justify-content: center;
  }
  
  .hero-description-text, .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }

  .feature-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .feature-icon-item:nth-child(2)::after {
    display: none;
  }

  .host-box {
    grid-template-columns: 1fr !important;
  }

  .host-image-frame, .host-image {
    max-height: 400px;
    min-height: 320px !important;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* Smartphone Mobile Responsive Rules (max-width: 768px) */
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 110;
    margin-right: auto;
    padding: 6px;
  }

  .header .brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 105;
  }

  .footer-brand .brand-logo {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
  }

  .footer-brand p {
    margin-top: 8px;
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .header .brand-icon-svg {
    width: 28px;
    height: 28px;
  }

  .header .brand-title {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }

  .header .brand-subtext {
    display: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    z-index: 105;
  }

  .nav-actions .btn-sm {
    padding: 6px 12px;
    font-size: 0.725rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-radius: var(--radius-full);
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #FFFDF8;
    border-bottom: 2px solid var(--border-cream);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 100;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nav-links a.btn-nav {
    border-bottom: none;
    text-align: center;
    margin-top: 10px;
  }

  /* Uniform Reduced Gap below Header on Mobile */
  .hero-section {
    padding-top: 78px !important;
    padding-bottom: 40px !important;
  }

  .page-banner {
    padding-top: 78px !important;
    padding-bottom: 40px !important;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
    line-height: 1.4;
    text-align: center;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  }

  .hero-main-heading {
    font-size: 2.6rem;
    line-height: 1.12;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 24px !important;
  }

  .hero-image-frame img {
    height: 340px;
  }

  .hero-script-text {
    font-size: 3rem;
  }

  /* Experiences Grid Mobile 1-Column */
  .experiences-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .experience-card {
    width: 100%;
  }

  /* Horizontal Scrollable Trust Bar on Mobile */
  .trust-bar-section {
    padding: 16px 0;
  }

  .trust-grid {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 16px;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-grid-item {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* Section Padding */
  .section {
    padding: 50px 0;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .why-grid, .experiences-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }

  .feature-icons-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-icon-item::after {
    display: none !important;
  }

  /* Host Box Mobile */
  .host-box {
    grid-template-columns: 1fr !important;
  }

  .host-image-frame {
    min-height: 320px !important;
    height: 320px !important;
  }

  .host-image {
    min-height: 320px !important;
    height: 320px !important;
  }

  .host-content {
    padding: 32px 20px !important;
  }

  .host-name {
    font-size: 2rem !important;
  }

  /* Form & Table Mobile */
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .form-wrapper {
    padding: 32px 20px;
  }

  .pricing-table th, .pricing-table td {
    padding: 14px 14px;
    font-size: 0.85rem;
  }

  .pilot-benefits-box {
    padding: 28px 20px;
  }

  /* Legal Cards Mobile */
  .legal-cards-grid {
    grid-template-columns: 1fr;
  }

  .legal-card {
    height: auto;
    max-height: 480px;
    padding: 24px;
  }

  .legal-modal-container {
    padding: 28px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .brand-subtext {
    display: none;
  }

  .nav-actions .btn-text-full {
    display: none;
  }

  .nav-actions .btn-text-short {
    display: inline;
  }
}

.btn-text-short {
  display: none;
}
