/* Booking Premium Styles */
.booking-hub-section {
  padding: 60px 0;
  background: var(--bg-premium-dark);
  position: relative;
}

.booking-hub-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--glow-secondary);
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.booking-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.booking-profile-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 24px;
  color: var(--text-light);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(197, 160, 89, 0.3);
}

img.profile-avatar {
  object-fit: cover;
  background: transparent;
}

.profile-info h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-light);
}

.profile-info p {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-value-props {
  margin-top: 24px;
}

.booking-prop {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-prop i {
  color: var(--secondary-color);
  margin-top: 4px;
}

.booking-prop-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-light);
}

.booking-prop-text p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* White-Label Booking Container */
.booking-system-container {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 0 !important; /* Critical: Remove glass-card padding so shield overlays iframe */
}

.booking-system-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
  position: relative;
  z-index: 1;
}

/* Branding Shield to cover "Powered by HubSpot" */
.branding-shield {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0; /* Ensures full width */
  height: 65px; /* Taller bar for safety */
  background: white !important; /* Forces solid white to mask iframe content */
  z-index: 9999; /* Highest priority */
  pointer-events: none;
  border-top: 1px solid #eee;
  display: block !important;
}

/* Interactive Mask */
.booking-mask {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.booking-system-container.interactive .booking-mask {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .booking-hub-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .booking-profile-card {
    padding: 30px;
  }

  .booking-system-container {
    height: 600px;
  }
}
