@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black-true: #000;
  --black-900: #0B0B0C;
  --black-800: #101113;
  --outline: rgba(255, 255, 255, .06);
  --ink: #DCDCDC;
  --ink-dim: #A9A9A9;
  --ink-muted: #8A8A8A;
  --accent: #C5A572;
  --accent-2: #9B7F4E;
  --glass: rgba(16, 17, 19, .75);
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .6);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: radial-gradient(1200px 800px at 70% -10%, #111 0%, #0A0A0A 35%, #050505 70%, var(--black-true) 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer-include {
  margin-top: auto;
  width: 100%;
}

h1, h2, h3 {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(197, 165, 114, .18);
  outline-offset: 2px;
}

/* Booking Container */
.booking-container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 2rem 4rem;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Progress Bar */
.progress-container {
  margin-bottom: 3rem;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--outline));
  z-index: -1;
  border-radius: 2px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  transition: all 0.3s;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--glass);
  border: 3px solid var(--outline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-dim);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  color: #0f0f10;
  box-shadow: 0 8px 24px rgba(197, 165, 114, .4);
  transform: scale(1.1);
}

.step-label {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 600;
  transition: color 0.3s;
}

.progress-step.active .step-label {
  color: var(--accent);
}

/* Booking Steps */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-content {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--outline);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.step-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), #E8D4A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--accent);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, .05);
  border: 2px solid var(--outline);
  border-radius: 12px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, .12);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(197, 165, 114, .1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Service Packages */
.service-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.package-option {
  background: rgba(255, 255, 255, .03);
  border: 2px solid var(--outline);
  border-radius: 20px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.package-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.package-option:hover::before {
  opacity: 1;
}

.package-option:hover {
  border-color: rgba(197, 165, 114, .3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.package-option.selected {
  border-color: var(--accent);
  background: rgba(197, 165, 114, .08);
  box-shadow: 0 8px 32px rgba(197, 165, 114, .2);
  transform: translateY(-2px);
}

.package-option.featured {
  border-color: rgba(197, 165, 114, .3);
  background: linear-gradient(135deg, rgba(197, 165, 114, .08), rgba(155, 127, 78, .04));
}

.package-option h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.package-time {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.package-option ul {
  list-style: none;
  margin-top: 1rem;
}

.package-option ul li {
  padding: 0.5rem 0;
  color: var(--ink-dim);
  position: relative;
  padding-left: 1.5rem;
  transition: color 0.2s;
}

.package-option:hover ul li {
  color: var(--ink);
}

.package-option ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Add-ons */
.add-ons {
  margin-top: 2rem;
}

.add-on-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.add-on-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, .03);
  border: 2px solid var(--outline);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-on-item:hover {
  border-color: rgba(197, 165, 114, .3);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-2px);
}

.add-on-item:has(input:checked) {
  border-color: var(--accent);
  background: rgba(197, 165, 114, .08);
}

.add-on-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent);
}

.add-on-item span {
  color: var(--ink-dim);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Service Type */
.service-type {
  margin-bottom: 2rem;
}

.service-options {
  display: flex;
  gap: 1rem;
}

.service-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, .03);
  border: 2px solid var(--outline);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.service-option:hover {
  border-color: rgba(197, 165, 114, .3);
  transform: translateY(-2px);
}

.service-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(197, 165, 114, .08);
}

.service-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent);
}

.service-option span {
  color: var(--ink-dim);
  font-weight: 600;
}

/* Location Sections */
.location-section {
  margin-bottom: 2rem;
}

.location-section p {
  color: var(--ink-dim);
  line-height: 1.8;
}

/* Date Time */
.date-time {
  margin-bottom: 2rem;
}

/* Payment Section */
.payment-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--outline);
}

.payment-info {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 1.5rem;
}

.payment-info p {
  color: var(--ink-dim);
  margin-bottom: 1rem;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-methods span {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--outline);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

/* Checkbox Labels */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent);
}

.checkbox-label span {
  color: var(--ink-dim);
}

/* Step Actions */
.step-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--outline);
}

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 100%;
}

.btn-primary {
  color: #0f0f10;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 16px rgba(197, 165, 114, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 114, .4);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .05);
  border: 2px solid var(--outline);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(197, 165, 114, .3);
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
}

/* Price Summary */
.price-summary {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, rgba(16,17,19,.95), rgba(11,11,12,.95));
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  z-index: 999;
  animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  color: var(--ink-dim);
  font-size: 0.95rem;
  font-weight: 500;
}

.price-value {
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}

.price-item.total {
  padding-top: 0.75rem;
  border-top: 1px solid var(--outline);
  margin-top: 0.5rem;
}

.price-item.total .price-label {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
}

.price-item.total .price-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #E8D4A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .booking-container {
    padding: 120px 1rem 3rem;
  }

  .step-content {
    padding: 2rem 1.5rem;
  }

  .step-content h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-packages {
    grid-template-columns: 1fr;
  }

  .service-options {
    flex-direction: column;
  }

  .add-on-grid {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column-reverse;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .price-summary {
    position: static;
    margin: 2rem auto 0;
    max-width: 400px;
  }

  .progress-bar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 10px;
  }

  .step-label {
    font-size: 0.75rem;
  }

  .progress-bar::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .step-content h2 {
    font-size: 1.75rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .package-price {
    font-size: 2rem;
  }
}
