.hero-contact {
  position: relative;
  background: #0b1220;
  color: #fff;
  overflow: hidden;
}

.hero-contact .hero-media {
  position: relative;
  height: 240px;
}

.hero-contact .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-contact .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.82),
    rgba(15, 23, 42, 0.55),
    rgba(15, 23, 42, 0.12)
  );
  pointer-events: none;
}

.hero-contact .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-contact .hero-content-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-contact .hero-text {
  max-width: 520px;
  text-align: left;
  pointer-events: auto;
  padding-left: 18px;
  animation: hero-contact-fade-up 0.8s ease-in-out 0.05s both;
}

.hero-contact .hero-heading {
  font-size: 2.2rem;
  line-height: 1.08;
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-contact .hero-tagline {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #d1d5db;
}

.section-contact {
  background: #f9f9f9;
  padding: 60px 20px;
}

.section-contact .section-inner {
  max-width: 1120px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 3.5fr 6.5fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.contact-title {
  margin-bottom: 14px;
}

.success-title-block {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  border-left: 6px solid #f7b71e;
  padding: 8px 0 6px 18px;
}

.success-kicker {
  display: block;
  line-height: 1.15;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-style: italic;
  color: #7a7a7a;
  transform: scaleX(0.8);
  transform-origin: left center;
}

.success-heading {
  display: block;
  line-height: 1.08;
  font-size: 26px;
  max-width: none;
  font-family: 'Roboto Condensed', 'Trebuchet MS', Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  transform: scaleX(0.8);
  transform-origin: left center;
  text-transform: uppercase;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff8e6;
  border: 1px solid #f7b71e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1220;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
}

.contact-icon-box svg path {
  fill: none;
  stroke: #0b1220;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111827;
}

.contact-value {
  font-size: 15px;
  color: #1f2937;
  line-height: 1.6;
}

.contact-value a {
  color: #1c4b8f;
  font-weight: 700;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-map {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-height: 420px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .hero-contact .hero-media {
    height: 210px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero-contact .hero-media {
    height: 190px;
  }

  .hero-contact .hero-content-inner {
    padding: 0 16px;
  }

  .hero-contact .hero-heading {
    font-size: 1.8rem;
  }

  .section-contact {
    padding: 40px 16px;
  }

  .contact-item {
    grid-template-columns: 56px 1fr;
  }

  .contact-icon-box {
    width: 56px;
    height: 56px;
  }
}

@keyframes hero-contact-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
