/* ==========================================================================
   Booking Page Styles
   ========================================================================== */

/* Hero Section */
.booking-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fbfbfb 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.booking-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.booking-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.booking-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-hero-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.booking-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.booking-hero .subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Main Booking Section */
.booking-section {
  padding: 80px 0;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column - Info */
.booking-info {
  padding-right: 40px;
}

.booking-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

.booking-info-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Meeting Details */
.meeting-details {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
}

.meeting-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.meeting-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.meeting-item:last-child {
  margin-bottom: 0;
}

.meeting-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.meeting-icon svg {
  width: 20px;
  height: 20px;
  color: #000;
}

.meeting-item-content {
  flex: 1;
}

.meeting-item-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 2px;
}

.meeting-item-value {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

/* Topics List */
.topics-section {
  margin-bottom: 40px;
}

.topics-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}

.topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topics-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.topics-list li:last-child {
  border-bottom: none;
}

.topic-check {
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.topic-check svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.topic-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Contact Alternative */
.contact-alternative {
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-alternative-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-alternative-text strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.contact-alternative a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.contact-alternative a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Right Column - Calendly Widget */
.booking-calendar-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-calendar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-height: 650px;
}

.calendly-inline-widget {
  min-width: 100%;
  height: 650px !important;
}

/* Benefits Section */
.booking-benefits {
  padding: 60px 0;
  background: #f8f8f8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-item {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: #000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .booking-hero h1 {
    font-size: 36px;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-info {
    padding-right: 0;
    order: 2;
  }

  .booking-calendar-column {
    order: 1;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .booking-hero {
    padding: 60px 0 40px;
  }

  .booking-hero h1 {
    font-size: 28px;
  }

  .booking-hero .subtitle {
    font-size: 16px;
  }

  .booking-section {
    padding: 40px 0;
  }

  .booking-info h2 {
    font-size: 24px;
  }

  .meeting-details {
    padding: 24px;
  }

  .contact-alternative {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-item {
    padding: 24px 20px;
  }
}

@media screen and (max-width: 479px) {
  .booking-hero h1 {
    font-size: 24px;
  }

  .booking-hero-icon {
    width: 64px;
    height: 64px;
  }

  .booking-hero-icon svg {
    width: 28px;
    height: 28px;
  }

  .calendly-inline-widget {
    height: 550px !important;
  }

  .booking-calendar {
    min-height: 550px;
  }
}
