/* ==========================================================================
   The Leo's Voyage — Page Specific Styles (Homepage & Key Sections)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
  background-color: var(--color-brand-teal-dark);
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.85);
  transform: scale(1.03);
  animation: heroSubtleZoom 20s infinite alternate ease-in-out;
}

@keyframes heroSubtleZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 43, 44, 0.92) 0%,
    rgba(4, 65, 66, 0.75) 45%,
    rgba(20, 34, 34, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hero-eyebrow {
  color: var(--color-brand-gold);
}

.hero-title {
  color: var(--color-white);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: var(--fluid-subheading);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  max-width: 620px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-badge-strip {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-brand-gold);
}

/* --------------------------------------------------------------------------
   Ticketing Interactive Section
   -------------------------------------------------------------------------- */
.ticketing-section {
  background-color: var(--color-brand-teal);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.ticketing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 175, 92, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ticketing-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--space-3xl);
  align-items: center;
}

.ticketing-info h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.ticketing-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fluid-subheading);
  margin-bottom: var(--space-xl);
}

.ticketing-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.ticketing-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
}

.ticketing-check-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand-gold);
  flex-shrink: 0;
}

/* Flight Form Card */
.flight-form-card {
  background-color: var(--color-white);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(213, 175, 92, 0.3);
}

.flight-form-card h3 {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  color: var(--color-brand-teal);
  margin-bottom: var(--space-xs);
}

.flight-form-card p.form-sub {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.flight-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

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

.form-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-ink-light);
}

.form-input,
.form-select {
  width: 100%;
  min-height: 54px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  font-size: var(--font-size-sm);
  color: var(--color-ink);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

textarea.form-input { min-height: 132px; padding-top: 0.9rem; resize: vertical; }
.form-select { appearance: auto; }
.form-error { color: #8b3b32; font-size: var(--font-size-xs); line-height: 1.4; margin-top: 2px; }
.has-error .form-input, .has-error .form-select { border-color: #a84d42; background-color: #fffaf8; }

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-brand-teal);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px var(--color-brand-teal-subtle);
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-xs);
  color: var(--color-muted);
  cursor: pointer;
  margin-top: 4px;
}

.form-checkbox-label input {
  accent-color: var(--color-brand-teal);
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   How It Works / Traveller Process
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-brand-gold);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.process-title {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.process-desc {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta-section {
  position: relative;
  background-color: var(--color-brand-teal-dark);
  color: var(--color-white);
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: 1;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 43, 44, 0.85) 0%,
    rgba(4, 65, 66, 0.9) 100%
  );
  z-index: 2;
}

.final-cta-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.final-cta-desc {
  font-size: var(--fluid-subheading);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Pricing Disclaimer Notice
   -------------------------------------------------------------------------- */
.pricing-disclaimer-box {
  margin-top: var(--space-2xl);
  padding: var(--space-md) var(--space-lg);
  background-color: rgba(4, 65, 66, 0.03);
  border-left: 3px solid var(--color-brand-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pricing-disclaimer-text {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
  line-height: 1.5;
  font-style: italic;
}
