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

:root {
  --bg: #22282f;
  --bg2: #2a3138;
  --bg3: #1c2128;
  --green: #5e6153;
  --green-lt: #525549;
  --gold: #c8a96e;
  --gold-lt: #e0c48a;
  --text: #e8ecf0;
  --muted: #7a8a96;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(34, 40, 47, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span {
  color: var(--text);
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-back:hover {
  color: var(--text);
}
.nav-back svg {
  width: 16px;
  height: 16px;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 48px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(61, 83, 122, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 20px;
}
.hero-pre::before,
.hero-pre::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green-lt);
  opacity: 0.5;
}

.hero h1 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ── STEPS ── */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 48px 48px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.step.active {
  color: var(--text);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.step.active .step-num {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.step.done .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.step-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
}

/* ── LAYOUT ── */
.booking-layout {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ── CARDS ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(200, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-header h2 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.card-header p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

.card-body {
  padding: 28px 32px;
}

/* ── SIM SELECTOR ── */
.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.sim-card {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
}
.sim-card:hover {
  border-color: var(--green);
}
.sim-card.selected {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.1);
}
.sim-card.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  display: grid;
  place-items: center;
}

.sim-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.sim-badge.indoor {
  color: var(--gold);
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.25);
}

.sim-card h3 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.sim-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── PACKAGE SELECTOR ── */
.package-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pkg {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
}
.pkg:hover {
  border-color: var(--green);
}
.pkg.selected {
  border-color: var(--green);
  background: rgba(254, 255, 254, 0.08);
}
.pkg.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}

.pkg-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: border-color 0.2s;
}
.pkg.selected .pkg-radio {
  border-color: var(--green);
}
.pkg.selected .pkg-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.pkg-info {
  flex: 1;
}
.pkg-info h4 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.pkg-info p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.pkg-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.pkg-tag {
  font-size: 0.7rem;
  color: var(--green-lt);
  background: var(--gold);
  border-radius: 4px;
  padding: 2px 7px;
}

.pkg-price {
  text-align: right;
  flex-shrink: 0;
}
.pkg-price strong {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  display: block;
}
.pkg-price span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── CALENDLY PLACEHOLDER ── */
.calendly-placeholder {
  background: var(--bg3);
  border: 2px dashed var(--green-lt);
  border-radius: 10px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 32px;
}
.calendly-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--green-lt);
  opacity: 0.5;
}
.calendly-placeholder strong {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.calendly-placeholder code {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--green-lt);
  font-family: monospace;
}

/* ── DIVIDER ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 20px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── SIDEBAR ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ORDER SUMMARY */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.summary-row:last-of-type {
  border-bottom: none;
}
.summary-row .label {
  color: var(--muted);
}
.summary-row .value {
  font-weight: 600;
  text-align: right;
}
.summary-row.total {
  padding-top: 16px;
}
.summary-row.total .label {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.summary-row.total .value {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
}

.summary-placeholder {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
  padding: 12px 0;
}

/* STRIPE PLACEHOLDER */
.stripe-placeholder {
  background: var(--bg3);
  border: 2px dashed rgba(200, 169, 110, 0.35);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.stripe-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--gold-lt);
  opacity: 0.6;
  margin-bottom: 8px;
}
.stripe-placeholder p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.stripe-placeholder strong {
  display: block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 4px;
}
.stripe-placeholder code {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 3px 8px;
  color: var(--gold-lt);
  font-family: monospace;
  display: inline-block;
  margin-top: 8px;
}

/* TRUST BADGES */
.trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-lt);
  flex-shrink: 0;
}

/* CONTACT INFO */
.contact-strip {
  text-align: center;
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}
.contact-strip a {
  color: var(--green-lt);
  text-decoration: none;
}
.contact-strip a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}
footer a {
  color: var(--muted);
  text-decoration: none;
}
footer a:hover {
  color: var(--text);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero,
.steps-bar,
.booking-layout {
  animation: fadeUp 0.55s ease both;
}
.steps-bar {
  animation-delay: 0.08s;
}
.booking-layout {
  animation-delay: 0.14s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .hero {
    padding: 56px 24px 40px;
  }
  .steps-bar {
    padding: 0 24px 36px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .step-divider {
    width: 20px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
  }
  .sim-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .card-body {
    padding: 20px;
  }
  .card-header {
    padding: 20px;
  }
}

/* ── CALENDAR WIDGET ── */
.cal-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-month-nav button {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.cal-month-nav button:hover {
  border-color: var(--green);
  background: rgba(61, 122, 85, 0.1);
}
.cal-month-nav h3 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 8px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  border: 1.5px solid transparent;
  user-select: none;
  position: relative;
}
.cal-day:hover:not(.cal-empty):not(.cal-past):not(.cal-unavail) {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-lt);
}
.cal-day.cal-today {
  color: var(--gold);
  font-weight: 700;
}
.cal-day.cal-empty,
.cal-day.cal-past {
  color: rgba(255, 255, 255, 0.15);
  cursor: default;
}
.cal-day.cal-unavail {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.cal-selected {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-color: var(--green-lt);
}
.cal-day.cal-has-slots::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-lt);
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.cal-section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.time-slot {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  color: var(--text);
}
.time-slot:hover {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.1);
}
.time-slot.selected {
  background: var(--green);
  border-color: var(--green-lt);
  color: #fff;
  font-weight: 600;
}
.time-slot.unavail {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  border-color: transparent;
}
.cal-confirm-banner {
  background: var(--gold);
  border: 1.5px solid var(--gold-lt);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}
.cal-confirm-banner .ci {
  color: var(--green-lt);
  flex-shrink: 0;
}
.cal-confirm-banner strong {
  color: var(--green-lt);
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cal-confirm-banner.hidden {
  display: none;
}

.buy {
    margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.buy:hover { background: var(--green-lt); }
.buy:active { transform: scale(.98); }
.buy:disabled,
.buy.disabled {
  background: var(--bg3);
  color: var(--muted);
  border: 1.5px solid var(--border);
  cursor: not-allowed;
  opacity: .5;
  transform: none;
  box-shadow: none;
}

 /* ── BOOKING FORM ── */
.booking-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}
.field input, .field textarea {
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .6; }
.field input:focus, .field textarea:focus { border-color: var(--green); }
.field textarea { resize: vertical; min-height: 72px; }
.form-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}