/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Hero Section */
.booking-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: var(--color-text-light);
  padding: var(--space-12) var(--space-4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.booking-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.booking-hero__title {
  color: var(--color-text-light);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
  font-family: var(--font-heading);
}

.booking-hero__subtitle {
  font-size: var(--text-xl);
  line-height: var(--line-height-relaxed);
  opacity: 0.95;
  max-width: 65ch;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .booking-hero__title {
    font-size: var(--text-3xl);
  }

  .booking-hero__subtitle {
    font-size: var(--text-lg);
  }
}

/* Booking Info Section */
.booking-info {
  padding: var(--space-12) 0;
  background-color: var(--color-background);
}

.section-title {
  text-align: center;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-8);
  color: var(--color-text);
  font-family: var(--font-heading);
}

.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: var(--space-6);
}

.booking-info-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  transition: all var(--transition-base);
  text-align: center;
}

.booking-info-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.booking-info-card__number {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  color: var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: bold;
  margin: 0 auto var(--space-4);
  font-family: var(--font-heading);
}

.booking-info-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-text);
  font-family: var(--font-heading);
}

.booking-info-card p {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  font-size: var(--text-base);
}

/* Form Section */
.booking-form-section {
  padding: var(--space-12) 0;
  background-color: var(--color-surface);
}

.booking-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

/* Form Fieldsets */
.form-fieldset {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background-color: var(--color-surface);
}

.form-legend {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-heading);
  margin-bottom: var(--space-4);
  display: block;
  padding: 0 var(--space-2);
}

/* Form Groups */
.form-group {
  margin-bottom: var(--space-5);
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--text-base);
  cursor: pointer;
}

.form-label-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3);
  cursor: pointer;
  font-weight: normal;
}

.form-label-checkbox input[type="checkbox"],
.form-label-checkbox input[type="radio"] {
  margin-right: var(--space-3);
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.form-label-checkbox span {
  flex: 1;
}

/* Form Inputs */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.form-textarea {
  resize: vertical;
  font-family: inherit;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234A3728'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 20px;
  padding-right: var(--space-8);
  appearance: none;
}

.form-help-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  font-style: italic;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.form-actions .btn {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 768px) {
  .booking-form-wrapper {
    padding: var(--space-4);
  }

  .form-fieldset {
    padding: var(--space-4);
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: var(--text-2xl);
  }
}

/* FAQ Section */
.booking-faq {
  padding: var(--space-12) 0;
  background-color: var(--color-background);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}

.faq-item__question {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 600;
}

.faq-item__answer {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  font-size: var(--text-base);
  margin: 0;
}

/* Contact Alternative Section */
.booking-contact-alt {
  padding: var(--space-12) 0;
  background-color: var(--color-surface);
  text-align: center;
}

.booking-contact-alt h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
  font-family: var(--font-heading);
}

.booking-contact-alt > p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

.contact-alt__methods {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-base);
  min-width: 200px;
}

.contact-method:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-method i {
  font-size: 2rem;
  color: var(--color-accent);
}

.contact-method span {
  font-weight: 500;
  font-size: var(--text-base);
}

/* Guarantee Section */
.booking-guarantee {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  position: relative;
  overflow: hidden;
}

.booking-guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.guarantee-card {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.guarantee-card h2 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
}

.guarantee-card p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.guarantee-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
  text-align: left;
}

.guarantee-features li {
  text-align: center;
  font-weight: 500;
  color: var(--color-text);
  font-size: var(--text-base);
}

@media (max-width: 768px) {
  .booking-contact-alt h2 {
    font-size: var(--text-2xl);
  }

  .contact-alt__methods {
    flex-direction: column;
  }

  .contact-method {
    width: 100%;
  }

  .guarantee-card {
    padding: var(--space-6);
  }

  .guarantee-card h2 {
    font-size: var(--text-xl);
  }

  .guarantee-features {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: var(--text-2xl);
  }
}
