/* ─── CSS RESET & VARIABLES ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #6C63FF;
  --primary-dark: #5a52e0;
  --accent: #00D4AA;
  --accent2: #FF6B6B;
  --bg: #05050F;
  --bg2: #0D0D1F;
  --bg3: #12122B;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-focus: rgba(108, 99, 255, 0.6);
  --text: #F0F0FA;
  --text-muted: rgba(240, 240, 250, 0.55);
  --text-subtle: rgba(240, 240, 250, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  --font: 'Outfit', sans-serif;
  --font2: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ─── UTILITY ─── */
.gradient-text {
  background: linear-gradient(135deg, #6C63FF 0%, #00D4AA 50%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(5, 5, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

.logo-icon.small {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.logo-tag {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font2);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  left: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 50%;
  right: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent2);
  bottom: 0;
  left: 40%;
  animation-delay: -5s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 99, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 99, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(180, 175, 255, 1);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: var(--font2);
  font-weight: 400;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.dest-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.flag-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}

.flag-chip:hover {
  background: var(--surface-hover);
  border-color: rgba(108, 99, 255, 0.4);
  transform: translateY(-2px);
}

.flag-chip img {
  width: 22px;
  height: auto;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dest-flag img {
  width: 64px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #8B80FF 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 40px rgba(108, 99, 255, 0.45);
  margin-bottom: 48px;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 60px rgba(108, 99, 255, 0.6);
}

.hero-btn svg {
  transition: transform 0.25s;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font2);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── FORM CARD ─── */
.form-card {
  flex: 0 0 430px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(108, 99, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2));
}

.form-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}

.form-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: var(--font2);
  line-height: 1.5;
}

/* ─── FORM ELEMENTS ─── */
.form-group {
  margin-bottom: 18px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(240, 240, 250, 0.8);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 13px 14px 13px 44px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.input-wrap input::placeholder {
  color: var(--text-subtle);
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--primary);
  background: rgba(108, 99, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.input-wrap input.error,
.input-wrap select.error {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.select-wrap select {
  padding-right: 44px;
  cursor: pointer;
}

.select-wrap select option {
  background: #1a1a35;
  color: var(--text);
}

.select-arrow {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.error-msg {
  display: none;
  font-size: 12px;
  color: #FF6B6B;
  margin-top: 6px;
  padding-left: 2px;
  font-family: var(--font2);
}

.error-msg.show {
  display: block;
}

/* ─── SUBMIT BUTTON ─── */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #8B80FF 100%);
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: white;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.3px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 6px 30px rgba(108, 99, 255, 0.4);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15));
  opacity: 0;
  transition: opacity 0.2s;
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.55);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 14px;
  font-family: var(--font2);
}

/* ─── SUCCESS STATE ─── */
.success-state {
  text-align: center;
  padding: 24px 0;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  font-size: 56px;
  margin-bottom: 20px;
  animation: bounceIn 0.5s ease;
}

.success-state h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-state p {
  color: var(--text-muted);
  font-family: var(--font2);
  line-height: 1.6;
}

.success-badge {
  display: inline-block;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.trust-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 15px;
  font-weight: 700;
}

.trust-text span {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font2);
}

/* ─── SECTIONS ─── */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font2);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 550px;
  font-family: var(--font2);
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── STEPS ─── */
.steps-section {
  padding: 100px 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.step-card:hover::after {
  opacity: 1;
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(108, 99, 255, 0.15);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font);
  letter-spacing: -2px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font2);
  line-height: 1.6;
}

/* ─── DESTINATIONS ─── */
.destinations-section {
  padding: 0 24px 100px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dest-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.dest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 99, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.dest-flag {
  font-size: 48px;
  flex-shrink: 0;
  line-height: 1;
}

.dest-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dest-info p {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dest-chips span {
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(180, 175, 255, 1);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 0 24px 100px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.testi-featured {
  background: linear-gradient(145deg, rgba(108, 99, 255, 0.12) 0%, rgba(0, 212, 170, 0.06) 100%);
  border-color: rgba(108, 99, 255, 0.3);
  box-shadow: 0 8px 40px rgba(108, 99, 255, 0.15);
}

.testi-stars {
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font2);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-featured p {
  color: rgba(240, 240, 250, 0.75);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author div {
  display: flex;
  flex-direction: column;
}

.testi-author strong {
  font-size: 14px;
  font-weight: 700;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font2);
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15) 0%, rgba(0, 212, 170, 0.08) 100%);
  border-top: 1px solid rgba(108, 99, 255, 0.2);
  border-bottom: 1px solid rgba(108, 99, 255, 0.2);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(108, 99, 255, 0.25);
  top: -150px;
  left: -100px;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 170, 0.2);
  bottom: -100px;
  right: -50px;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  color: var(--text-muted);
  font-family: var(--font2);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #8B80FF 100%);
  color: white;
  padding: 18px 44px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 40px rgba(108, 99, 255, 0.5);
  margin-bottom: 20px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(108, 99, 255, 0.65);
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font2);
}

/* ─── FOOTER ─── */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-subtle);
  font-family: var(--font2);
}

/* ─── SCROLL ANIMATION ─── */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    padding-top: 120px;
    align-items: stretch;
  }

  .form-card {
    flex: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .dest-card {
    flex-direction: column;
  }

  .dest-flag {
    font-size: 36px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .hero-btn {
    padding: 15px 28px;
    font-size: 15px;
  }
}