@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #facc15;
  --primary-hover: #eab308;
  --background: #050505;
  --card: #101010;
  --secondary: #181818;
  --border: rgba(250,204,21,0.16);
  --muted: rgba(255,255,255,0.62);
  --foreground: #f1f1f9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-image {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(240px, 32vw);
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(250, 204, 21, 0.22));
}
.logo-fallback { display: none; align-items: center; gap: 10px; }
.logo.logo-fallback-visible .logo-fallback { display: flex; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #92400e);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; color: #050505;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
  transition: box-shadow 0.3s;
}
.logo:hover .logo-icon { box-shadow: 0 0 30px rgba(250, 204, 21, 0.5); }
.logo-text { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.logo-text span { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--primary); text-decoration-thickness: 3px; }
nav.main-nav { display: flex; gap: 32px; }
nav.main-nav a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
nav.main-nav a:hover, nav.main-nav a.active { color: #fff; }
.btn-book { background: var(--primary); color: #050505; border: none; padding: 8px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.2s, box-shadow 0.2s; box-shadow: 0 0 18px rgba(250, 204, 21, 0.3); }
.btn-book:hover { background: var(--primary-hover); box-shadow: 0 0 28px rgba(250, 204, 21, 0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(5, 5, 5, 0.97); border-bottom: 1px solid var(--border); padding: 20px 24px; flex-direction: column; gap: 16px; z-index: 99; }
.mobile-nav a { font-size: 16px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: #fff; }
.mobile-nav.open { display: flex; }

/* ===== LAYOUT ===== */
main { flex: 1; padding-top: 72px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #050505; box-shadow: 0 0 24px rgba(250, 204, 21, 0.35); }
.btn-primary:hover { background: var(--primary-hover); color: #050505; box-shadow: 0 0 36px rgba(250, 204, 21, 0.55); transform: translateY(-1px); }
.btn-outline { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-xl { padding: 20px 48px; font-size: 18px; height: 64px; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }
.btn-secondary { background: var(--secondary); color: #fff; border: 1px solid var(--border); }
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; mix-blend-mode: screen; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.85) 60%, rgba(5, 5, 5, 1) 100%); }
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  gap: 40px;
  align-items: start;
  padding: 88px 0 80px;
}
.hero-content { position: relative; z-index: 10; text-align: left; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(250, 204, 21, 0.1); border: 1px solid rgba(250, 204, 21, 0.2); color: #fef3c7; font-size: 14px; font-weight: 500; margin-bottom: 32px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1);} 50%{opacity:0.6; transform:scale(1.2);} }

h1.hero-title { font-size: clamp(34px, 4.8vw, 62px); font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 24px; letter-spacing: -1.5px; }
.hero-title-line { display: block; }
.text-gradient { background: linear-gradient(135deg, #fde68a, #fbbf24, #facc15); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-copy-block { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: 900px; margin: 0 auto 40px; }
.hero-copy-block-left { align-items: flex-start; max-width: 760px; margin: 0 0 40px; }
.hero-desc { font-size: clamp(18px, 1.6vw, 20px); color: rgba(255,255,255,0.78); margin: 0; line-height: 1.7; max-width: 820px; }
.hero-desc-wide { max-width: none; white-space: nowrap; font-size: clamp(15px, 1.28vw, 18px); }
.hero-subline { font-size: clamp(20px, 2.6vw, 28px); line-height: 1.35; font-weight: 700; color: #fff; white-space: nowrap; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions-center { justify-content: center; }
.hero-actions-left { justify-content: flex-start; }
.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 48px 0 0;
}
.hero-summary-item {
  padding: 20px 22px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.hero-summary-item strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
  color: #fff;
}
.hero-summary-item span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}
.hero-media { position: relative; align-self: start; margin-top: 12px; }
.hero-visual {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 32px 90px rgba(0,0,0,0.35);
}
.hero-visual img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.2);
  color: #fcd34d;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== CARDS ===== */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color 0.3s; }
.card:hover { border-color: rgba(250, 204, 21, 0.3); }
.card-body { padding: 40px; }
.card-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.card-icon { width: 56px; height: 56px; border-radius: 8px; background: rgba(250, 204, 21, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
h2.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-desc { color: var(--muted); font-size: 17px; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.packages-header { max-width: none; margin-left: auto; margin-right: auto; }
.packages-title,
.packages-desc { white-space: nowrap; }
.packages-desc { max-width: none; }
.help-desc { max-width: none; white-space: nowrap; }

/* ===== GRID ===== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-2-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.packages-grid { max-width: 980px; margin: 0 auto; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.blob { position: absolute; width: 384px; height: 384px; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.blob-right { top: -160px; right: -160px; background: rgba(250, 204, 21, 0.2); }
.blob-left { bottom: -160px; left: -160px; background: rgba(245, 158, 11, 0.15); }
.how-inner { display: flex; gap: 64px; align-items: center; position: relative; z-index: 10; }
.how-left { flex: 1; }
.how-right { flex: 1; }
.how-lead { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 0; }
.how-email-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.how-email-note strong { color: #fff; }
.how-visual {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.how-right img { width: 100%; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.how-caption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.steps { display: flex; flex-direction: column; gap: 32px; margin-top: 32px; }
.step { display: flex; gap: 20px; }
.step-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--secondary); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--primary); font-size: 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.step-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.step-desc { color: var(--muted); font-size: 15px; line-height: 1.5; }
.service-grid { gap: 20px; }
.service-card {
  background: rgba(255,255,255,0.025);
}
.service-card .card-body {
  min-height: 220px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card .card-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  margin: 0 0 28px;
}
.service-card .card-icon svg {
  width: 38px;
  height: 38px;
}
.service-title {
  max-width: 260px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 128px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-section::before {
  top: -160px;
  right: -120px;
  background: rgba(250, 204, 21, 0.18);
}
.cta-section::after {
  bottom: -180px;
  left: -120px;
  background: rgba(245, 158, 11, 0.14);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 24px; }
.cta-section p { font-size: 20px; color: var(--muted); margin-bottom: 48px; }

/* ===== PACKAGES ===== */
.pkg-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.pkg-popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #fde047, #f59e0b); color: #050505; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.pkg-card.popular { border-color: rgba(250, 204, 21, 0.5); box-shadow: 0 32px 80px rgba(250, 204, 21, 0.1); }
.pkg-header { padding: 40px 40px 24px; text-align: center; }
.pkg-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fcd34d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pkg-icon { width: 64px; height: 64px; background: var(--secondary); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.pkg-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.pkg-price { font-size: 56px; font-weight: 800; letter-spacing: -2px; margin-bottom: 16px; }
.pkg-desc { color: var(--muted); font-size: 15px; line-height: 1.6; min-height: 64px; display: flex; align-items: center; }
.pkg-features { padding: 24px 40px; border-top: 1px solid var(--border); flex: 1; }
.pkg-features ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; }
.check-icon { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.pkg-footer { padding: 24px 40px 40px; }

/* ===== BOOK FORM ===== */
.book-page { padding: 48px 24px; }
.progress-wrap { max-width: 720px; margin: 0 auto 40px; }
.progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.progress-title { font-size: 24px; font-weight: 800; }
.progress-count { font-size: 14px; color: var(--muted); font-weight: 500; }
.progress-bar { height: 6px; background: var(--secondary); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #fde047, #f59e0b); border-radius: 999px; transition: width 0.5s cubic-bezier(0.4,0,0.2,1); }
.form-card { max-width: 720px; margin: 0 auto; background: rgba(10,10,10,0.94); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.form-body { padding: 40px 48px; }
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-heading { margin-bottom: 32px; }
.step-heading h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.step-heading p { font-size: 14px; color: var(--muted); }
.field-group { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 18px; font-size: 14px; color: var(--foreground);
  font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(250, 204, 21, 0.6); box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12); }
.field input.error, .field select.error, .field textarea.error { border-color: #ef4444; }
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field-error { font-size: 12px; color: #ef4444; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cb-item { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 8px; border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; background: rgba(255,255,255,0.02); user-select: none; }
.cb-item:hover { border-color: rgba(255,255,255,0.2); }
.cb-item.checked { border-color: var(--primary); background: rgba(250, 204, 21, 0.1); }
.cb-box { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.cb-item.checked .cb-box { background: var(--primary); border-color: var(--primary); }
.cb-label { font-size: 14px; }
.form-nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 48px 40px; border-top: 1px solid var(--border); }
.btn-back { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer; padding: 10px 16px; border-radius: 8px; transition: color 0.2s; font-family: inherit; }
.btn-back:hover { color: #fff; }
.btn-back.hidden { visibility: hidden; }
.btn-next, .btn-submit { background: var(--primary); color: #050505; border: none; padding: 12px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 0 20px rgba(250, 204, 21, 0.35); transition: all 0.2s; font-family: inherit; }
.btn-next:hover, .btn-submit:hover { background: var(--primary-hover); color: #050505; box-shadow: 0 0 30px rgba(250, 204, 21, 0.55); transform: translateY(-1px); }
.btn-submit { box-shadow: 0 0 28px rgba(250, 204, 21, 0.4); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ===== SUCCESS PAGE ===== */
.success-wrap,
.success-modal-wrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 72px); padding: 64px 24px; }
.success-modal-wrap {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 1));
}
.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(14px);
}
.success-card { max-width: 500px; width: 100%; text-align: center; background: var(--card); border: 1px solid rgba(250, 204, 21, 0.25); border-radius: 8px; padding: 64px 48px; box-shadow: 0 32px 80px rgba(0,0,0,0.4); }
.success-card-modal {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 56px 48px 48px;
  border-color: rgba(250, 204, 21, 0.35);
  box-shadow: 0 40px 120px rgba(0,0,0,0.52);
}
.success-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.24);
  color: #fcd34d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.success-icon { width: 80px; height: 80px; background: rgba(250, 204, 21, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; color: var(--primary); }
.success-card h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.success-card p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 40px; }
.success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.service-footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.service-footer-top p { font-size: 14px; color: var(--muted); max-width: 420px; line-height: 1.7; }
.footer-logo { display: inline-flex; }
.footer-logo-image { height: 52px; max-width: 260px; }
.service-footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.service-footer-col { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.service-footer-col h5 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.service-footer-links, .service-footer-contact, .service-footer-actions { display: flex; flex-direction: column; gap: 12px; }
.service-footer-links a { color: var(--muted); transition: color 0.2s; }
.service-footer-links a:hover { color: #fff; }
.service-footer-contact { color: var(--muted); line-height: 1.7; }
.service-footer-actions .btn { justify-content: center; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 14px; color: var(--muted); }
.footer-bottom a { font-size: 14px; color: var(--primary); transition: color 0.2s; }
.footer-bottom a:hover { color: #fbbf24; }
.footer-links-bottom { gap: 20px; }

/* ===== ICON SVG ===== */
.icon { width: 24px; height: 24px; display: inline-block; flex-shrink: 0; }
.icon-primary { color: var(--primary); }

/* ===== ANIMATIONS ===== */
.fade-in { animation: fadeIn 0.6s ease forwards; }
.fade-up { animation: fadeUp 0.6s ease forwards; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes fadeUp { from{opacity:0; transform:translateY(20px);} to{opacity:1; transform:translateY(0);} }

/* ===== ALERT ===== */
.alert { padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 20px; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.alert-success { background: rgba(250, 204, 21, 0.1); border: 1px solid rgba(250, 204, 21, 0.3); color: #fde68a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-summary { grid-template-columns: 1fr; }
  .how-inner { flex-direction: column; }
  .how-right { width: 100%; }
  .packages-title,
  .packages-desc,
  .help-desc,
  .hero-desc-wide,
  .hero-subline { white-space: normal; }
}
@media (max-width: 768px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-book { display: none; }
  .logo-image { height: 38px; max-width: 210px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 64px 0 56px; }
  .hero-content { text-align: center; }
  .hero-copy-block-left { align-items: center; margin: 0 auto 40px; }
  .hero-media { margin-top: 0; }
  .hero-summary { margin-top: 36px; }
  .hero-summary-item { text-align: center; }
  .service-footer-top { flex-direction: column; align-items: center; text-align: center; }
  .service-footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions,
  .hero-actions-left { flex-direction: column; align-items: center; justify-content: center; }
  .form-body { padding: 32px 24px; }
  .form-nav { padding: 20px 24px 32px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .pkg-header, .pkg-features, .pkg-footer { padding-left: 28px; padding-right: 28px; }
  .success-card { padding: 48px 28px; }
  .success-actions { flex-direction: column; }
  .success-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .progress-wrap, .form-card { margin-left: -4px; margin-right: -4px; }
}
