.contact-section {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 84px 0;
  background:
    linear-gradient(135deg, rgba(6, 24, 38, 0.94), rgba(8, 52, 85, 0.82)),
    url("klima-bakimi.jpg") center 42%/cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  gap: 42px;
  align-items: center;
}

.contact-copy {
  color: #ffffff;
}

.contact-copy h1 {
  margin: 0;
  max-width: 820px;
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.contact-brand {
  margin: 0 0 24px;
  color: var(--navy-950);
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.contact-action {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 86px;
  justify-content: center;
  margin-top: 12px;
  padding: 16px 18px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(6, 24, 38, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(6, 24, 38, 0.23);
}

.contact-action span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-action strong {
  font-size: 21px;
}

.contact-action.call {
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
}

.contact-action.whatsapp {
  background: linear-gradient(135deg, var(--mint-600), var(--mint-500));
}

.contact-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .contact-section {
    min-height: auto;
    padding: 54px 0 62px;
    background-position: center 42%;
  }

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

  .contact-card {
    padding: 22px;
  }

  .contact-action strong {
    font-size: 19px;
  }
}
