/* ================= BASE ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange-main: #ff4d00;
  --orange-light: #ff7a33;
  --orange-soft: #ff9e66;
  --orange-deep: #cc3d00;
  --orange-glow: rgba(255, 77, 0, 0.45);
  --green-neon: #39ff14;
  --bg-dark: #0f0f14;
  --bg-card: rgba(255,255,255,0.04);
  --border-subtle: rgba(255,255,255,0.08);
  --border-orange: rgba(255,77,0,0.3);
  --text-muted: #9ca3af;
  --text-soft: #cbd5e1;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-dark);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}
/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 3rem;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar.hidden {
  top: -140px;
}

/* ===== LOGO ===== */
.logo {
  position: relative;
  height: 0;
  z-index: 1001;
}

.logo img {
  height: 130px;
  width: auto;
  position: absolute;
  top: -30px;
  left: -30px; /* adjust this number until it looks right */
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* STANDARD NAV LINKS (NOT BUTTONS) */
.nav-links a:not(.btn) {
  position: relative;
  color: #ff4d00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
}

/* UNDERLINE ONLY FOR NON-BUTTON LINKS */
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ff4d00;
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* ACTIVE PAGE LINK */
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

/* ===== BUTTON LINK ===== */
.nav-links .btn {
  background-color: #39ff14;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(57, 255, 20, 0.65); /* thin neon border */
  transition: all 0.3s ease;

    /* stronger always-on glow */
  box-shadow:
    0 0 6px rgba(57, 255, 20, 0.55),
    0 0 12px rgba(57, 255, 20, 0.35),
    inset 0 0 6px rgba(57, 255, 20, 0.45);}

/* hover = stronger glow */
.nav-links .btn:hover {
  background-color: #39ff14;
  color: #000;
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.75),
    0 0 22px rgba(57, 255, 20, 0.5),
    inset 0 0 10px rgba(57, 255, 20, 0.55);
}



/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 3rem;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar.hidden {
  top: -140px;
}

/* ===== LOGO ===== */
.logo {
  position: relative;
  height: 0;
  z-index: 1001;
}

.logo img {
  height: 130px;
  width: auto;
  position: absolute;
  top: -30px;
  left: -30px; /* adjust this number until it looks right */
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* STANDARD NAV LINKS (NOT BUTTONS) */
.nav-links a:not(.btn) {
  position: relative;
  color: #ff4d00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
}

/* UNDERLINE ONLY FOR NON-BUTTON LINKS */
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ff4d00;
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* ACTIVE PAGE LINK */
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

/* ===== BUTTON LINK ===== */
.nav-links .btn {
  background-color: #39ff14;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(57, 255, 20, 0.65); /* thin neon border */
  transition: all 0.3s ease;

    /* stronger always-on glow */
  box-shadow:
    0 0 6px rgba(57, 255, 20, 0.55),
    0 0 12px rgba(57, 255, 20, 0.35),
    inset 0 0 6px rgba(57, 255, 20, 0.45);}

/* hover = stronger glow */
.nav-links .btn:hover {
  background-color: #39ff14;
  color: #000;
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.75),
    0 0 22px rgba(57, 255, 20, 0.5),
    inset 0 0 10px rgba(57, 255, 20, 0.55);
}


/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }

  /* ===== MOBILE LOGO ===== */
  .logo {
    height: auto;
  }

  .logo img {
    height: 65px;
    position: static;
    display: block;
    margin-left: -30px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0,0,0,0.95);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    text-align: center;
    gap: 1.5rem;
    padding: 0;
    font-size: 1.2rem;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a:not(.btn) {
    font-size: 1.3rem;
  }

  .nav-links .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
  }

  .nav-links.active {
    max-height: 500px;
    padding: 1rem 0;
  }
}

/* HIDE HAMBURGER ON DESKTOP */
@media (min-width: 865px) {
  .menu-toggle {
    display: none;
  }
}
/* ================= BOOKING MAIN ================= */
.booking-main {
  min-height: 100vh;
  padding-top: 80px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,77,0,0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,122,51,0.08), transparent 45%),
    linear-gradient(to bottom, #1a0f0a, #0f0f14 60%);
}

/* ================= PROGRESS BAR ================= */
.progress-wrap {
  position: sticky;
  top: var(--nav-offset, 80px); /* default = navbar height */
  z-index: 100;
  background: rgba(10,8,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 5% 0.85rem;
  transition: top 0.3s ease;
}

.progress-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  border-radius: 999px;
  transition: width 0.5s ease;
  width: 20%;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
}

.prog-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.prog-step.active, .prog-step.done { opacity: 1; }

.prog-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.prog-step.active .prog-num {
  background: var(--orange-main);
  border-color: var(--orange-main);
  box-shadow: 0 0 10px var(--orange-glow);
}

.prog-step.done .prog-num {
  background: #1a3a0a;
  border-color: var(--green-neon);
  color: var(--green-neon);
}

.prog-step.done:hover .prog-num {
  background: #2a5a10;
  box-shadow: 0 0 8px rgba(57,255,20,0.4);
}

.prog-step.done:hover {
  opacity: 0.85;
}

.prog-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

@media (max-width: 550px) { .prog-label { display: none; } }

/* ================= STEP SECTIONS ================= */
.step-section {
  display: none;
  padding: 3rem 5% 5rem;
  animation: stepFadeIn 0.4s ease;
  max-width: 1000px;
  margin: 0 auto;
}

.step-section.active { display: block; }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-main);
  margin-bottom: 0.6rem;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.step-title span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.step-inner { max-width: 860px; }

/* ================= SERVICE CHOICES ================= */
.service-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.service-choice input[type="radio"] { display: none; }

.choice-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.choice-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}

.service-choice input:checked + .choice-card {
  border-color: var(--orange-main);
  background: rgba(255,77,0,0.07);
  box-shadow: 0 0 30px rgba(255,77,0,0.15);
}

.service-choice input:checked + .choice-card::after { transform: scaleX(1); }

.choice-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}

.choice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.choice-icon { font-size: 2rem; line-height: 1; }

.choice-badge {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.choice-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.choice-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

.choice-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.choice-check {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-main);
  color: #fff;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.25s ease;
}

.service-choice input:checked + .choice-card .choice-check {
  opacity: 1;
  transform: scale(1);
}

/* ================= DOG STEPPER ================= */
.dog-stepper-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 0.3s ease;
  flex-wrap: wrap;
  gap: 1rem;
}

.dog-stepper-wrap:has(.stepper-btn:not([disabled]):hover) {
  border-color: var(--border-orange);
}

.dog-stepper-label {
  font-size: 0.93rem;
  color: var(--text-soft);
  flex: 1;
  min-width: 200px;
}

.dog-stepper-label strong { color: #fff; }

.dog-stepper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
}

.stepper-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,77,0,0.15);
  color: var(--orange-light);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stepper-btn:hover:not(:disabled) {
  background: var(--orange-main);
  color: #fff;
  box-shadow: 0 0 12px rgba(255,77,0,0.4);
}

.stepper-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.dog-count-display {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  min-width: 100px;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ================= ADDON ROW ================= */
.addon-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.addon-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.addon-check:hover { border-color: var(--border-orange); }

.addon-check input { display: none; }

.addon-box {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.25s ease;
  position: relative;
}

.addon-check input:checked ~ .addon-box {
  background: var(--orange-main);
  border-color: var(--orange-main);
}

.addon-check input:checked ~ .addon-box::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: #fff;
  font-weight: 700;
}

.addon-label { font-size: 0.93rem; color: var(--text-soft); }
.addon-label strong { color: #fff; }

/* ================= PRICE SUMMARY ================= */
.price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,77,0,0.08);
  border: 1px solid var(--border-orange);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.price-summary-label { font-weight: 700; color: #fff; font-size: 1rem; }

.price-summary-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= BUTTONS ================= */
.next-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light), var(--orange-deep));
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.next-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--orange-glow);
}

.next-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.confirm-btn {
  background: linear-gradient(90deg, var(--green-neon), #2ecc71);
  color: #000;
  font-size: 1.05rem;
}

.back-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 1rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Nunito', sans-serif;
}

.back-btn:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }

.step-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ================= FORM STYLES ================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

.form-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
}

.form-section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.input-row { display: flex; gap: 1rem; }
.input-row .input-wrap { flex: 1; }

.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.input-wrap label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.3px;
}

.input-wrap input,
.input-wrap textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--orange-main);
  box-shadow: 0 0 0 3px rgba(255,77,0,0.2);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: rgba(255,255,255,0.25); }

.input-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -0.2rem;
}

/* ================= CALENDAR ================= */
.calendar-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2rem;
  max-width: 580px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-month-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.cal-nav {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}

.cal-nav:hover { background: rgba(255,77,0,0.2); border-color: var(--border-orange); }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 0.5rem;
}

.cal-days-header span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  color: #fff;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(255,77,0,0.15);
  border-color: var(--border-orange);
}

.cal-day.empty { cursor: default; }
.cal-day.disabled { color: rgba(255,255,255,0.2); cursor: not-allowed; }
.cal-day.today { border-color: rgba(255,255,255,0.2); }
.cal-day.selected {
  background: var(--orange-main);
  border-color: var(--orange-main);
  box-shadow: 0 0 14px rgba(255,77,0,0.5);
  color: #fff;
}

/* Time picker */
.time-picker {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.time-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.time-label span { color: var(--orange-light); }

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot:hover { border-color: var(--border-orange); background: rgba(255,77,0,0.1); }
.time-slot.selected {
  background: var(--orange-main);
  border-color: var(--orange-main);
  box-shadow: 0 0 10px rgba(255,77,0,0.4);
}
.time-slot.booked {
  opacity: 0.35;
  cursor: not-allowed;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  position: relative;
}
.time-slot.booked::after {
  content: 'Booked';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Nail qty row for multi-dog sessions */
.nail-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.nail-qty-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 160px;
}

.nail-qty-stepper {
  flex-shrink: 0;
}

/* ================= AGREEMENT ================= */
.agreement-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.agreement-scroll {
  max-height: 340px;
  overflow-y: auto;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-main) transparent;
}

.agreement-scroll::-webkit-scrollbar { width: 4px; }
.agreement-scroll::-webkit-scrollbar-track { background: transparent; }
.agreement-scroll::-webkit-scrollbar-thumb { background: var(--orange-main); border-radius: 999px; }

.agreement-scroll h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.agree-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.2rem; }

.agreement-scroll h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange-light);
  margin: 1.25rem 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agreement-scroll p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.agree-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  background: rgba(255,77,0,0.05);
  border: 1.5px solid var(--border-orange);
  border-radius: 14px;
  margin-bottom: 0.5rem;
}

.agree-check-label input { display: none; }

.agree-custom-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.25s ease;
  position: relative;
}

.agree-check-label input:checked ~ .agree-custom-check {
  background: var(--orange-main);
  border-color: var(--orange-main);
}

.agree-check-label input:checked ~ .agree-custom-check::after {
  content: '✓';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem; color: #fff; font-weight: 700;
}

.agree-text { font-size: 0.92rem; color: var(--text-soft); line-height: 1.55; }

/* ================= PAYMENT ================= */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

.order-summary h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.93rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.order-total span:first-child { font-weight: 700; font-size: 1rem; color: #fff; }

.order-total span:last-child {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Payment method */
.payment-options-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pay-choice-row { display: flex; gap: 1rem; margin-bottom: 1.75rem; }

.pay-choice input { display: none; }

.pay-choice-box {
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-card);
  font-weight: 700;
  font-size: 0.93rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.pay-choice-box:hover { border-color: var(--border-orange); }
.pay-choice input:checked + .pay-choice-box {
  border-color: var(--orange-main);
  background: rgba(255,77,0,0.08);
  box-shadow: 0 0 16px rgba(255,77,0,0.15);
}

/* Card form */
.card-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.card-number-wrap { position: relative; }
.card-number-wrap input { width: 100%; padding-right: 3rem; }
.card-brand {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.secure-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Pay at door note */
.door-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(57,255,20,0.05);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.door-note-icon { font-size: 1.8rem; flex-shrink: 0; }
.door-note strong { color: #fff; font-size: 1rem; display: block; margin-bottom: 0.25rem; }
.door-note p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ================= CONFIRMATION ================= */
.confirm-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.confirm-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes popIn {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.confirm-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}

.confirm-title span {
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.confirm-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.confirm-sub strong { color: #fff; }

.confirm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.75rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.confirm-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.confirm-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.confirm-line span:first-child { color: var(--text-muted); }
.confirm-line span:last-child { color: #fff; font-weight: 600; text-align: right; }

/* SMS Preview */
.confirm-sms-preview {
  margin-bottom: 2rem;
}

.sms-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-align: left;
}

.sms-bubble {
  background: #1c8adb;
  border-radius: 18px 18px 4px 18px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  max-width: 380px;
  margin-left: auto;
}

.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.back-home-btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.back-home-btn:hover { background: rgba(255,255,255,0.1); }

.faq-link-btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.faq-link-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--orange-glow); }

/* ================= FOOTER ================= */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.footer-column { flex: 1 1 220px; min-width: 220px; }
.footer-column h3 { color: #ff4d00; font-size: 1.3rem; margin-bottom: 1rem; }
.footer-column p, .footer-column ul { color: #ddd; font-size: 0.95rem; line-height: 1.7; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 0.5rem; }
.footer-column a { color: #ff4d00; text-decoration: none; transition: color 0.3s ease; }
.footer-column a:hover { color: #ea580c; }

.footer-bottom {
  text-align: center; margin-top: 2.5rem; font-size: 0.85rem; color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.25rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .service-choices { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .input-row { flex-direction: column; }
  .pay-choice-row { flex-direction: column; }
  .step-section { padding: 2rem 4% 4rem; }
  .calendar-wrap { padding: 1.25rem; }
  .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-column { width: 100%; max-width: 400px; text-align: center; }
}
