/* Booking form (Netlify) */
.booking-form-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(176, 38, 255, 0.12);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(176, 38, 255, 0.12);
}

@media (min-width: 768px) {
  .booking-form-card {
    padding: 2rem;
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-form-note {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b4c7a;
  background: rgba(176, 38, 255, 0.06);
  border-radius: 0.5rem;
  border-left: 3px solid #b026ff;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .booking-row {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.booking-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3d2a4a;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1020;
  background: #fff;
  border: 1px solid rgba(176, 38, 255, 0.2);
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: #b026ff;
  box-shadow: 0 0 0 3px rgba(176, 38, 255, 0.15);
}

.booking-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.booking-field-error,
.booking-form-error {
  margin: 0;
  font-size: 0.8125rem;
  color: #c62828;
}

.booking-form-error {
  padding: 0.75rem 1rem;
  background: rgba(198, 40, 40, 0.08);
  border-radius: 0.5rem;
}

.booking-privacy {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #6b4c7a;
  text-align: center;
}

.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #b026ff 0%, #ff69b4 100%);
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(176, 38, 255, 0.35);
}

.booking-submit-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.booking-submit-text {
  line-height: 1.2;
}

.booking-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(176, 38, 255, 0.45);
}

.booking-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.booking-success {
  text-align: center;
  padding: 2rem 1rem;
}

.booking-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #b026ff 0%, #ff69b4 100%);
  border-radius: 50%;
}

.booking-success-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3d2a4a;
}

.booking-success-body {
  margin: 0;
  font-size: 1rem;
  color: #6b4c7a;
  line-height: 1.6;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 30px rgba(176, 38, 255, 0.1);
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.pricing-sub {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(176, 38, 255, 0.1);
}

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

.pricing-row strong {
  color: var(--primary-purple);
  font-size: 1.25rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: #666;
  font-style: italic;
}

.contact-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.25rem;
}

.about-features .feature p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #666;
}
