.hero-contact {
  background-image: url('/imgs/hero/contact-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}
/* Contact Page Layout */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
}

/* Contact Info Section */
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.info-header {
  position: relative;
  z-index: 2;
  margin-bottom: var(--spacing-lg);
}

.info-header h3 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-light);
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.info-content {
  position: relative;
  z-index: 2;
}

.intro-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-medium);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-xl);
}

.benefits-list li {
  color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-md);
  padding-left: var(--spacing-xl);
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-lg);
}

.note-box {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.note-box strong {
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
}

/* Responsive */
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    padding: var(--spacing-xxl) 0;
  }
  
  .info-header h3 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 768px) {
  .contact-info,
  .booking-section {
    padding: var(--spacing-lg);
  }
  
  .info-header h3 {
    font-size: var(--text-2xl);
  }
  
  .intro-text {
    font-size: var(--text-base);
  }
}

/* Booking Section */
.booking-section {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  bottom: 10%;
  right: 5%;
  animation-delay: 3s;
}

.booking-widget {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Calendly scrollbar fix */
iframe[src*="calendly.com"] {
  height: 100vh !important; /* make it full height */
  overflow: hidden !important;
}

/* Target Calendly’s internal containers */
div[data-container="booking-container"],
.simplebar-content-wrapper {
  overflow: hidden !important;
}

.simplebar-track {
  display: none !important;
}

/* Optional: remove residual margin/padding */
body .calendly-inline-widget {
  min-height: 100vh !important;
  overflow: hidden !important;
}
