/* Hero → content transition: soften the seam between the dark hero and the
   calendly box (which has its own slightly-lighter bg) so the color edge
   doesn't read as a hard cut. Same approach as the service pages. */
.hero-compact + .contact-main {
  position: relative;
}
.hero-compact + .contact-main::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 255, 136, 0.025) 50%,
    var(--ic-bg) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 56px 28px 96px;
}
.contact-calendly {
  position: relative;
  background: var(--ic-bg-soft);
  border: 1px solid var(--ic-rule);
  border-radius: 8px;
  min-height: 600px;
  overflow: hidden;
}
.contact-calendly .calendly-inline-widget {
  width: 100%;
  height: 600px;
  min-width: 320px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-block h2,
.contact-info-block h3 {
  font-size: 14px;
  color: var(--ic-green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ic-text);
}
.contact-info-block a {
  border-bottom: 1px solid rgba(0,255,136,0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-info-block a:hover {
  color: var(--ic-green);
  border-bottom-color: var(--ic-green);
}
.contact-cities {
  font-size: 13px;
  color: var(--ic-muted);
  letter-spacing: 0.08em;
}
.contact-socials {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ic-text);
  opacity: 0.7;
  border: 0;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.contact-socials a:hover {
  opacity: 1;
  color: var(--ic-green);
  transform: translateY(-2px);
}
.contact-socials svg {
  width: 22px;
  height: 22px;
  display: block;
}
/* About Us CTA inside contact-info column */
.contact-info-cta {
  border-bottom: 1px solid var(--ic-rule);
  padding-bottom: 24px;
}
.contact-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--ic-rule);
  border-radius: 4px;
  color: var(--ic-text);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.contact-about-btn:hover {
  border-color: var(--ic-green);
  color: var(--ic-green);
  background: rgba(0,255,136,0.04);
}
.contact-about-sub {
  font-size: 12px;
  color: var(--ic-muted);
  margin: 10px 0 0;
  letter-spacing: 0.04em;
}
/* Smaller variant when the About Us CTA is the last block (under Social) */
.contact-info-cta--small {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 4px;
}
.contact-info-cta--small .contact-about-btn {
  padding: 10px 16px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
}
.contact-info-cta--small .contact-about-sub {
  font-size: 11px;
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-main { grid-template-columns: 1fr; gap: 32px; }
}
