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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #ff9902 0%, #ffb84d 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
}

.logo i {
  color: #ff9902;
  font-size: 28px;
}

.header-text h1 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.header-text p {
  color: #7f8c8d;
  font-size: 16px;
}

.progress-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #ecf0f1;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9902, #ffb84d);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 25%;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.step.active {
  opacity: 1;
}

.step.completed {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ecf0f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #7f8c8d;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: linear-gradient(135deg, #ff9902, #ffb84d);
  color: white;
}

.step.completed .step-number {
  background: #27ae60;
  color: white;
}

/* Back-navigable steps: pointer + subtle hover ring */
.step--clickable {
  cursor: pointer;
}

.step--clickable:hover .step-number {
  background: #1e8449;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.25);
  transform: scale(1.08);
}

.step--clickable:hover .step-label {
  color: #27ae60;
}

.step-label {
  font-size: 12px;
  font-weight: 500;
  color: #7f8c8d;
}

.main-content {
  padding: 40px 0;
}

.booking-form {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  max-width: 950px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9902, #ffb84d, #ff9902);
  border-radius: 24px 24px 0 0;
}

.form-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-header {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff9902, #ffb84d);
  border-radius: 2px;
}

.section-header i {
  color: #ff9902;
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(255, 153, 2, 0.3));
}

.section-subtitle {
  font-size: 18px;
  color: #5a6c7d;
  margin-top: 15px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
  text-align: center;
}

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

.service-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
}

.service-card .service-config {
  overflow: visible;
  max-width: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
  z-index: 1;
}

.service-card:hover:not(.selected)::before {
  left: 100%;
}

.service-card:hover {
  border-color: #ff9902;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 153, 2, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
  border-color: #ff9902;
  background: linear-gradient(145deg, #fff8f0, #ffedd6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 153, 2, 0.2), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card.selected::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background: #ff9902;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  left: auto;
  z-index: 2;
  transform: none;
  transition: none;
}

.service-icon {
  font-size: 56px;
  color: #ff9902;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 153, 2, 0.3));
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.service-card p {
  color: #5a6c7d;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.service-price {
  font-weight: 800;
  color: #ff9902;
  font-size: 18px;
  background: linear-gradient(135deg, #ff9902, #ffb84d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 153, 2, 0.2);
}

.packing-materials-box {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 2px solid #ff9902;
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(255, 153, 2, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
}

.packing-materials-header {
  text-align: center;
  margin-bottom: 25px;
}

.packing-materials-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.packing-materials-header h3 i {
  color: #ff9902;
  font-size: 28px;
}

.packing-materials-header p {
  color: #7f8c8d;
  font-size: 15px;
  margin: 0;
}

.service-description {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  border-left: 4px solid #ff9902;
}

.service-description h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.service-description p {
  color: #7f8c8d;
}

/* Service Configuration */
.service-config {
  margin: 15px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  border: 2px solid #ff9902;
  box-shadow: 0 4px 15px rgba(255, 153, 2, 0.2);
  animation: slideIn 0.3s ease;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.config-section {
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.config-section:last-child {
  margin-bottom: 0;
}

.config-section label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.config-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ff9902;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: white;
  color: #2c3e50;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 153, 2, 0.1);
  height: 44px;
  box-sizing: border-box;
}

.config-select:focus {
  outline: none;
  border-color: #ffb84d;
  box-shadow: 0 4px 15px rgba(255, 153, 2, 0.2);
  transform: translateY(-1px);
}

.config-select:hover {
  border-color: #ffb84d;
  box-shadow: 0 2px 12px rgba(255, 153, 2, 0.15);
}

/* Pricing Information */
.pricing-info {
  margin-top: 15px;
  padding: 12px;
  background: rgba(255, 153, 2, 0.05);
  border-radius: 8px;
  border-left: 3px solid #ff9902;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #2c3e50;
}

.pricing-note:last-child {
  margin-bottom: 0;
}

.pricing-note i {
  color: #ff9902;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

/* ============================================================
   Junk Removal — No Online Booking card
   ============================================================ */

/* The outer service card: never shows "selected" ring */
.service-card--no-booking {
  cursor: default;
}

.service-card--no-booking:hover {
  transform: none;
  border-color: rgba(255, 153, 2, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card--no-booking.selected,
.service-card--no-booking.selected::before {
  /* Prevent orange selected state */
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-color: transparent;
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
  content: none;
}

/* Inner panel */
.junk-no-booking-card {
  margin-top: 12px;
  background: #fff8f0;
  border: 1.5px solid #ff9902;
  border-radius: 14px;
  padding: 18px 16px 16px;
  text-align: center;
}

/* "N/A for Online Booking" badge */
.junk-no-booking-card__badge {
  display: inline-block;
  background: rgba(255, 153, 2, 0.12);
  color: #c96b00;
  border: 1px solid rgba(255, 153, 2, 0.35);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
}

/* Body copy */
.junk-no-booking-card__body {
  font-size: 0.85rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0 0 14px;
}

/* CTA button */
.junk-no-booking-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 16px;
  background: linear-gradient(135deg, #ff9902, #ff6b00);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 10px rgba(255, 102, 0, 0.28);
  transition: opacity 0.18s ease, transform 0.15s ease;
}

.junk-no-booking-card__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* Date & Time Section */
.scheduling-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.date-selection,
.time-selection {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.date-picker-card,
.time-slots-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06), 0 3px 10px rgba(0, 0, 0, 0.04);
}

.date-picker-card::before,
.time-slots-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9902, #ffb84d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.date-picker-card:hover,
.time-slots-card:hover {
  border-color: #ff9902;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 153, 2, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.date-picker-card:hover::before,
.time-slots-card:hover::before {
  transform: scaleX(1);
}

.date-icon,
.time-icon {
  font-size: 32px;
  color: #ff9902;
  margin-bottom: 15px;
  text-align: center;
}

.date-content,
.time-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-content label,
.time-content label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.date-content input[type="date"] {
  width: 100%;
  max-width: 300px;
  padding: 15px;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  text-align: center;
}

.date-content input[type="date"]:focus {
  outline: none;
  border-color: #ff9902;
}

.date-note {
  font-size: 12px;
  color: #7f8c8d;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Legacy styles for backward compatibility */
.date-time-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.date-picker,
.time-slots {
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 2px solid #ecf0f1;
}

.date-picker label,
.time-slots label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 16px;
}

.date-picker input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.date-picker input:focus {
  outline: none;
  border-color: #ff9902;
}

.time-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.time-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 2px solid #ecf0f1;
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-option:hover {
  border-color: #ff9902;
  background: #fff8f0;
}

.time-option input[type="radio"] {
  margin: 0;
}

.time-option input[type="radio"]:checked + label {
  color: #ff9902;
  font-weight: 600;
}

.time-option:has(input:checked) {
  border-color: #ff9902;
  background: #fff8f0;
}

.time-option label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  cursor: pointer;
}

.time-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.time-desc {
  font-size: 12px;
  color: #7f8c8d;
  font-style: italic;
}

.availability-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f4fd;
  color: #2980b9;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 4px solid #3498db;
}

.last-minute-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff3cd;
  color: #856404;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  border-left: 4px solid #ffc107;
  font-size: 14px;
}

.last-minute-notice i {
  color: #ff9800;
  font-size: 18px;
  flex-shrink: 0;
}

.last-minute-notice span {
  line-height: 1.5;
}

.date-smart-tip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 20px;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  animation: slideIn 0.3s ease-out;
  max-width: 100%;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.date-smart-tip i {
  font-size: 32px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.date-smart-tip > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-smart-tip strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  text-align: center;
}

.date-smart-tip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  max-width: 500px;
}

/* Urgent/Last-minute tip styling */
.date-smart-tip.tip-urgent {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
  border-left: 4px solid #ff9902;
}

.date-smart-tip.tip-urgent i {
  color: #ff6600;
}

.date-smart-tip.tip-urgent strong {
  color: #ff6600;
}

/* Weekend tip styling */
.date-smart-tip.tip-weekend {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
  border-left: 4px solid #4caf50;
}

.date-smart-tip.tip-weekend i {
  color: #4caf50;
}

.date-smart-tip.tip-weekend strong {
  color: #2e7d32;
}

/* Weekday tip styling */
.date-smart-tip.tip-weekday {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1565c0;
  border-left: 4px solid #2196f3;
}

.date-smart-tip.tip-weekday i {
  color: #2196f3;
}

.date-smart-tip.tip-weekday strong {
  color: #1565c0;
}

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

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

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

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.required-star {
  color: #e74c3c;
  font-weight: bold;
  margin-left: 3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 18px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  width: 100%;
  box-sizing: border-box;
}
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group.form-error input,
.form-group.form-error textarea,
.form-group.form-error select {
  border-color: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15),
    inset 0 2px 4px rgba(231, 76, 60, 0.1);
  background: #fff6f5;
}

.error-note {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #e74c3c;
  font-weight: 600;
}

.form-group.form-error .error-note {
  display: block;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff9902;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 153, 2, 0.1),
    0 4px 12px rgba(255, 153, 2, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: #ffb84d;
  box-shadow: 0 2px 8px rgba(255, 153, 2, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3e50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.file-upload-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upload-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border: 2px dashed #ff9902;
  border-radius: 10px;
  background: rgba(255, 153, 2, 0.05);
  color: #ff9902;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.upload-btn:hover {
  background: rgba(255, 153, 2, 0.1);
  border-color: #ffb84d;
}

.upload-btn i {
  font-size: 24px;
}

.upload-btn span {
  font-weight: 600;
  font-size: 14px;
}

.upload-btn small {
  font-size: 12px;
  color: #7f8c8d;
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.upload-preview img,
.upload-preview video {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ecf0f1;
}

.upsell-section {
  background: linear-gradient(135deg, #fff8f0, #ffedd6);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  border: 2px solid #ff9902;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.upsell-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  z-index: 1;
}

.upsell-card.selected {
  border-color: #ff9902;
  background: linear-gradient(145deg, #fff8f0, #ffedd6);
}


.upsell-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.upsell-card:hover::before {
  left: 100%;
}

.upsell-card:hover {
  border-color: #ff9902;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 153, 2, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.upsell-icon {
  font-size: 48px;
  color: #ff9902;
  margin-bottom: 15px;
}

.upsell-card h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.upsell-card p {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.upsell-price {
  font-weight: bold;
  color: #ff9902;
  font-size: 16px;
}

.upsell-checkbox {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 1000;
  accent-color: #ff9902;
  pointer-events: auto;
  opacity: 1;
  margin: 0;
}

.upsell-card-label {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.upsell-card h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.upsell-card-label h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.upsell-card p {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.upsell-card-label p {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.upsell-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.payment-info {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.deposit-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff3cd;
  color: #856404;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 4px solid #ffc107;
}

.booking-summary {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  border: 2px solid #ecf0f1;
}

.booking-summary h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 18px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ecf0f1;
}

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

.summary-item.total {
  font-weight: bold;
  font-size: 16px;
  color: #ff9902;
  border-top: 2px solid #ecf0f1;
  padding-top: 15px;
  margin-top: 10px;
}

.payment-form {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #e1e8ed;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.payment-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9902, #ffb84d, #ff9902);
  border-radius: 20px 20px 0 0;
}

.payment-form h4 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

/* Stripe Payment Element Styling */
.stripe-payment-container {
  margin: 20px 0;
}

.stripe-payment-element {
  padding: 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 60px;
}

.stripe-payment-element:focus-within {
  border-color: #ff9902;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 153, 2, 0.1),
    0 4px 12px rgba(255, 153, 2, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transform: translateY(-1px);
}

.stripe-payment-element:hover {
  border-color: #ffb84d;
  box-shadow: 0 2px 8px rgba(255, 153, 2, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.stripe-errors {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
  min-height: 20px;
}

.stripe-errors:empty {
  display: none;
}

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

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.terms-checkbox input[type="checkbox"] {
  margin: 0;
  margin-top: 2px;
}

.terms-checkbox label {
  font-size: 14px;
  color: #7f8c8d;
}

.terms-checkbox a {
  color: #ff9902;
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

.security-badges {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 15px;
  background: #e8f5e8;
  border-radius: 10px;
  border-left: 4px solid #27ae60;
}

.security-badges i {
  color: #27ae60;
  font-size: 18px;
}

.security-badges span {
  color: #27ae60;
  font-size: 14px;
  font-weight: 500;
}

/* Buttons */
.btn {
  padding: 18px 36px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ff9902, #ffb84d);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 153, 2, 0.3), 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 153, 2, 0.4), 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(-1px) scale(1.02);
}

.btn-primary:disabled {
  background: linear-gradient(135deg, #bdc3c7, #95a5a6);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  color: #5a6c7d;
  border: 2px solid #e1e8ed;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: linear-gradient(145deg, #e9ecef, #dee2e6);
  border-color: #ff9902;
  color: #ff9902;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 153, 2, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: #ff9902;
  border: 2px solid #ff9902;
}

.btn-outline:hover {
  background: #ff9902;
  color: white;
  transform: translateY(-2px);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #ecf0f1;
}

/* Confirmation Section */
.confirmation-section {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 249, 250, 0.95)
  );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9902, #ffb84d, #ff9902);
  border-radius: 24px 24px 0 0;
}

.confirmation-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 153, 2, 0.05) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.success-icon {
  font-size: 80px;
  color: #27ae60;
  margin-bottom: 30px;
}

.confirmation-content h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.confirmation-content > p {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.confirmation-details {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: left;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #ecf0f1;
}

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

.detail-item i {
  color: #ff9902;
  width: 20px;
  text-align: center;
}

.support-info {
  background: #e8f4fd;
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid #3498db;
}

.support-info h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.support-info p {
  color: #7f8c8d;
  margin-bottom: 15px;
}

.contact-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #ff9902;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 2px solid #ecf0f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: #2c3e50;
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #7f8c8d;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: #ecf0f1;
  color: #ff9902;
}

.modal-body {
  padding: 30px;
  max-height: 400px;
  overflow-y: auto;
}

.modal-body h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.modal-body p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header-text h1 {
    font-size: 24px;
  }

  .progress-steps {
    flex-wrap: wrap;
    gap: 15px;
  }

  .step-label {
    font-size: 10px;
  }

  .booking-form {
    padding: 20px;
    margin: 0 10px;
  }

  .section-header h2 {
    font-size: 20px;
    flex-direction: column;
    gap: 10px;
  }

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

  .date-time-section,
  .scheduling-container {
    gap: 20px;
  }

  .date-picker-card,
  .time-slots-card {
    padding: 20px;
  }

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

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

  .form-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .upsell-actions {
    flex-direction: column;
    gap: 15px;
  }

  .confirmation-section {
    padding: 40px 20px;
    margin: 0 10px;
  }

  .confirmation-content h2 {
    font-size: 28px;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header {
    padding: 15px 0;
  }

  .logo {
    font-size: 20px;
  }

  .logo i {
    font-size: 24px;
  }

  .booking-form {
    padding: 15px;
    border-radius: 15px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    font-size: 36px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Materials Selector Styles */
.materials-selector {
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.material-input-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: #f8f9fa;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.material-select {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: white;
  color: #2c3e50;
  transition: all 0.2s ease;
  height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.material-select:focus {
  outline: none;
  border-color: #ff9902;
  box-shadow: 0 0 0 3px rgba(255, 153, 2, 0.1);
}

.material-select:hover {
  border-color: #ffb84d;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  padding: 0 8px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  height: 44px;
  flex-shrink: 0;
  max-width: 100px;
}

.qty-label {
  font-size: 13px;
  font-weight: 600;
  color: #5a6c7d;
  white-space: nowrap;
}

.material-quantity-input {
  width: 50px;
  padding: 0;
  border: none;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: #2c3e50;
  text-align: center;
  height: auto;
}

.material-quantity-input:focus {
  outline: none;
}

.material-quantity-input::-webkit-inner-spin-button,
.material-quantity-input::-webkit-outer-spin-button {
  opacity: 1;
  height: 20px;
}

.btn-add-material {
  padding: 12px 14px;
  background: #ff9902;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  height: 44px;
  box-shadow: 0 2px 8px rgba(255, 153, 2, 0.25);
  flex-shrink: 0;
}

.btn-add-material:hover {
  background: #ff8800;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 153, 2, 0.35);
}

.btn-add-material:active {
  transform: translateY(0);
}

.btn-add-material i {
  font-size: 13px;
}

.selected-materials-list {
  min-height: 60px;
  max-height: 350px;
  overflow-y: auto;
  padding: 12px;
  background: #fafbfc;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
}

.selected-materials-list:empty::before {
  content: "No materials added yet";
  display: block;
  text-align: center;
  color: #95a5a6;
  font-size: 14px;
  padding: 30px 20px;
  font-style: italic;
}

.selected-material-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 8px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e1e8ed;
  transition: all 0.2s ease;
  gap: 16px;
}

.selected-material-item:hover {
  border-color: #ff9902;
  box-shadow: 0 2px 8px rgba(255, 153, 2, 0.1);
}

.selected-material-item:last-child {
  margin-bottom: 0;
}

.material-item-info {
  flex: 1;
  min-width: 0;
}

.material-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
  margin-bottom: 6px;
}

.material-details {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.material-quantity,
.material-price {
  color: #7f8c8d;
  font-size: 13px;
}

.material-total {
  font-weight: 700;
  color: #ff9902;
  font-size: 17px;
  margin-left: auto;
}

.btn-remove-material {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-remove-material:hover {
  background: #c0392b;
  transform: scale(1.05);
}

.btn-remove-material i {
  font-size: 14px;
}

.materials-total {
  padding: 16px;
  background: #fff8f0;
  border: 2px solid #ff9902;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.total-label {
  color: #5a6c7d;
}

.total-amount {
  color: #ff9902;
  font-weight: 700;
  font-size: 22px;
}

@media (max-width: 768px) {
  .material-input-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .material-select {
    width: 100%;
    min-width: 100%;
  }

  .qty-control {
    width: 100%;
    justify-content: space-between;
  }

  .material-quantity-input {
    flex: 1;
    text-align: right;
  }

  .btn-add-material {
    width: 100%;
    justify-content: center;
  }

  .selected-material-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .material-details {
    width: 100%;
    justify-content: space-between;
  }

  .material-total {
    margin-left: 0;
  }

  .btn-remove-material {
    align-self: flex-end;
  }

  .materials-total {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .total-amount {
    font-size: 26px;
  }
}

/* Success Page Styles */
.success-body {
  min-height: 100vh;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ff9902 0%, #ffdac0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.success-container {
  width: 100%;
  max-width: 960px;
}

.success-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 24px 65px rgba(255, 153, 2, 0.25);
  border: 3px solid rgba(255, 153, 2, 0.4);
  position: relative;
  overflow: hidden;
}

.success-card::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -160px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 153, 2, 0.18), transparent 60%);
  z-index: 0;
}

.success-card > * {
  position: relative;
  z-index: 1;
}

.success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ff9902;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(255, 153, 2, 0.4);
}

.success-card h1 {
  font-size: 36px;
  margin: 0 0 12px 0;
  color: #1f2a37;
  letter-spacing: 0.5px;
}

.success-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.7;
}

.success-summary,
.success-materials,
.materials-total-line {
  border: 2px solid rgba(255, 153, 2, 0.25);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 249, 242, 0.9);
  margin-bottom: 24px;
}

.success-summary {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 15px;
  color: #243447;
}

.summary-label {
  font-weight: 600;
  color: #5a6c7d;
}

.summary-value {
  font-weight: 600;
  color: #243447;
  text-align: right;
}

.success-materials h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #ff9902;
  font-size: 18px;
}

.material-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 153, 2, 0.25);
}

.material-row:last-child {
  border-bottom: none;
}

.material-name {
  font-weight: 600;
  color: #243447;
  font-size: 15px;
}

.material-meta {
  font-size: 13px;
  color: #718096;
}

.material-total {
  font-weight: 700;
  color: #ff9902;
  font-size: 16px;
  white-space: nowrap;
}

.materials-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #243447;
}

.materials-total-line .total-label {
  color: #5a6c7d;
}

.materials-total-line .total-amount {
  color: #ff9902;
  font-size: 24px;
  font-weight: 700;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 28px;
}

.success-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #4a5568;
  font-size: 14px;
}

.email-status {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-success {
  color: #2f855a;
}

.status-error {
  color: #c53030;
}

.status-pending {
  color: #d97706;
}

.status-success i,
.status-error i,
.status-pending i {
  font-size: 16px;
}

.success-note {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .success-card {
    padding: 32px 24px;
  }

  .success-card h1 {
    font-size: 28px;
  }

  .success-summary,
  .success-materials,
  .materials-total-line {
    padding: 18px;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-value {
    text-align: left;
  }

  .success-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .materials-total-line {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}
