/* Google Reviews Section */
.v3-google-reviews {
  padding: 6rem 0;
  background: #f8f9fa;
}

.v3-google-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-google-reviews-header {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.v3-google-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v3-google-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.v3-google-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.v3-google-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v3-google-rating {
  font-size: 1.2rem;
  font-weight: 700;
}

.v3-stars {
  display: flex;
  color: #FFBF00;
}

.v3-star, .v3-star-half {
  font-size: 1.2rem;
}

.v3-reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.v3-reviews-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 300px;
}

.v3-review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.v3-review-active {
  opacity: 1;
  transform: translateX(0);
}

.v3-review-stars {
  color: #FFBF00;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.v3-review-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.v3-reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v3-reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
}

.v3-reviewer-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.v3-review-date {
  font-size: 0.9rem;
  color: #777;
}

.v3-review-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.v3-review-nav:hover {
  background: #f8f8f8;
  transform: scale(1.1);
}

.v3-review-prev {
  margin-right: 1rem;
}

.v3-review-next {
  margin-left: 1rem;
}

.v3-review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.v3-review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-review-dot-active {
  background: #FE8E40;
  transform: scale(1.2);
}

/* FAQ Section */
.v3-faq {
  padding: 6rem 0;
  background: #FE8E40;
}

.v3-faq-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-faq-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.v3-faq-header {
  position: sticky;
  top: 2rem;
}

.v3-faq-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
  color: #333;
  line-height: 1.2;
}

.v3-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v3-faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.v3-faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.v3-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.v3-faq-question:hover {
  background: #f8f9fa;
}

.v3-faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.v3-faq-open .v3-faq-icon {
  transform: rotate(45deg);
}

.v3-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.v3-faq-open .v3-faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.v3-faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Booking Calendar Section */
.v3-booking {
  padding: 6rem 0;
  background: #F9A8D4;
}

.v3-booking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.v3-booking-content {
  width: 100%;
  max-width: 800px;
}

.v3-booking-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.v3-booking-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.v3-booking-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #555;
}

.v3-booking-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.v3-booking-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.v3-booking-duration, .v3-booking-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #666;
}

.v3-booking-icon {
  font-size: 1.1rem;
}

.v3-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.25rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.v3-booking-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(59, 130, 246, 0.08));
  border-radius: 14px;
  border: 1px solid rgba(236, 72, 153, 0.15);
}

.v3-booking-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.v3-booking-step-copy h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
}

.v3-booking-step-copy p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.v3-booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.v3-booking-field label {
  font-weight: 600;
  color: #444;
}

.v3-booking-field input,
.v3-booking-field select,
.v3-booking-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v3-booking-field input:focus,
.v3-booking-field select:focus,
.v3-booking-field textarea:focus {
  outline: none;
  border-color: #f472b6;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}

.v3-booking-field select:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}

.v3-booking-field textarea {
  resize: vertical;
  min-height: 120px;
}

.v3-booking-error {
  margin: 0;
  color: #dc2626;
  font-size: 0.9rem;
  font-weight: 500;
}

.v3-booking-status {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
}

.v3-booking-status--success {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}

.v3-booking-status--error {
  background: rgba(248, 113, 113, 0.15);
  color: #b91c1c;
}

.v3-booking-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.v3-booking-next {
  padding: 0.85rem 1.95rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.v3-booking-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.28);
}

.v3-booking-next:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.v3-booking-submit {
  align-self: flex-start;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.v3-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(236, 72, 153, 0.35);
}

.v3-booking-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.v3-booking-summary {
  margin-top: 2rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.v3-booking-summary h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.v3-booking-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.v3-booking-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  color: #444;
}

.v3-booking-summary span {
  color: #666;
}

.v3-booking-summary strong {
  font-weight: 600;
  color: #111;
}

.v3-booking-calendar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.12), rgba(59, 130, 246, 0.05) 55%, rgba(255, 255, 255, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.v3-booking-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.v3-booking-calendar-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.75);
  color: #4f46e5;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.v3-booking-calendar-nav:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(59, 130, 246, 0.15));
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.25);
}

.v3-booking-calendar-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.v3-booking-calendar-label {
  font-weight: 700;
  text-transform: capitalize;
  color: #111827;
  font-size: 1.15rem;
}

.v3-booking-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  gap: 0.5rem;
}

.v3-booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.v3-booking-calendar-cell--empty {
  height: 46px;
}

.v3-booking-calendar-day {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.85);
  color: #1f2937;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.08);
}

.v3-booking-calendar-day:hover {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(59, 130, 246, 0.18));
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow: 0 12px 18px rgba(236, 72, 153, 0.18);
  transform: translateY(-2px);
}

.v3-booking-calendar-day.is-today {
  border: 1.5px solid rgba(236, 72, 153, 0.55);
}

.v3-booking-calendar-day.is-selected {
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.35);
  transform: translateY(-2px);
  border-color: transparent;
}

.v3-booking-calendar-day.is-disabled,
.v3-booking-calendar-day:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  border-color: transparent;
}

.v3-booking-calendar-day.is-disabled:hover,
.v3-booking-calendar-day:disabled:hover {
  background: #f3f4f6;
}

.v3-booking-calendar-day:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.6);
  outline-offset: 3px;
}

.v3-booking-time {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(236, 72, 153, 0.04));
}

.v3-booking-time-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.v3-booking-time h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
}

.v3-booking-time-date {
  font-size: 0.95rem;
  color: #6b7280;
}

.v3-booking-note {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

.v3-booking-note--error {
  color: #b91c1c;
  font-weight: 600;
}

.v3-booking-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 0.75rem;
}

.v3-booking-time-slot {
  padding: 0.8rem 0.6rem;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  border: 1px solid transparent;
}

.v3-booking-time-slot:hover {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(59, 130, 246, 0.18));
  color: #fff;
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.2);
}

.v3-booking-time-slot.is-selected {
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.25);
}

.v3-booking-time-slot.is-disabled,
.v3-booking-time-slot:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
  border-color: transparent;
}

.v3-booking-details-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.v3-booking-selection {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
}

.v3-booking-selection strong {
  color: #111827;
}

.v3-booking-change {
  margin-left: auto;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.v3-booking-change:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: #cbd5f5;
  color: #111827;
}

.v3-booking-change:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .v3-google-reviews, .v3-faq, .v3-booking {
    padding: 4rem 0;
  }
  
  .v3-google-reviews-container, .v3-faq-container, .v3-booking-container {
    padding: 0 1rem;
  }
  
  .v3-review-card {
    padding: 1.5rem;
  }
  
  .v3-review-text {
    font-size: 1rem;
  }
  
  .v3-faq-title, .v3-booking-title {
    font-size: 2rem;
  }
  
  /* FAQ Mobile Specific */
  .v3-faq-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .v3-faq-header {
    position: static;
  }
  
  .v3-faq-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .v3-faq-question {
    padding: 1.5rem;
    font-size: 1rem;
  }
  
  .v3-faq-question {
    font-size: 1.1rem;
  }
  
  .v3-booking-info {
    flex-direction: column;
    text-align: center;
  }
  
  .v3-booking-meta {
    align-items: center;
  }
  
  .v3-booking-form {
    padding: 1.5rem;
  }

  .v3-booking-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

  .v3-booking-calendar {
    padding: 1.25rem;
  }

  .v3-booking-calendar-day {
    height: 40px;
  }

  .v3-booking-time-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .v3-booking-details-form {
    padding-top: 0.5rem;
  }

  .v3-booking-selection {
    flex-direction: column;
    align-items: flex-start;
  }

  .v3-booking-change {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .v3-booking-actions {
    justify-content: center;
  }
}
