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

:root {
  --primary: #FF6B35;
  --secondary: #004E89;
  --success: #06A77D;
  --light: #F7F7F7;
  --dark: #222;
  --border: #E0E0E0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

/* Navigation */
.navbar {
  background: var(--secondary);
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.navbar .logo h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.navbar .logo p {
  font-size: 14px;
  opacity: 0.9;
}

/* Services Section */
.services {
  margin-bottom: 60px;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
  color: var(--dark);
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.price {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary);
  margin: 15px 0;
}

.description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background: #E55A24;
  transform: scale(1.02);
}

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

.btn-secondary:hover {
  background: #003A6B;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
  width: 100%;
}

.btn-back {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-back:hover {
  color: #E55A24;
}

/* Booking Section */
.booking {
  background: white;
  padding: 40px 0;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.booking h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.selected-service {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 18px;
}

/* Form */
.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 30px;
}

.price-summary {
  margin-top: 15px;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

/* Confirmation Section */
.confirmation {
  padding: 60px 0;
}

.confirmation-box {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 12px;
  border: 2px solid var(--success);
  text-align: center;
}

.checkmark {
  font-size: 80px;
  color: var(--success);
  margin-bottom: 20px;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.confirmation h2 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.booking-id {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 600;
}

.confirmation-details {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: left;
}

.confirmation-details h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

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

.detail-row .label {
  font-weight: 600;
  color: var(--dark);
}

.detail-row .value {
  color: var(--primary);
  font-weight: 600;
}

.next-steps {
  text-align: left;
  margin: 30px 0;
  padding: 20px;
  background: rgba(6, 168, 125, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--success);
}

.next-steps h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

.next-steps ol {
  margin-left: 20px;
}

.next-steps li {
  margin-bottom: 10px;
  color: var(--dark);
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

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

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 20px;
  }

  .confirmation-box {
    padding: 30px;
  }

  .navbar .logo h1 {
    font-size: 24px;
  }

  .services h2 {
    font-size: 24px;
  }

  .confirmation h2 {
    font-size: 24px;
  }

  .checkmark {
    font-size: 60px;
  }
}