.sub-labels {
  display: inline-block;
  margin-bottom: 18px;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(22, 163, 74, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
  text-align: center;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: #6b7280;
}

.contact-overview {
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(28, 25, 23, 0.07);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, 0.22);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.contact-card-dark {
  background: linear-gradient(180deg, #123126 0%, #0b231a 100%);
  color: #ffffff;
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 22px;
  background: #dcfce7;
  color: #15803d;
  font-size: 20px;
}

.contact-card-dark .contact-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-label {
  display: block;
  margin-bottom: 10px;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-card p {
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 15px;
}

.contact-card-dark p,
.contact-card-dark h2 {
  color: #ffffff;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: #15803d;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.24);
}

.contact-link-light {
  background: #ffffff;
  color: #123126;
}

.contact-link-light:hover {
  background: #dcfce7;
}

.contact-map-section {
  padding: 110px 0;
  background: #fafafa;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.map-details-panel,
.map-frame-card {
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
}

.map-details-panel {
  background: linear-gradient(180deg, #1c1917 0%, #2b2622 100%);
  color: #ffffff;
}

.details-panel-inner {
  height: 100%;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-kicker {
  margin-bottom: 14px;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.details-panel-inner h3 {
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.panel-copy {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.details-list {
  display: grid;
  gap: 18px;
}

.details-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.details-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details-item a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.details-item a:hover {
  color: #86efac;
}

.map-frame-card {
  border: 1px solid rgba(28, 25, 23, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.map-frame-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

@media (max-width: 1100px) {
  .contact-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 128px 0 72px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-hero-copy {
    font-size: 16px;
  }

  .contact-card,
  .details-panel-inner {
    padding: 28px;
  }

  .details-panel-inner h3 {
    font-size: 30px;
  }

  .map-details-panel,
  .map-frame-card,
  .map-frame-card iframe {
    min-height: 420px;
  }
}
