/* Booking Page Specific Styles */

/* Active nav state for booking page */
.nav-cta.active {
  background: #1557b0 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

/* Booking Hero Section */
.booking-hero {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
  padding: 120px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.booking-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.session-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 40px;
}

.info-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.info-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* What to Expect Section */
.what-to-expect {
  background: white;
  padding: 80px 0;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.expectation-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.expectation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expectation-number {
  background: #1a73e8;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.expectation-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.expectation-content p {
  color: #666;
  line-height: 1.6;
}

/* Calendly Section */
.calendly-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
  padding: 80px 0;
}

.calendly-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.calendly-header {
  text-align: center;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  color: white;
}

.calendly-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.calendly-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.calendly-widget-container {
  padding: 0;
  background: white;
}

/* Loading Animation */
.calendly-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: white;
}

.calendly-loading.hidden {
  display: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1a73e8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.calendly-loading p {
  color: #666;
  font-size: 1.1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Booking Testimonials */
.booking-testimonials {
  background: white;
  padding: 80px 0;
}

.booking-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.booking-testimonials .testimonial-card {
  background: #f8f9ff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.booking-testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.booking-testimonials .testimonial-card p {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.booking-testimonials .testimonial-author {
  font-weight: 600;
  color: #1a73e8;
}

/* FAQ Section */
.booking-faq {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .booking-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .session-info {
    grid-template-columns: 1fr;
  }

  .info-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .expectations-grid {
    grid-template-columns: 1fr;
  }

  .expectation-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .calendly-header {
    padding: 2rem 1rem 1.5rem;
  }

  .calendly-header h2 {
    font-size: 2rem;
  }

  .calendly-header p {
    font-size: 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .calendly-header h2 {
    font-size: 1.75rem;
  }

  .expectation-item {
    padding: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .booking-testimonials .testimonial-card {
    padding: 1.5rem;
  }
}

/* Calendly Widget Responsive Overrides */
@media (max-width: 768px) {
  .calendly-inline-widget {
    min-width: 280px !important;
    height: 600px !important;
  }
}

@media (max-width: 480px) {
  .calendly-inline-widget {
    min-width: 260px !important;
    height: 550px !important;
  }
}
