/* Design System & Custom Tokens */
:root {
  --primary-orange: #f39c12;
  --primary-orange-hover: #e67e22;
  --primary-orange-light: #fef5e9;
  --text-main: #4a3e35;
  --text-muted: #9b8e84;
  --bg-page: #f8fafb;
  --bg-card: #ffffff;
  --bg-input: #fdfbf9;
  --border-inactive: #eae5e0;
  --border-active: #f39c12;
  --error-color: #e74c3c;
  --font-heading: 'Comic Sans MS', 'Comic Neue', cursive, sans-serif;
  --font-body: 'Comic Sans MS', 'Comic Neue', cursive, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scoped to summer camp page inside site layout */
.summer-camp-page,
.summer-camp-page * {
  box-sizing: border-box;
}

.summer-camp-page {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-page);
  overflow-x: hidden;
  position: relative;
  padding: 40px 20px 60px;
  width: 100%;
  max-width: 100%;
}

.summer-camp-page .card-container {
  margin: 0 auto;
}

/* Organic Background Blobs */
.summer-camp-page .bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}

.blob-peach {
  bottom: -10%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, #fdecd8 0%, rgba(253, 236, 216, 0.2) 70%);
}

.blob-teal {
  top: -15%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #dcf0f0 0%, rgba(220, 240, 240, 0.2) 70%);
}

.blob-small-teal {
  bottom: 25%;
  left: 5%;
  width: 15vw;
  height: 15vw;
  background: radial-gradient(circle, #e2f1f0 0%, rgba(226, 241, 240, 0.1) 70%);
  opacity: 0.6;
}

/* Main Card Container */
.card-container {
  background-color: var(--bg-card);
  width: 100%;
  max-width: 820px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(90, 75, 65, 0.06);
  padding: 50px 55px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
}

/* Header Progress Area */
.form-header {
  margin-bottom: 35px;
}

.step-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.step-count {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

.progress-bar-track {
  width: 100%;
  height: 6px;
  background-color: #f1ede9;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), #f5b041);
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step Layout & Headings */
.step-section {
  display: none;
}

.step-section.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.heading-icon-wrapper {
  width: 38px;
  height: 38px;
  background-color: var(--primary-orange-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-orange);
}

.heading-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #2c2520;
}

/* Selector Cards (Grid) */
.selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 35px;
}

.selector-card {
  border: 1.5px solid var(--border-inactive);
  background-color: var(--bg-card);
  border-radius: 18px;
  padding: 24px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

.selector-card:hover {
  border-color: #d5cdb8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 75, 65, 0.03);
}

.selector-card.active {
  border-color: var(--border-active);
  background-color: var(--bg-card);
}

.selector-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f6f3f0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7f756d;
  transition: var(--transition-smooth);
}

.selector-icon-circle svg {
  width: 22px;
  height: 22px;
}

.selector-card.active .selector-icon-circle {
  background-color: var(--primary-orange);
  color: #ffffff;
}

.selector-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #7f756d;
  transition: var(--transition-smooth);
}

.selector-card.active .selector-label {
  color: var(--primary-orange-hover);
}

/* Form Fields & Inputs */
.fields-grid {
  display: none;
}

.fields-grid.active,
.scholarship-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin-bottom: 35px;
  animation: fadeIn 0.35s ease-out forwards;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #4a3e35;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 15px 20px 15px 50px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  background-color: var(--bg-input);
  border: 1.5px solid var(--border-inactive);
  border-radius: 20px;
  outline: none;
  transition: var(--transition-smooth);
}

.input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.input-wrapper input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.input-wrapper input:focus {
  border-color: var(--border-active);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.08);
}

.input-icon {
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  color: var(--primary-orange);
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Error States */
.input-wrapper.invalid input {
  border-color: var(--error-color);
  background-color: #fff9f9;
}

.input-wrapper.invalid .input-icon {
  color: var(--error-color);
}

.error-msg {
  display: none;
  font-size: 12px;
  color: var(--error-color);
  margin-top: 5px;
  font-family: var(--font-body);
  font-weight: 500;
  animation: slideInDown 0.2s ease-out forwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit Action Button */
.btn-submit {
  width: 100%;
  background-color: var(--primary-orange);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.2);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 156, 18, 0.28);
}

.btn-submit:active {
  transform: translateY(1px);
}

/* Step 2 Subtitle */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Student Cards Layout */
.students-container {
  margin-top: 10px;
  margin-bottom: 25px;
}

.student-card {
  background-color: #f0fafb;
  border: 1.5px solid #d2eded;
  border-radius: 24px;
  padding: 24px 28px;
  margin-bottom: 24px;
  animation: fadeIn 0.4s ease-out forwards;
}

.student-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.student-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a7a80;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.student-title-icon {
  width: 18px;
  height: 18px;
  color: #1a7a80;
  stroke-width: 2.2;
}

.btn-remove-student {
  background: none;
  border: none;
  color: #1a7a80;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition-smooth);
}

.btn-remove-student svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.btn-remove-student:hover {
  color: var(--error-color);
  transform: scale(1.08);
}

.student-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
}

/* Inputs inside Student Cards are white */
.student-card .input-wrapper input,
.student-card .select-wrapper select {
  background-color: #ffffff;
}

/* Custom Select Styling */
.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrapper select {
  width: 100%;
  padding: 15px 45px 15px 50px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  background-color: var(--bg-input);
  border: 1.5px solid var(--border-inactive);
  border-radius: 20px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.select-wrapper select:focus {
  border-color: var(--border-active);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.08);
}

.select-arrow {
  position: absolute;
  right: 18px;
  width: 16px;
  height: 16px;
  color: #7f756d;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.select-wrapper select:focus~.select-arrow {
  color: var(--primary-orange);
  transform: translateY(-2px) rotate(180deg);
}

/* Combined input + select wrapper */
.input-wrapper.select-wrapper {
  width: 100%;
  position: relative;
  display: block;
}

.input-wrapper.select-wrapper select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 45px 15px 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--bg-input);
  border: 1.5px solid var(--border-inactive);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

.input-wrapper.select-wrapper select:focus {
  border-color: var(--border-active);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.08);
}

.input-wrapper.select-wrapper .input-icon {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.input-wrapper.select-wrapper .select-arrow {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.input-wrapper.select-wrapper select:focus~.select-arrow {
  color: var(--primary-orange);
  transform: translateY(-50%) rotate(180deg);
}

#step5 .scholarship-fields-grid .select-wrapper select,
.summer-camp-page select.sc-native-select {
  display: block !important;
  width: 100% !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #ffffff;
}

/* Add Student Button (Dashed) */
.btn-add-student {
  width: 100%;
  background-color: transparent;
  border: 2px dashed #208b90;
  color: #208b90;
  border-radius: 20px;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 35px;
  transition: var(--transition-smooth);
}

.btn-add-student:hover {
  background-color: #f0fafb;
  border-style: solid;
  box-shadow: 0 8px 24px rgba(32, 139, 144, 0.08);
}

.btn-add-student:active {
  transform: scale(0.99);
}

.add-icon {
  width: 18px;
  height: 18px;
}

/* Action Footer Layout */
.action-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.btn-back {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--border-inactive);
  background-color: #ffffff;
  color: #5a4b41;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-back svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.btn-back:hover {
  color: var(--primary-orange);
  border-color: var(--border-active);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.1);
}

.btn-back:active {
  transform: scale(0.94);
}

.action-footer .btn-submit {
  flex: 1;
}

/* Step 3 Sub-headings */
.sub-heading-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.sub-heading-icon {
  width: 18px;
  height: 18px;
  color: #8b7c72;
  stroke-width: 2.2;
}

.sub-heading-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: #3d332a;
}

/* Session Selection Grid */
.session-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.session-card {
  position: relative;
  border: 1.5px solid var(--border-inactive);
  background-color: #fdfbf9;
  border-radius: 24px;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: #544436;
  /* Default Brownish/Grey */
}

.session-card:hover {
  border-color: #d5cdb8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 75, 65, 0.03);
}

.session-card.active {
  border-color: #208b90;
  background-color: #eefafb;
  color: #208b90;
  /* Active Teal */
}

.session-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  transition: var(--transition-smooth);
}

.session-icon-container svg {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.session-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.session-card.active .session-label {
  color: #208b90;
}

.session-time-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  margin-top: 5px;
}

.session-time-batch {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.session-card.active .session-time-batch {
  color: #208b90;
}

.session-time-hours {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Active Badge Checkmark */
.active-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 22px;
  height: 22px;
  background-color: #208b90;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(32, 139, 144, 0.2);
}

.active-badge svg {
  width: 11px;
  height: 11px;
  stroke-width: 3.5;
}

.session-card.active .active-badge {
  display: flex;
}

/* Info Note */
.info-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 35px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-family: var(--font-body);
  font-weight: 500;
}

.info-note-icon {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  stroke-width: 2.2;
}

/* Nonprofit Special Offer Banner */
.nonprofit-banner {
  background-color: #e1f7fa;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.banner-heart-icon {
  width: 22px;
  height: 22px;
  color: #208b90;
  min-width: 22px;
}

/* PK Free Warning Note Banner */
.pk-free-banner {
  background-color: #FFF1E2;
  border: 1.5px dashed #fb8503;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 25px;
  animation: fadeIn 0.4s ease-out forwards;
}

.pk-badge-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background-color: #fdf2e9;
  color: #fb8503;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-badge-icon svg {
  width: 20px;
  height: 20px;
}

.pk-free-banner .banner-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #5a4b41;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

/* Read-Only Session Cards */
.session-card.read-only {
  cursor: default;
  pointer-events: none;
}

.session-card.read-only:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border-inactive) !important;
}

.session-card.read-only.active:hover {
  border-color: #208b90 !important;
  background-color: #eefafb !important;
}

.banner-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #005a5e;
  line-height: 1.5;
  font-weight: 500;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #2c2520;
  margin-bottom: 20px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.pricing-card {
  position: relative;
  border: 1.5px solid var(--border-inactive);
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  border-color: #d5cdb8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 75, 65, 0.03);
}

/* Scholarship active theme */
.pricing-card[data-pricing="scholarship"].active {
  border-color: #fb8503;
  background-color: #fdfaf7;
}

/* Afford active theme */
.pricing-card[data-pricing="afford"].active {
  border-color: #208b90;
  background-color: #eefafb;
}

/* Check Badges */
.card-check-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.card-check-badge svg {
  width: 11px;
  height: 11px;
}

.pricing-card.active .card-check-badge {
  display: flex;
}

.card-check-badge.check-orange {
  background-color: #fb8503;
}

.card-check-badge.check-teal {
  background-color: #208b90;
}

/* Pill Tag */
.pricing-card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background-color: #fb8503;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Icon Containers */
.pricing-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.scale-circle-orange {
  background-color: #fdecd8;
  color: #fb8503;
}

.scale-circle-teal {
  background-color: #e2f2f3;
  color: #006878;
}

.pricing-card.active .scale-circle-orange {
  background-color: #fb8503;
  color: #ffffff;
}

.pricing-card.active .scale-circle-teal {
  background-color: #208b90;
  color: #ffffff;
}

/* Card typography styling */
.pricing-card-title-text {
  font-family: var(--font-heading);
  font-size: 17.5px;
  font-weight: 700;
  color: #3d332a;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.pricing-card[data-pricing="scholarship"].active .pricing-card-title-text {
  color: #fb8503;
}

.pricing-card[data-pricing="afford"].active .pricing-card-title-text {
  color: #208b90;
}

.pricing-card-subtitle-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 500;
}

/* Step 5: Scholarship Application Styling */
.heading-icon-peach {
  background-color: #fff2e3 !important;
  color: #fb8503 !important;
  width: 48px !important;
  height: 48px !important;
}

.heading-icon-peach svg {
  width: 24px !important;
  height: 24px !important;
}

.scholarship-preview-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fdf6ee;
  border: 1.5px solid #f6e6d6;
  border-radius: 24px;
  padding: 22px 24px;
  margin-bottom: 35px;
  animation: fadeIn 0.4s ease-out forwards;
}

.preview-card-icon-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background-color: #f3e8dc;
  color: #a0580c;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.preview-card-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preview-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.preview-card-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: #3d332a;
}

.preview-card-badge {
  background-color: #fcf1e3;
  color: #a0580c;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.2px;
}

.preview-card-description {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* Custom Textarea Styling */
.textarea-group textarea {
  width: 100%;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  background-color: var(--bg-input);
  border: 1.5px solid var(--border-inactive);
  border-radius: 20px;
  outline: none;
  resize: none;
  min-height: 120px;
  transition: var(--transition-smooth);
}

.textarea-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.textarea-group textarea:focus {
  border-color: var(--border-active);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.08);
}

/* Textarea Error States */
.textarea-group .input-wrapper.invalid textarea {
  border-color: var(--error-color);
  background-color: #fff9f9;
}

/* Custom Afford Banner & Region Selection */
.afford-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #fdf6ee;
  border: 1.5px solid #ebd8c5;
  border-left: 5px solid #fb8503;
  border-radius: 18px;
  padding: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
  animation: fadeIn 0.4s ease-out forwards;
}

.banner-icon-circle {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background-color: #fdecd8;
  color: #fb8503;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-icon-circle svg {
  width: 18px;
  height: 18px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #3d332a;
}

.banner-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #7f756d;
  line-height: 1.55;
  font-weight: 500;
}

.region-section {
  margin-top: 30px;
  animation: fadeIn 0.4s ease-out forwards;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.region-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--border-inactive);
  background-color: #ffffff;
  border-radius: 20px;
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.region-card:hover {
  border-color: #d5cdb8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 75, 65, 0.03);
}

/* PK Active theme */
.region-card[data-region="pk"].active {
  border-color: #fb8503;
  background-color: #fdfaf7;
}

/* Global Active theme */
.region-card[data-region="global"].active {
  border-color: #208b90;
  background-color: #eefafb;
}

.region-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.region-icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.region-icon-circle.icon-orange {
  background-color: #fdecd8;
  color: #fb8503;
}

.region-icon-circle.icon-teal {
  background-color: #e2f2f3;
  color: #006878;
}

.region-card[data-region="pk"].active .region-icon-circle.icon-orange {
  background-color: #fb8503;
  color: #ffffff;
}

.region-card[data-region="global"].active .region-icon-circle.icon-teal {
  background-color: #208b90;
  color: #ffffff;
}

.region-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.region-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #3d332a;
}

.region-subtitle {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Check circle badge on the right */
.region-check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-inactive);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: var(--transition-smooth);
}

.region-check-badge svg {
  width: 11px;
  height: 11px;
  stroke-width: 3.5;
}

/* PK active state checkmark styling */
.region-card[data-region="pk"].active .region-check-badge {
  border-color: #fb8503;
  background-color: #ffffff;
  color: #fb8503;
}

/* Global active state checkmark styling */
.region-card[data-region="global"].active .region-check-badge {
  border-color: #208b90;
  background-color: #ffffff;
  color: #208b90;
}

/* Responsive Breakpoints will be consolidated at the end of the file to preserve correct CSS override hierarchy */

/* ==========================================================================
   STEP 4 VIEW B: PLAN SELECTION & PAYMENT METHODS
   ========================================================================== */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
}

.plan-card {
  position: relative;
  border: 1.5px solid var(--border-inactive);
  background-color: #ffffff;
  border-radius: 20px;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  outline: none;
}

.plan-card:hover {
  border-color: #d5cdb8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 75, 65, 0.03);
}

/* Active Modifiers for plan-card */
.plan-card.active.active-orange {
  border-color: #fb8503;
  background-color: #fdfaf7;
}

.plan-card.active.active-teal {
  border-color: #208b90;
  background-color: #eefafb;
}

.plan-card-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #3d332a;
}

.plan-duration {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-card.active.active-orange .plan-badge-row {
  color: #fb8503;
  font-weight: 700;
}

.plan-card.active.active-teal .plan-badge-row {
  color: #208b90;
  font-weight: 700;
}

.plan-check-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.plan-check-icon circle {
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2.5;
}

.plan-card.active.active-orange .plan-check-icon circle {
  fill: #fb8503;
  stroke: none;
}

.plan-card.active.active-teal .plan-check-icon circle {
  fill: #208b90;
  stroke: none;
}

.plan-card.active.active-orange .plan-check-icon polyline {
  stroke: #ffffff;
  stroke-width: 2.5;
}

.plan-card.active.active-teal .plan-check-icon polyline {
  stroke: #ffffff;
  stroke-width: 2.5;
}

.plan-card-right {
  text-align: right;
}

.plan-price-val {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #3d332a;
}

.plan-card.active.active-orange .plan-price-val {
  color: #fb8503;
}

.plan-card.active.active-teal .plan-price-val {
  color: #208b90;
}

.plan-price-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

.plan-card .pricing-card-tag {
  top: -11px;
  background-color: #a0580c;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

/* Order Summary Box styling */
.order-summary-box {
  background-color: #eef5f6;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid #d2eded;
}

.summary-header {
  background-color: #e1f0f1;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a7a80;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1.5px solid #c9e8ea;
}

.summary-header svg {
  width: 16px;
  height: 16px;
}

.summary-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
}

.summary-row span:first-child {
  color: #7f756d;
}

.summary-row span:last-child {
  color: #3d332a;
  font-weight: 700;
}

.summary-body hr {
  border: none;
  border-top: 1.5px solid #d1e5e6;
  margin: 4px 0;
}

.total-row {
  font-family: var(--font-heading);
}

.total-row span:first-child {
  font-size: 16px;
  font-weight: 700;
  color: #3d332a;
}

.total-row span:last-child {
  font-size: 20px;
  font-weight: 700;
  color: #1a7a80;
}

.summary-footer {
  background-color: #eae3db;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #5a4b41;
  border-top: 1px solid #dfd8cf;
}

.summary-footer svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

/* Choose Payment Method Section styling */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.payment-card {
  background-color: #f1ede9;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 14px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  outline: none;
}

.payment-card:hover {
  background-color: #eae5e0;
  transform: translateY(-2px);
}

.payment-card img {
  height: 32px;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.payment-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  color: #7f756d;
  transition: var(--transition-smooth);
}

/* Active Modifiers for payment-card */
.payment-card.active.active-orange {
  border-color: #fb8503;
  background-color: #fdfaf7;
}

.payment-card.active.active-orange .payment-label {
  color: #fb8503;
}

.payment-card.active.active-teal {
  border-color: #208b90;
  background-color: #eefafb;
}

.payment-card.active.active-teal .payment-label {
  color: #208b90;
}

.payment-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   STEP 6: PAYMENT DETAILS (MOBILE WALLETS)
   ========================================================================== */

.quick-summary-bar {
  background-color: #eefafb;
  border: 1.5px solid #d2eded;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  animation: fadeIn 0.4s ease-out forwards;
}

.summary-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #3d332a;
}

.summary-bar-item svg {
  width: 16px;
  height: 16px;
  color: #208b90;
  stroke-width: 2.2;
}

.summary-bar-item span {
  font-family: var(--font-body);
}

.summary-bar-item strong {
  font-weight: 700;
  color: #1a7a80;
}

.payment-preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fdfaf7;
  border: 1.5px solid #208b90;
  border-radius: 24px;
  padding: 22px 24px;
  margin-bottom: 35px;
  animation: fadeIn 0.4s ease-out forwards;
}

.preview-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-logo-box {
  background-color: #ffffff;
  border: 1px solid #ebd8c5;
  border-radius: 12px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.preview-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.preview-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.preview-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #3d332a;
}

.preview-subtitle {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
}

.preview-check-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #208b90;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-check-badge svg {
  width: 12px;
  height: 12px;
  stroke-width: 3.5;
}

.payment-info-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fdf6ee;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 30px;
  animation: fadeIn 0.4s ease-out forwards;
}

.payment-info-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #a0580c;
}

.payment-info-banner span {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #a0580c;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

/* Bank Transfer Details Box */
.bank-transfer-details-box {
  border: 1.5px dashed var(--primary-orange);
  border-radius: 20px;
  background-color: #fcfbf9;
  padding: 25px;
  margin-bottom: 10px;
  animation: fadeIn 0.4s ease-out forwards;
}

.bank-details-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.bank-shield-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #e6eff0;
  color: #1a7a80;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bank-shield-icon svg {
  width: 22px;
  height: 22px;
}

.bank-details-title-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.official-account-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.bank-name-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #1a7a80;
}

.bank-info-cards {
  display: flex;
  gap: 15px;
}

.bank-info-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(90, 75, 65, 0.03);
}

.bank-info-card.copyable {
  flex: 2.1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.bank-info-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bank-info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.bank-info-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: #3d332a;
  white-space: nowrap;
}

.btn-copy-iban {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e6eff0;
  color: #1a7a80;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.btn-copy-iban:hover {
  background-color: #d2e4e6;
}

/* Card View Specifics */
.input-wrapper.no-icon input {
  padding-left: 20px;
}

.input-icon.right {
  left: auto;
  right: 18px;
}

.payment-info-banner.muted-banner {
  background-color: #f2efe9;
}

.payment-info-banner.teal-banner {
  background-color: #eefafb;
}

.fields-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.paypal-unified-card {
  border: 1.5px solid #cce4e6;
  border-radius: 16px;
  padding: 24px;
  background-color: #ffffff;
  margin-bottom: 25px;
}

.paypal-instruction-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4a3e35;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ACH Transfer Details Styling */
.ach-details-box {
  border: 1.5px dashed var(--primary-orange);
  border-radius: 20px;
  background-color: #FFF1E2;
  padding: 24px 28px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.4s ease-out forwards;
}

.ach-watermark {
  position: absolute;
  top: 12px;
  right: 20px;
  color: #fb8503;
  opacity: 0.07;
  pointer-events: none;
}

.ach-watermark svg {
  width: 92px;
  height: 88px;
}

.ach-details-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ach-info-icon-wrapper {
  width: 34px;
  height: 34px;
  background-color: var(--primary-orange-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-orange);
}

.ach-info-icon-wrapper svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.ach-details-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary-orange-hover);
}

.ach-bank-details-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ach-bank-details-row {
  display: flex;
  gap: 24px;
}

.ach-bank-detail-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.ach-detail-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.ach-detail-value {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
}

.ach-detail-value.bold-value {
  font-size: 16px;
  color: #2c2520;
}

/* Responsive adjustments for ACH view will be consolidated at the end of the file */

/* ==========================================================================
   STEP 7: REVIEW & SUBMIT STYLING
   ========================================================================== */

.review-success-badge {
  width: 38px;
  height: 38px;
  background-color: #006f75;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  min-width: 38px;
}

.review-success-badge svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  animation: fadeIn 0.4s ease-out forwards;
}

.review-card {
  background-color: #fff9f3;
  border: 1.5px solid #ebd8c5;
  border-radius: 24px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(90, 75, 65, 0.02);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card-title-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card-icon {
  width: 18px;
  height: 18px;
  color: #fb8503;
}

.review-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #3d332a;
}

.btn-edit-step {
  background: none;
  border: none;
  color: #1a7a80;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  transition: var(--transition-smooth);
}

.btn-edit-step svg {
  width: 13px;
  height: 13px;
}

.btn-edit-step:hover {
  color: #005a5e;
  transform: translateY(-1px);
}

.review-card-body {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.45;
  text-align: left;
}

.review-divider {
  border: none;
  border-top: 1.5px dashed #ebd8c5;
  margin: 6px 0;
}

.review-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

.review-total-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #a0580c;
  letter-spacing: 0.5px;
}

.review-total-val {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fb8503;
}

/* Custom Checkbox styles */
.confirm-checkbox-wrapper {
  margin-bottom: 25px;
  text-align: left;
}

.custom-checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  user-select: none;
  font-weight: 500;
}

.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: #ffffff;
  border: 1.5px solid var(--border-inactive);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.custom-checkbox-container:hover input ~ .checkmark {
  border-color: #d5cdb8;
}

.custom-checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox-container .checkmark:after {
  left: 6.5px;
  top: 2.5px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.custom-checkbox-container.invalid .checkmark {
  border-color: var(--error-color);
  background-color: #fff9f9;
}

/* Responsive review page styles will be consolidated at the end of the file */

/* ==========================================================================
   STEP 8: SUCCESS PAGE STYLING
   ========================================================================== */

.success-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  margin-top: 10px;
}

.success-icon-outer-circle {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background-color: #fdecd8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-icon-inner-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #fb8503;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.25);
}

.success-icon-inner-circle svg {
  width: 28px;
  height: 28px;
  stroke-width: 3.5;
}

.success-header {
  text-align: center;
  margin-bottom: 28px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #2c2520;
  margin-bottom: 10px;
}

.success-subtitle {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.success-details-box {
  background-color: #FFF1E2;
  border-radius: 24px;
  padding: 24px 30px;
  margin-bottom: 35px;
  animation: fadeIn 0.4s ease-out forwards;
}

.success-details-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.success-details-row {
  display: flex;
  gap: 24px;
}

.success-detail-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.success-detail-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #a0580c;
}

.success-detail-value {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #4a3e35;
}

.success-detail-value.id-value {
  color: #006f75;
}

.success-detail-value.status-value {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #fb8503;
  border-radius: 50%;
  display: inline-block;
}

.next-steps-section {
  margin-bottom: 30px;
}

.next-steps-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #3d332a;
  margin-bottom: 25px;
  text-align: center;
}

.next-steps-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.timeline-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f1ede9;
  color: #7f756d;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(90, 75, 65, 0.02);
}

.timeline-icon-circle svg {
  width: 18px;
  height: 18px;
}

.timeline-node.active .timeline-icon-circle {
  background-color: #fb8503;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.node-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #3d332a;
}

.node-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.timeline-line {
  height: 2px;
  background-color: #ebd8c5;
  flex: 1.5;
  margin-top: -30px;
}

.success-spam-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 30px;
}

.success-action-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.btn-home {
  background-color: #fb8503;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 15px 25px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.2);
  transition: var(--transition-smooth);
}

.btn-home svg {
  width: 16px;
  height: 16px;
}

.btn-home:hover {
  background-color: #e67e22;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 156, 18, 0.28);
}

.btn-home:active {
  transform: translateY(1px);
}

.btn-download {
  background-color: transparent;
  color: #1a7a80;
  border: 1.5px solid #1a7a80;
  border-radius: 100px;
  padding: 14px 25px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-download svg {
  width: 16px;
  height: 16px;
}

.btn-download:hover {
  background-color: #eefafb;
  transform: translateY(-1px);
}

.btn-download:active {
  transform: translateY(1px);
}

/* Print Specific Rules (fallback if browser print is used directly) */
@media print {
  header,
  footer,
  .it-header-height,
  #header-sticky,
  .it-footer-wrap,
  .search__area,
  .itoffcanvas,
  .modal,
  .bg-blob,
  .form-header,
  .success-action-buttons,
  .step-section:not(#stepSuccess) {
    display: none !important;
  }

  body {
    background: #ffffff !important;
  }

  .summer-camp-page {
    background: none !important;
    color: #000000;
    padding: 0 !important;
  }

  .card-container {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  #stepSuccess {
    display: block !important;
  }
}

/* Consolidated Responsive Breakpoints at the bottom of the file to preserve override order */
@media (max-width: 768px) {
  .region-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .afford-banner {
    padding: 16px;
    gap: 12px;
  }

  .scholarship-preview-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }

  .card-container {
    padding: 35px 30px;
    border-radius: 24px;
  }

  .fields-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .fields-grid.three-cols {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .selector-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .student-fields {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .student-card {
    padding: 20px 20px;
  }

  .session-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .payment-grid .payment-card:last-child {
    grid-column: span 2;
  }

  .quick-summary-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bank-info-cards {
    flex-direction: column;
    gap: 12px;
  }

  .bank-transfer-details-box {
    padding: 18px;
  }

  .summer-camp-page {
    padding-top: 20px;
  }

  /* ACH adjustments */
  .ach-bank-details-row {
    flex-direction: column;
    gap: 12px;
  }
  .ach-details-box {
    padding: 18px;
  }
  .ach-watermark {
    top: 8px;
    right: 12px;
    opacity: 0.05;
  }
  .ach-watermark svg {
    width: 76px;
    height: 72px;
  }

  /* Review adjustments */
  .review-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Success Page Adjustments */
  .success-details-row {
    flex-direction: column;
    gap: 15px;
  }
  .success-details-box {
    padding: 20px;
  }
  .timeline-line {
    display: none;
  }
  .next-steps-timeline {
    flex-direction: column;
    gap: 20px;
  }
  .success-action-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-home, .btn-download {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .summer-camp-page {
    padding: 20px 10px 40px;
  }

  .card-container {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .pk-free-banner {
    padding: 12px 16px;
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-heading {
    margin-bottom: 20px;
    gap: 10px;
  }

  .heading-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .heading-icon {
    width: 18px;
    height: 18px;
  }

  .selector-grid, 
  .fields-grid.active, 
  .students-container, 
  .session-grid, 
  .pricing-grid, 
  .plan-grid, 
  .payment-grid, 
  .order-summary-box, 
  .confirm-checkbox-wrapper, 
  .success-details-box {
    margin-bottom: 20px;
  }

  .form-header {
    margin-bottom: 25px;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .payment-grid .payment-card:last-child {
    grid-column: span 2;
  }

  .fields-grid.three-cols {
    grid-template-columns: 1fr;
  }

  .bank-info-value {
    font-size: 13px;
    word-break: break-all;
    white-space: normal;
  }

  .bank-info-card.copyable {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-copy-iban {
    align-self: flex-end;
  }

  .payment-preview-card {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .preview-logo-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 4px;
  }

  .preview-title {
    font-size: 15px;
  }

  .preview-subtitle {
    font-size: 12px;
  }
}

.payment-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.braintree-hosted-field-container {
  height: 52px;
  border: 1.5px solid #ebd8c5;
  border-radius: 14px;
  background-color: #fffaf5;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.braintree-hosted-field-container.braintree-hosted-fields-invalid {
  border-color: #e05252;
}

.braintree-hosted-field-container.braintree-hosted-fields-valid {
  border-color: #1a7a80;
}

.password-wrapper input {
  padding-right: 52px;
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--primary-orange);
  cursor: pointer;
}

.password-toggle:hover {
  color: #e07800;
}

.password-toggle:focus {
  outline: none;
}

.password-toggle i {
  font-size: 16px;
}