@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --bg-sand: #F5ECD7;
  --bg-cream: #FAF6EE;
  --text-espresso: #1C0F05;
  --text-muted: rgba(28, 15, 5, 0.75);
  --accent-terracotta: #E8622A;
  --accent-terracotta-hover: #C84E1B;
  --accent-sand-light: #FFFBF4;
  
  --border-width: 2px;
  --border-color: #1C0F05;
  --border-style: solid;
  --border-main: var(--border-width) var(--border-style) var(--border-color);
  
  --shadow-flat: 4px 4px 0px #1C0F05;
  --shadow-flat-hover: 6px 6px 0px #1C0F05;
  --shadow-flat-sm: 2px 2px 0px #1C0F05;
  
  --font-heading: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE STYLES & TEXTURE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-sand);
  color: var(--text-espresso);
  font-family: var(--font-body);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Tactile paper texture overlay */
.paper-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-espresso);
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

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

/* --- CONTAINER & BUTTONS --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border: var(--border-main);
  background-color: var(--accent-terracotta);
  color: var(--bg-cream);
  cursor: pointer;
  box-shadow: var(--shadow-flat);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  border-radius: 4px;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-flat-hover);
  background-color: var(--accent-terracotta-hover);
  color: var(--bg-cream);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-flat-sm);
}

.btn-secondary {
  background-color: var(--bg-cream);
  color: var(--text-espresso);
}

.btn-secondary:hover {
  background-color: var(--bg-sand);
  color: var(--text-espresso);
}

/* --- HEADER / NAVIGATION --- */
.header {
  border-bottom: var(--border-main);
  background-color: var(--bg-sand);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.logo svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-terracotta);
  stroke: var(--text-espresso);
  stroke-width: 1.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-terracotta);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-terracotta);
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 30px;
  height: 30px;
  stroke: var(--text-espresso);
  stroke-width: 2;
}

/* --- HERO SECTION --- */
.hero {
  padding: 4.5rem 0 5rem 0;
  border-bottom: var(--border-main);
  background: radial-gradient(circle at 80% 20%, rgba(232, 98, 42, 0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--bg-cream);
  padding: 4px 12px;
  border: var(--border-main);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-flat-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* --- CYCLING DESTINATION TEXT STYLES --- */
.cycler-container {
  display: inline-block;
  vertical-align: top;
  height: 1.15em;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--accent-terracotta);
  padding-right: 4px;
}

.cycler-list {
  display: block;
  animation: cycle-destinations 12s infinite cubic-bezier(0.76, 0, 0.24, 1);
}

.cycler-item {
  display: block;
  height: 1.15em;
  color: var(--accent-terracotta);
  white-space: nowrap;
}

@keyframes cycle-destinations {
  0%, 15% { transform: translateY(0); }
  20%, 35% { transform: translateY(-16.666%); }
  40%, 55% { transform: translateY(-33.333%); }
  60%, 75% { transform: translateY(-50%); }
  80%, 95% { transform: translateY(-66.666%); }
  100% { transform: translateY(-83.333%); }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

/* --- HERO FORM --- */
.hero-form-container {
  width: 100%;
  background: var(--bg-cream);
  border: var(--border-main);
  box-shadow: var(--shadow-flat);
  border-radius: 8px;
  padding: 1.5rem;
}

.hero-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

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

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.form-group select,
.form-group input {
  padding: 0.8rem;
  border: var(--border-main);
  background-color: var(--bg-sand);
  color: var(--text-espresso);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-group select:focus,
.form-group input:focus {
  background-color: var(--accent-sand-light);
  border-color: var(--accent-terracotta);
}

.hero-form .btn {
  height: 48px;
  padding: 0 1.8rem;
}

/* Slider values wrapper */
.slider-container {
  display: flex;
  flex-direction: column;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.slider-header label {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
}

.slider-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

.budget-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: var(--bg-sand);
  border: 1.5px solid var(--text-espresso);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  border: 2px solid var(--text-espresso);
  cursor: pointer;
  box-shadow: 1px 1px 0px #1C0F05;
  transition: transform var(--transition-fast);
}

.budget-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* --- LIVE ITINERARY PREVIEW --- */
.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.preview-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-cream);
  border: var(--border-main);
  box-shadow: var(--shadow-flat);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-medium);
}

.preview-card:hover {
  transform: translateY(-4px);
}

.preview-header {
  background: var(--text-espresso);
  color: var(--bg-cream);
  padding: 1.25rem;
  border-bottom: var(--border-main);
  position: relative;
}

.preview-badge {
  background: var(--accent-terracotta);
  color: var(--bg-cream);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid var(--bg-cream);
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  text-transform: uppercase;
}

.preview-header h3 {
  color: var(--bg-cream);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.preview-header p {
  color: rgba(250, 246, 238, 0.75);
  font-size: 0.85rem;
  display: flex;
  gap: 12px;
}

.preview-summary {
  display: flex;
  border-bottom: var(--border-main);
  background: var(--accent-sand-light);
}

.summary-item {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  border-right: var(--border-main);
}

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

.summary-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--text-muted);
}

.summary-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-espresso);
}

.preview-days {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 340px;
  overflow-y: auto;
}

.day-block {
  border-left: 2px dashed var(--accent-terracotta);
  padding-left: 1rem;
  position: relative;
}

.day-block::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--accent-terracotta);
  border: 2.5px solid var(--bg-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px var(--text-espresso);
}

.day-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day-tagline {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--accent-terracotta);
  background: rgba(232, 98, 42, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
}

.day-activities {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity {
  font-size: 0.85rem;
  color: var(--text-espresso);
  background: var(--accent-sand-light);
  padding: 6px 10px;
  border: 1px solid rgba(28, 15, 5, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-icon {
  font-size: 1rem;
}

.activity-details {
  display: flex;
  flex-direction: column;
}

.activity-title {
  font-weight: 700;
}

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

/* Loading/Simulation Overlays */
.preview-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 236, 215, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  padding: 2rem;
  text-align: center;
}

.preview-loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.loading-compass {
  width: 60px;
  height: 60px;
  fill: var(--accent-terracotta);
  stroke: var(--text-espresso);
  stroke-width: 1.5;
  animation: rotate-compass 1.5s infinite linear;
  margin-bottom: 1.5rem;
}

@keyframes rotate-compass {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loading-status {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.loading-log {
  font-size: 0.85rem;
  color: var(--accent-terracotta);
  font-family: monospace;
  height: 1.2rem;
  overflow: hidden;
}

/* --- PROBLEM BLOCK --- */
.problems {
  padding: 6rem 0;
  border-bottom: var(--border-main);
  background-color: var(--bg-cream);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--accent-terracotta);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

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

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.problem-card {
  background: var(--bg-sand);
  border: var(--border-main);
  box-shadow: var(--shadow-flat);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.problem-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-flat-hover);
}

.problem-icon {
  background: var(--text-espresso);
  color: var(--bg-sand);
  font-size: 1.5rem;
  padding: 0.6rem;
  border-radius: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-espresso);
}

.problem-content h4 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.problem-content p {
  font-size: 0.95rem;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  padding: 6rem 0;
  border-bottom: var(--border-main);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(232, 98, 42, 0.2);
  margin-bottom: 0.5rem;
  position: relative;
}

.step-number::after {
  content: attr(data-num);
  position: absolute;
  left: 2px;
  top: 2px;
  color: var(--accent-terracotta);
  font-weight: 900;
}

.step-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.95rem;
}

/* Dotted connection line between steps (desktop only) */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 100%;
  width: calc(100% - 2rem);
  height: 2px;
  border-top: 2px dashed rgba(28, 15, 5, 0.25);
  transform: translateX(1rem);
  z-index: 1;
}

/* --- FEATURE HIGHLIGHTS --- */
.features {
  padding: 6rem 0;
  border-bottom: var(--border-main);
  background-color: var(--bg-cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-sand);
  border: var(--border-main);
  box-shadow: var(--shadow-flat);
  padding: 1.75rem;
  border-radius: 8px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-flat-hover);
}

.feature-header {
  margin-bottom: 1.5rem;
}

.feature-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--text-espresso);
  color: var(--bg-sand);
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-icon-big {
  font-size: 2.5rem;
  align-self: flex-end;
  margin-top: 1.5rem;
  line-height: 1;
}

/* --- POPULAR DESTINATIONS --- */
.destinations {
  padding: 6rem 0;
  border-bottom: var(--border-main);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dest-card {
  background: var(--bg-cream);
  border: var(--border-main);
  box-shadow: var(--shadow-flat);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.dest-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-flat-hover);
}

/* Beautiful pure CSS Gradient representation of locations */
.dest-image-placeholder {
  height: 200px;
  position: relative;
  border-bottom: var(--border-main);
  overflow: hidden;
  transition: transform var(--transition-medium);
}

.dest-card:hover .dest-image-placeholder {
  /* Subtle scale/parallax simulation */
  transform: scale(1.02);
}

/* Gradients for destinations */
.grad-spiti {
  background: linear-gradient(180deg, #1b3547 0%, #3a6073 40%, #7aa1d2 75%, #F5ECD7 100%);
}
.grad-hampi {
  background: linear-gradient(180deg, #A53C14 0%, #D45B34 35%, #F3A152 70%, #FAF6EE 100%);
}
.grad-coorg {
  background: linear-gradient(180deg, #0f2b1d 0%, #1c3f24 35%, #5c8052 75%, #FAF6EE 100%);
}
.grad-pondicherry {
  background: linear-gradient(180deg, #b06ab3 0%, #e2858b 40%, #f7d08a 75%, #a8e6cf 100%);
}
.grad-mcleodganj {
  background: linear-gradient(180deg, #1e272c 0%, #34495e 40%, #95a5a6 75%, #eb3b5a 100%);
}
.grad-kasol {
  background: linear-gradient(180deg, #093028 0%, #237a57 45%, #a8ff78 85%, #FAF6EE 100%);
}

.dest-art-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-cream) 0%, transparent 100%);
  pointer-events: none;
}

/* Minimal sun graphic inside CSS image overlay */
.dest-sun {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--text-espresso);
  bottom: 20px;
  right: 20px;
  background-color: rgba(250, 246, 238, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dest-sun::after {
  content: '';
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-terracotta);
  border: 1.5px solid var(--text-espresso);
}

.dest-content {
  padding: 1.5rem;
  background: var(--bg-cream);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dest-content h4 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.dest-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.dest-price-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px dashed rgba(28, 15, 5, 0.2);
  padding-top: 1rem;
}

.dest-price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dest-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-terracotta);
}

/* --- SOCIAL PROOF (TESTIMONIALS) --- */
.testimonials {
  padding: 6rem 0;
  border-bottom: var(--border-main);
  background-color: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.test-card {
  background: var(--bg-sand);
  border: var(--border-main);
  box-shadow: var(--shadow-flat);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition-fast);
}

.test-card:hover {
  transform: translateY(-4px);
}

.test-card::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(232, 98, 42, 0.15);
  position: absolute;
  top: 0rem;
  left: 1rem;
  line-height: 1;
}

.test-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-espresso);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.test-author {
  display: flex;
  flex-direction: column;
  border-top: 1.5px solid rgba(28, 15, 5, 0.15);
  padding-top: 1rem;
}

.test-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.test-meta {
  font-size: 0.8rem;
  color: var(--accent-terracotta);
  font-weight: 500;
}

/* --- WAITLIST CTA --- */
.waitlist {
  padding: 7rem 0;
  background-color: var(--accent-terracotta);
  color: var(--bg-cream);
  border-bottom: var(--border-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Sun ray vector representation with css */
.waitlist::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 251, 244, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.waitlist-container {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.waitlist-tag {
  background: rgba(250, 246, 238, 0.15);
  border: 1px solid var(--bg-cream);
  color: var(--bg-cream);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.waitlist h2 {
  color: var(--bg-cream);
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.waitlist p {
  color: rgba(250, 246, 238, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.waitlist-form {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  background: var(--bg-cream);
  padding: 6px;
  border: var(--border-main);
  box-shadow: 4px 4px 0px var(--text-espresso);
  border-radius: 6px;
}

.waitlist-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-espresso);
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(28, 15, 5, 0.4);
}

.waitlist-form .btn {
  box-shadow: none;
  border: none;
  background: var(--accent-terracotta);
  color: var(--bg-cream);
}

.waitlist-form .btn:hover {
  background: var(--text-espresso);
  color: var(--bg-cream);
  transform: none;
}

.waitlist-toast {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-sand);
  display: none;
}

/* --- FOOTER --- */
.footer {
  padding: 4rem 0;
  background: var(--bg-sand);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  border-bottom: 1.5px solid rgba(28, 15, 5, 0.15);
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-terracotta);
  stroke: var(--text-espresso);
  stroke-width: 1.5px;
}

.footer-tagline {
  font-size: 0.9rem;
}

.footer-links-group {
  display: flex;
  gap: 4rem;
}

.footer-col h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  color: var(--text-espresso);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-terracotta);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  transition: color var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--accent-terracotta);
}

/* --- RESPONSIVE BREAKPOINTS (Mobile First) --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links, .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-sand);
    border-bottom: var(--border-main);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    z-index: 99;
  }

  /* Hero */
  .hero {
    padding: 3rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .hero-form .btn {
    width: 100%;
  }

  .preview-card {
    margin: 0 auto;
  }
  
  /* Sections */
  .section-title {
    font-size: 2.2rem;
  }
  
  .problems-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .step-card:not(:last-child)::after {
    display: none;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .footer-links-group {
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .waitlist-form {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .waitlist-form input {
    background: var(--bg-cream);
    border: var(--border-main);
    box-shadow: 4px 4px 0px var(--text-espresso);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    width: 100%;
  }
  .waitlist-form .btn {
    width: 100%;
    border: var(--border-main);
    box-shadow: 4px 4px 0px var(--text-espresso);
  }
}
