/* ===== Variables & Reset ===== */
:root {
  --purple: #5b3e8a;
  --purple-dark: #3d2a5c;
  --purple-light: #7b5faa;
  --purple-pale: #f3effa;
  --orange: #e8842a;
  --orange-light: #f5a14e;
  --orange-pale: #fff5eb;
  --cream: #faf8f5;
  --warm-white: #fffdf9;
  --text: #2e2240;
  --text-light: #6b5f7a;
  --gold: #e8b84b;
  --green: #4caf6a;
  --border: #e8e2f0;
  --shadow: 0 4px 24px rgba(91, 62, 138, 0.08);
  --shadow-lg: 0 12px 48px rgba(91, 62, 138, 0.14);
  --shadow-orange: 0 8px 30px rgba(232, 132, 42, 0.18);
  --shadow-purple: 0 8px 30px rgba(91, 62, 138, 0.18);
  --radius: 20px;
  --radius-lg: 28px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Nunito', -apple-system, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--purple-dark);
  padding: 14px 0;
  transition: var(--transition);
}

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

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--orange-light);
}

/* ===== Nav Dropdown ===== */
.nav-dropdown {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 8px;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 1001;
}

/* Invisible bridge so hover doesn't break */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--purple-dark);
  padding: 110px 0 80px;
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.slogan {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--orange-light);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* ===== Booking Wrapper (shared bubble) ===== */
.booking-wrapper {
  background: rgba(107, 58, 138, 0.15);
  border: 2px solid rgba(144, 104, 176, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ===== Options Grid (two options side by side) ===== */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.option-card {
  cursor: pointer;
  transition: var(--transition);
}

.option-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.option-card.selected {
  border-color: var(--orange);
  background: rgba(232, 132, 42, 0.12);
}


/* ===== Booking Lower (Calendar + What to Expect) ===== */
.booking-lower {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}

.booking-lower-left,
.booking-lower-right {
  /* columns inside the shared bubble */
}

.expect-content h4:first-child {
  margin-top: 0;
}

.packages-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.packages-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* Starter info in packages side */
.packages-side .starter-info {
  margin-bottom: 28px;
}

.packages-side .feeling-vibe {
  margin-bottom: 16px;
}

.packages-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== Step Cards (Accordion) ===== */
.step-card {
  background: rgba(107, 58, 138, 0.25);
  border: 2px solid rgba(144, 104, 176, 0.3);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.step-card.active {
  border-color: rgba(144, 104, 176, 0.5);
}

.step-card.completed {
  cursor: pointer;
}

.step-card.completed:hover {
  background: rgba(107, 58, 138, 0.35);
}

.step-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-label {
  color: white;
  font-weight: 800;
  font-size: 1rem;
}

.step-selection {
  color: var(--orange-light);
  font-size: 0.9rem;
  font-weight: 800;
}

.step-body {
  padding: 0 20px 20px;
  transition: var(--transition);
}

.step-card.collapsed .step-body {
  display: none;
}

.step-card.collapsed .step-header {
  padding: 14px 20px;
}

.step-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 4px;
  line-height: 1.5;
}

/* ===== Option Title & Price ===== */
.option-title {
  font-size: 1.2rem;
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}

.price-unit {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.booking-blurb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.step-tagline {
  color: var(--orange-light);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 12px;
}

.step-subhead {
  color: white;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.5;
}

.step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.step-booking {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.step-rate {
  color: var(--orange-light);
  font-size: 1rem;
  font-weight: 800;
  margin-top: 8px;
}

.step-per {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

/* ===== Calendar ===== */
.calendar {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

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

.calendar-header h3 {
  color: white;
  font-weight: 800;
  font-size: 1rem;
}

.cal-nav {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav:hover {
  background: var(--orange);
  transform: scale(1.05);
}

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

.day-label {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
  font-weight: 800;
}

[data-cal-days] {
  display: contents;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  font-weight: 700;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(232, 132, 42, 0.3);
  color: white;
  transform: scale(1.1);
}

.cal-day.today {
  border: 2px solid var(--orange);
  color: var(--orange-light);
  font-weight: 800;
}

.cal-day.selected {
  background: var(--orange);
  color: white;
  font-weight: 800;
  transform: scale(1.05);
}

.cal-day.disabled {
  color: rgba(255, 255, 255, 0.12);
  cursor: default;
}

.cal-day.empty {
  cursor: default;
}

/* ===== Time Slots ===== */
[data-time-grid] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.time-slot:hover {
  background: rgba(232, 132, 42, 0.25);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.time-slot.selected {
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 800;
  transform: translateY(-2px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group.full-width {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-problem {
  background: var(--purple);
  color: white;
  padding: 12px 28px;
  font-size: 0.9rem;
}

.btn-problem:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

/* ===== Confirmation ===== */
.booking-confirmation {
  text-align: center;
  padding: 40px 20px;
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.booking-confirmation h3 {
  color: white;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.booking-confirmation p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: #3a2258;
  color: white;
}

.section-alt .section-header h2 {
  color: white;
}

.section-alt .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-alt .menu-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-left-color: var(--orange);
  box-shadow: none;
}

.section-alt .menu-card:nth-child(2) {
  border-left-color: var(--orange-light);
}

.section-alt .menu-card:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-alt .menu-card h3 {
  color: white;
}

.section-alt .menu-divider {
  background: var(--orange);
}

.section-alt .menu-item {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-alt .divider {
  background: var(--orange);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--purple-dark);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 50px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto;
  border-radius: 3px;
}

/* ===== Package Cards ===== */
.package-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.package-popular {
  border-color: var(--orange);
  background: rgba(232, 132, 42, 0.12);
}

.package-popular:hover {
  background: rgba(232, 132, 42, 0.18);
  transform: translateY(-3px);
}

.popular-tag {
  position: absolute;
  top: -11px;
  right: 20px;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}

.package-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.package-sessions {
  font-size: 1rem;
  font-weight: 800;
  color: white;
}

.package-pricing {
  text-align: right;
}

.package-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 2px;
}

.package-per {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-light);
}

.package-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* ===== Packages Section (toggle + grid) ===== */
.package-toggle-wrap {
  text-align: center;
  margin-bottom: 44px;
}

.package-toggle {
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 5px;
}

.package-toggle button {
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.package-toggle button:hover {
  color: white;
}

.package-toggle button.active {
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow-orange);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

/* "Best Value" tag — mirrors popular-tag but in gold */
.value-tag {
  position: absolute;
  top: -11px;
  right: 20px;
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-save {
  display: inline-block;
  margin-top: 18px;
  background: rgba(76, 175, 106, 0.18);
  color: #85dca0;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 15px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.package-note {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 800;
}

.packages-foot {
  text-align: center;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.packages-foot a {
  color: var(--orange-light);
  font-weight: 800;
  text-decoration: none;
}

.packages-foot a:hover {
  text-decoration: underline;
}

/* Clickable package cards */
.package-card {
  cursor: pointer;
}

.package-card.selected {
  border-color: var(--orange);
  background: rgba(232, 132, 42, 0.16);
}

.package-cta {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--orange-light);
  font-size: 0.85rem;
  font-weight: 800;
  transition: var(--transition);
}

.package-card:hover .package-cta {
  color: white;
}

/* Package booking widget (appears when a package is chosen) */
.pkg-booking-wrap {
  margin-top: 44px;
  text-align: left;
}

#pkgBookingContext {
  color: var(--orange-light);
}

/* Link inside the hero booking blurb */
.booking-blurb a {
  color: var(--orange-light);
  font-weight: 800;
  text-decoration: none;
}

.booking-blurb a:hover {
  text-decoration: underline;
}

/* ===== Hero Sub Nav ===== */
.hero-nav-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.hero-nav-sub a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.hero-nav-sub a:hover {
  color: var(--orange-light);
}

/* ===== Starter Info ===== */
.starter-info {
  margin-bottom: 28px;
}

.starter-detail {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.starter-detail strong {
  color: var(--orange-light);
  font-size: 1.3rem;
}

.starter-breakdown {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.feeling-vibe {
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.45;
}

/* ===== Scheduling Note ===== */
.scheduling-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 20px;
  line-height: 1.6;
}


/* ===== Menu Style Cards ===== */
.menu-styles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--purple-dark);
  text-align: center;
  margin-bottom: 16px;
}

.menu-divider {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 20px;
  border-radius: 3px;
}

.menu-item {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.menu-item:last-child {
  border-bottom: none;
}

/* ===== Issues Grid ===== */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.issue-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.issue-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.issue-card h3 {
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.issue-card .menu-divider {
  margin-bottom: 16px;
}

.issue-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Schedule Flexibility Bubble ===== */
.schedule-flexibility {
  max-width: 780px;
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
}

.schedule-flexibility h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.schedule-flexibility p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== Problems ===== */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.problem-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border-left: 6px solid transparent;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-orange {
  border-left-color: var(--orange);
}

.problem-purple {
  border-left-color: var(--purple);
}

.problem-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 12px;
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-orange .tag {
  background: var(--orange-pale);
  color: var(--orange);
}

.problem-purple .tag {
  background: var(--purple-pale);
  color: var(--purple);
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ===== About ===== */
.about-text-centered {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.about-text-centered p {
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.85;
}

/* ===== Trainer Bio ===== */
.trainer-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 780px;
  margin: 0 auto;
}

.trainer-photo-placeholder {
  width: 240px;
  height: 280px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.trainer-text h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.trainer-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ===== Trainer Placeholder ===== */
.trainer-placeholder {
  max-width: 780px;
  margin: 40px auto 0;
  text-align: center;
  padding: 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.92rem;
  font-style: italic;
}

/* ===== Teaching Tagline ===== */
.teaching-tagline {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: 1px;
  margin-top: 32px;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.testimonial-author {
  font-weight: 800;
  color: var(--purple-dark);
  font-size: 0.9rem;
}

/* ===== Contact ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  margin-bottom: 6px;
  font-weight: 800;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--purple-pale);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.success-msg {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 40px 0;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--purple-dark);
  padding: 48px 0;
  text-align: center;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer-brand {
  font-size: 1.3rem;
  color: white;
  font-weight: 800;
}

.copyright {
  margin-top: 16px !important;
  font-size: 0.8rem !important;
}

/* ===== Checkout Page ===== */
.checkout-page {
  padding: 120px 0 80px;
  background: var(--cream);
  min-height: 100vh;
}

.checkout-container {
  max-width: 960px;
}

.checkout-back {
  display: inline-block;
  color: var(--purple);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 20px;
  transition: var(--transition);
}

.checkout-back:hover {
  color: var(--orange);
}

.checkout-h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.checkout-lede {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 28px;
  max-width: 620px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.checkout-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
}

.checkout-col-main .checkout-card:last-child {
  margin-bottom: 0;
}

.checkout-h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 18px;
}

/* Order summary */
.summary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.summary-service {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--purple-dark);
}

.summary-tier {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
}

.summary-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--purple-dark);
  line-height: 1;
  white-space: nowrap;
}

.summary-save {
  display: inline-block;
  margin-top: 12px;
  background: rgba(76, 175, 106, 0.14);
  color: #2f8f52;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
}

.summary-rows {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.summary-row span:first-child {
  color: var(--text-light);
  font-weight: 700;
}

.summary-row span:last-child {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-dark);
}

/* Checkout form (light theme) */
.checkout-form .ck-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ck-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.ck-field label {
  font-size: 0.78rem;
  color: var(--purple);
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ck-optional {
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.ck-field input,
.ck-field textarea {
  background: var(--purple-pale);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.ck-field input:focus,
.ck-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: white;
}

/* Payment area */
.checkout-pay {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pay-placeholder {
  background: var(--orange-pale);
  border: 1px dashed var(--orange-light);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

.pay-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.pay-placeholder p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.pay-fineprint {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 14px;
  text-align: center;
}

/* How to prepare */
.prep-card {
  background: var(--purple-dark);
  border: none;
}

.prep-card .checkout-h2,
.prep-card .checkout-lede {
  color: white;
}

.prep-card .checkout-lede {
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.85;
}

.prep-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prep-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.prep-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.prep-list strong {
  display: block;
  color: var(--orange-light);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.prep-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Confirmation card */
.confirm-card {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 44px 32px;
}

.confirm-card .confirmation-icon {
  margin: 0 auto 20px;
}

.confirm-card .checkout-lede {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .booking-wrapper {
    padding: 24px 20px;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .booking-lower-grid {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .issues-grid {
    grid-template-columns: 1fr;
  }

  .trainer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trainer-photo-placeholder {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--purple-dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .packages-stack {
    flex-direction: column;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .menu-styles-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-form .ck-row {
    grid-template-columns: 1fr;
  }


  [data-time-grid] {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 0 60px;
  }

  .section {
    padding: 64px 0;
  }
}
