/* --- BOOK A CALL PAGE --- */
.book-call-page {
  background-color: var(--color-offwhite); /* #FAFAF8 */
  color: var(--color-anthracite);
  padding-top: 150px; /* Offset for absolute header */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Light Theme Header Overrides (Same as contact.css) */
.luxury-header.light-theme a,
.luxury-header.light-theme .logo-title,
.luxury-header.light-theme .lang-active,
.luxury-header.light-theme .header-status,
.luxury-header.light-theme .header-left a,
.luxury-header.light-theme .header-right a {
  color: var(--color-anthracite);
}
.luxury-header.light-theme .header-top {
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
}
.luxury-header.light-theme .logo-subtitle {
  color: var(--color-anthracite);
  opacity: 0.8;
}
.luxury-header.light-theme .main-nav a::after {
  background-color: var(--color-terracotta);
}
.luxury-header.light-theme .lang-separator {
  color: var(--color-anthracite);
  opacity: 0.3;
}

/* Main Container */
.book-call-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* Hero Section */
.book-call-hero {
  text-align: center;
  max-width: 600px;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-icon {
  color: var(--color-olive-dark);
  margin-bottom: 1.5rem;
}

.book-call-hero h1 {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.book-call-hero p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(28, 28, 28, 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.btn-book-cta {
  display: inline-block;
  background-color: var(--color-olive-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--color-olive-dark);
  transition: all 0.4s ease;
}

.btn-book-cta:hover {
  background-color: transparent;
  color: var(--color-olive-dark);
}

/* Booking Widget */
.booking-widget-wrapper {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(28, 28, 28, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 3rem;
  margin-bottom: 4rem;
  display: none; /* Hidden by default until CTA is clicked */
}

/* Mockup UI for Booking Widget */
.widget-steps {
  display: flex;
  gap: 2rem;
}

.widget-col {
  flex: 1;
}

.widget-col-header {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
}

/* Simulated Calendar */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  text-align: center;
}
.cal-day-header {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(28, 28, 28, 0.5);
  margin-bottom: 0.5rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
}
.cal-day:hover {
  background-color: rgba(28, 28, 28, 0.05);
}
.cal-day.empty { cursor: default; background: none; }
.cal-day.active { background-color: var(--color-olive-dark); color: #fff; }

/* Simulated Time Slots */
.time-slots {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.time-slot {
  border: 1px solid rgba(28, 28, 28, 0.2);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.time-slot:hover, .time-slot.active {
  border-color: var(--color-olive-dark);
  background-color: var(--color-olive-dark);
  color: #fff;
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(28, 28, 28, 0.2);
  padding: 0.8rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-anthracite);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}
.booking-form input::placeholder {
  color: rgba(28, 28, 28, 0.6);
}
.booking-form input:focus {
  border-bottom-color: var(--color-olive-dark);
}
.btn-submit-booking {
  background-color: var(--color-anthracite);
  color: #fff;
  border: none;
  padding: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
}
.btn-submit-booking:hover {
  background-color: var(--color-olive-dark);
}

/* Reassurance Section */
.reassurance {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(28, 28, 28, 0.7);
}
.reassurance-item svg {
  color: var(--color-olive-dark);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .book-call-hero h1 { font-size: 3rem; }
  .widget-steps {
    flex-direction: column;
    gap: 3rem;
  }
  .booking-widget-wrapper {
    padding: 2rem 1.5rem;
  }
  .reassurance {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}
