/* Land Wash Booking - Scoped styles to prevent WordPress theme conflicts */
.landwash-booking-wrapper {
  --primary-color: #cdff00;
  --dark-bg: #1a1a1a;
  --text-dark: #000;
  --text-light: #fff;
  --border-color: #ddd;
  --gray-bg: #f5f5f5;

  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.landwash-booking-wrapper *,
.landwash-booking-wrapper *::before,
.landwash-booking-wrapper *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
.booking-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Header */
.landwash-hero {
  text-align: center;
  padding: 50px 20px 30px;
}

.landwash-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.title-highlight {
  color: var(--primary-color);
  background: #1a1a1a;
  padding: 2px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

.landwash-hero-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Step Headers */
.step-label {
  text-align: center;
  margin: 10px 0 10px;
  font-size: 24px;
  letter-spacing: 2px;
  color: #7CB518;
  font-weight: 600;
}

.step-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.step-content {
  display: block;
  min-height: auto;
  padding: 30px 0;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.step-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for children */
.step-content.visible .service-card,
.step-content.visible .location-item,
.step-content.visible .date-cell,
.step-content.visible .time-slot,
.step-content.visible .summary-item {
  animation: slideUp 0.5s ease forwards;
  opacity: 0;
}

.step-content.visible .service-card:nth-child(1),
.step-content.visible .summary-item:nth-child(1) {
  animation-delay: 0.1s;
}
.step-content.visible .service-card:nth-child(2),
.step-content.visible .summary-item:nth-child(2) {
  animation-delay: 0.2s;
}
.step-content.visible .service-card:nth-child(3),
.step-content.visible .summary-item:nth-child(3) {
  animation-delay: 0.3s;
}
.step-content.visible .summary-item:nth-child(4) {
  animation-delay: 0.4s;
}
.step-content.visible .summary-item:nth-child(5) {
  animation-delay: 0.5s;
}
.step-content.visible .summary-item:nth-child(6) {
  animation-delay: 0.6s;
}

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

/* ===== STEP 1: Service Cards (Car Type + Plan) ===== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease,
              filter 0.4s ease,
              box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s ease;
  border: 3px solid transparent;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-card.selected {
  border-color: var(--primary-color);
  transform: scale(1.05) translateY(-8px);
  box-shadow:
    0 0 25px rgba(205, 255, 0, 0.12),
    0 30px 60px -10px rgba(0, 0, 0, 0.5),
    0 15px 30px -5px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.service-card:not(.selected) {
  transform: scale(0.93) translateY(6px);
  opacity: 0.45;
  filter: blur(1px);
}

.service-card:not(.selected):hover {
  transform: scale(0.96);
  opacity: 0.75;
  filter: blur(0px);
}

.service-card-header {
  background: #1a1a1a;
  padding: 25px 25px 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-card-info {
  flex: 1;
}

.service-card-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-card-subtitle {
  color: #888;
  font-size: 14px;
}

.service-card-price {
  background: var(--primary-color);
  color: black;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.service-card-image {
  background: #1a1a1a;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-features {
  background: white;
  padding: 25px;
}

.service-card-features h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card-features ul {
  list-style: none;
}

.service-card-features li {
  padding: 10px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.service-card-features li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
}

/* Scroll indicator - hidden on desktop */
.scroll-indicator {
  display: none;
}

/* ===== STEP 2: Location Selection ===== */
.location-container {
  margin: 40px 0;
}

/* Location input with locate button */
.location-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.location-search {
  flex: 1;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.location-search:focus {
  outline: none;
  border-color: var(--primary-color);
}

.locate-me-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--dark-bg);
  color: var(--primary-color);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
}

.locate-me-btn:hover {
  opacity: 0.85;
}

.locate-me-btn.loading {
  pointer-events: none;
  animation: pulse-opacity 1s ease-in-out infinite;
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin: 20px 0;
  background-color: var(--gray-bg);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.location-item {
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-item:hover {
  border-color: var(--primary-color);
  background-color: var(--gray-bg);
}

.location-item.selected {
  background-color: var(--primary-color);
  color: black;
  border-color: var(--primary-color);
  font-weight: 600;
}

/* ===== STEP 3: Date & Time ===== */

/* Loading Overlay */
.slots-loading {
  display: none;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slots-loading-content {
  text-align: center;
}

.slots-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #eee;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

.slots-loading-content p {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Slots wrapper for positioning */
.slots-wrapper {
  position: relative;
}

/* Blur and disable when loading */
.step-content.loading .slots-loading {
  display: block;
}

.step-content.loading .slots-wrapper .date-picker-container,
.step-content.loading .slots-wrapper .time-section-title,
.step-content.loading .slots-wrapper .time-slots {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

/* No location selected state */
.step-content.no-location #noLocationOverlay {
  display: block;
}

.step-content.no-location .slots-wrapper .date-picker-container,
.step-content.no-location .slots-wrapper .time-section-title,
.step-content.no-location .slots-wrapper .time-slots {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
}

.step-content.no-location #noLocationOverlay svg {
  margin-bottom: 12px;
}

.no-location-link {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 16px;
  background: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.no-location-link:hover {
  background: #333;
  border-color: #333;
}

/* Out of range banner */
.out-of-range-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
}

.out-of-range-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.out-of-range-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #e65100;
  margin: 0 0 6px;
}

.out-of-range-content p {
  font-size: 14px;
  color: #555;
  margin: 0 0 4px;
  line-height: 1.5;
}

.out-of-range-hint {
  font-size: 13px !important;
  color: #888 !important;
  font-style: italic;
}

.zone-link {
  color: #1a73e8;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}

.zone-link:hover {
  color: #1558b0;
}

/* Disable step 3 when out of range */
.step-content.out-of-range .slots-wrapper .date-picker-container,
.step-content.out-of-range .slots-wrapper .time-section-title,
.step-content.out-of-range .slots-wrapper .time-slots {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.date-picker-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/* Flatpickr Custom Theme */
.flatpickr-calendar {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: none;
  font-family: inherit;
}

.flatpickr-calendar.inline {
  width: auto;
}

.flatpickr-months {
  padding: 15px 0 10px;
}

.flatpickr-months .flatpickr-month {
  height: 40px;
}

.flatpickr-current-month {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  padding: 10px;
  fill: #333;
  transition: all 0.2s ease;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  fill: var(--primary-color);
}

.flatpickr-weekdays {
  padding: 0;
}

.flatpickr-weekday {
  color: #999;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.flatpickr-days {
  padding: 0 0 15px;
}

.dayContainer {
  min-width: 307.875px;
  max-width: 307.875px;
}

.flatpickr-day {
  border-radius: 10px;
  color: #333;
  font-weight: 500;
  height: 39px;
  line-height: 39px;
  transition: all 0.2s ease;
}

.flatpickr-day:hover {
  background: #f5f5f5;
  border-color: transparent;
}

.flatpickr-day.today {
  border-color: transparent;
}

.flatpickr-day.today.selected {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: black !important;
  font-weight: 700;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #ddd;
  background: transparent;
  cursor: not-allowed;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #ccc;
}

.time-section-title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin: 40px 0 20px;
  text-align: center;
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.time-slot-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #eee;
}

.time-slot-card:hover {
  border-color: #ddd;
  background: #fafafa;
}

.time-slot-card.selected {
  border-color: var(--primary-color);
  background: #f9ffe6;
}

.time-slot-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
  border-color: #ddd;
}

.time-slot-card.disabled:hover {
  border-color: #ddd;
  background: #f5f5f5;
}

.time-slot-card.disabled .time-slot-label::after {
  content: " (Complet)";
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.time-slot-icon {
  font-size: 24px;
}

.time-slot-info {
  flex: 1;
}

.time-slot-label {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.time-slot-detail {
  color: #888;
  font-size: 13px;
}

/* ===== STEP 4: Checkout ===== */
.checkout-card {
  max-width: 480px;
  margin: 40px auto;
  background: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.checkout-header {
  background: var(--primary-color);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-brand {
  font-size: 18px;
  font-weight: 800;
  color: black;
  letter-spacing: 2px;
}

.checkout-badge {
  font-size: 11px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

.checkout-details {
  padding: 25px;
  border-bottom: 1px dashed #333;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.checkout-label {
  color: #aaa;
  font-size: 13px;
}

.checkout-value {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.checkout-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #111;
}

.checkout-price-label {
  color: #aaa;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-price-value {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 800;
}

.checkout-form {
  padding: 25px;
  background: white;
  border-radius: 0;
}

.checkout-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.checkout-input-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.landwash-booking-wrapper .checkout-input-group input[type="tel"],
.landwash-booking-wrapper .checkout-input-group input[type="email"] {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 2px solid #eee !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
  color: #000 !important;
  height: auto !important;
  line-height: normal !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  outline: none !important;
}

.landwash-booking-wrapper .checkout-input-group input[type="tel"]:focus,
.landwash-booking-wrapper .checkout-input-group input[type="email"]:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.15) !important;
}

.landwash-booking-wrapper .checkout-input-group input::placeholder {
  color: #ccc !important;
}

.input-hint {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 6px;
}

/* Phone Input */
.landwash-booking-wrapper .phone-input-wrapper {
  display: flex !important;
  align-items: center !important;
  border: 2px solid #eee !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
}

.landwash-booking-wrapper .phone-input-wrapper:focus-within {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.15) !important;
}

.landwash-booking-wrapper .phone-prefix {
  background: #f5f5f5 !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
  border-right: 2px solid #eee !important;
  user-select: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
}

.landwash-booking-wrapper .phone-input-wrapper input[type="tel"] {
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  font-weight: 500 !important;
  background: #fff !important;
  color: #000 !important;
  height: auto !important;
  line-height: normal !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  outline: none !important;
  flex: 1 !important;
}

.landwash-booking-wrapper .phone-input-wrapper input[type="tel"]:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: black;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-btn:hover {
  background: #d4ff1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(205, 255, 0, 0.3);
}

.checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.checkout-btn.loading {
  position: relative;
  color: transparent;
}

.checkout-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: black;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-back-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #666;
  border: none;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.checkout-back-btn:hover {
  color: #333;
}

/* OTP Section */
.otp-section {
  text-align: center;
  padding: 20px 0;
}

.otp-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.otp-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.otp-description {
  font-size: 13px;
  color: #888;
  margin-bottom: 25px;
}

.otp-description span {
  color: #333;
  font-weight: 600;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.otp-input {
  width: 45px;
  height: 52px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid #eee;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.otp-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.15);
}

.otp-input.filled {
  border-color: var(--primary-color);
  background: #f9ffe6;
}

.otp-input.error {
  border-color: #ff4444;
  background: #fff5f5;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.otp-resend {
  font-size: 13px;
  color: #888;
}

.otp-resend button {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

/* Booking Success */
.booking-success {
  padding: 40px 25px;
  text-align: center;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: black;
  font-weight: bold;
}

.booking-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.booking-success > p {
  color: white;
  font-size: 14px;
  margin-bottom: 25px;
}

.success-details {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin-bottom: 20px;
}

.success-details p {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

.success-details strong {
  color: #666;
  font-weight: 500;
}

.success-note {
  font-size: 13px;
  color: #888;
}

.redo-btn {
  margin-top: 20px !important;
}

/* App Promo Section — inside checkout-card, clipped by overflow:hidden */
.app-promo {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 25px;
}

.app-promo-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.app-promo-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}

.app-promo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-promo-text {
  flex: 1;
}

.app-promo-text h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.app-promo-text p {
  color: #999;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
}

.app-store-buttons {
  display: flex;
  gap: 10px;
}

.store-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.store-btn svg {
  width: 18px;
  height: 18px;
}

.store-btn.app-store {
  background: white;
  color: black;
}

.store-btn.app-store:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.store-btn.play-store {
  background: var(--primary-color);
  color: black;
}

.store-btn.play-store:hover {
  background: #d4ff1a;
  transform: translateY(-2px);
}

.otp-resend button:hover {
  text-decoration: underline;
}

/* Toast */
.landwash-toast {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: #1a1a1a;
  color: var(--primary-color);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  z-index: 9999;
}

.landwash-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.otp-resend button:disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 40px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background-color: #d4ff1a;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(205, 255, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: black;
}

.btn-outline {
  background-color: black;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: black;
}

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

/* Responsive */
@media (max-width: 768px) {
  .landwash-hero {
    padding: 20px 15px 15px;
  }

  .landwash-hero-title {
    font-size: 28px;
  }

  .landwash-hero-subtitle {
    font-size: 15px;
  }

  .step-title {
    font-size: 28px;
  }

  /* Horizontal scroll carousel for service cards */
  .service-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 20px 30px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    position: relative;
    z-index: 1;
    scroll-padding: 20px;
  }

  .service-cards::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.88);
    opacity: 0.45;
    transition:
      transform 0.4s ease,
      opacity 0.4s ease,
      border-color 0.4s ease,
      box-shadow 0.4s ease;
  }

  .service-card.in-view {
    transform: scale(0.95);
    opacity: 0.7;
  }

  .service-card.selected.in-view {
    transform: scale(1.02);
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(205, 255, 0, 0.15), 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  .service-card-header {
    flex-direction: column;
    gap: 15px;
  }

  .service-card-price {
    align-self: flex-start;
  }

  .service-card-title {
    font-size: 20px;
  }

  .service-card-image {
    height: 180px;
  }

  /* Scroll indicator dots */
  .scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
  }

  .scroll-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
  }

  .flatpickr-calendar {
    max-width: 100%;
  }

  .flatpickr-day {
    height: 40px;
    line-height: 40px;
  }

  /* Checkout responsive */
  .checkout-card {
    margin: 20px auto;
    border-radius: 20px;
  }

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

  .checkout-price-value {
    font-size: 24px;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Step visibility */
.hidden {
  display: none !important;
}

/* Step divider */
.step-content:not(:last-child)::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  margin: 20px auto 0;
}

/* Extra padding at bottom */
.step-content:last-child {
  padding-bottom: 40px;
}
