.contact-hero {
  width: 100%;
  height: 70vh;
  background: url(/images/contact/contact.webp) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 110px 16px 40px;
  box-sizing: border-box;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.08) 55%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-hero-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.2vw, 56px);
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.contact-hero-sub {
  margin: 0;
  font-size: clamp(10px, 1.1vw, 18px);
  opacity: 0.92;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.contact-main {
  background: #f5f7fa;
}

/* GET IN TOUCH (reused layout) */
.contact-touch-wrap {
  background: #f5f7fa;
  padding: 42px 18px 22px;
}

.contact-touch {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* legacy wrapper removed from markup (kept empty to avoid layout jumps if reused) */
.contact-touch-card {
}

.contact-touch-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: 1px;
  color: #1b1f23;
  font-weight: 800;
}

.contact-touch-sub {
  margin: 0 auto 16px;
  max-width: 820px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
}

.contact-touch-subject {
  margin: 0 auto 30px;
  max-width: 820px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.45);
}

.contact-touch-subjectValue {
  color: #03bcbe;
}

.contact-touch-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.contact-touch-input,
.contact-touch-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e7ebef;
  background: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  color: #111;
  outline: none;
}

.contact-touch-input::placeholder,
.contact-touch-textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.contact-touch-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-touch-submit {
  width: 278px;
  height: 56px;
  margin: 40px auto 60px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  background: #03bcbe;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
}

.contact-touch-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Contact cards */
.contact-cards {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 30px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-sizing: border-box;
}

.contact-card {
  height: auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 34px 22px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card-iconImg {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 12px;
  object-fit: contain;
  opacity: 0.85;
}

.contact-card-title {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.15;
}

.contact-card-text {
  color: rgba(0, 0, 0, 0.38);
  font-size: 12px;
  line-height: 28px;
  margin: 0;
  max-width: 320px;
}

.contact-card-text + .contact-card-text {
  margin-top: 8px;
}

.contact-card-link {
  color: rgba(0, 0, 0, 0.38);
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 28px;
  display: inline-block;
}

.contact-card-link:hover {
  text-decoration: underline;
}

/* Map */
.contact-map {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 74px;
  box-sizing: border-box;
}

.contact-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 0;
  text-decoration: none;
}

.contact-map-frame {
  width: 100%;
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  padding: 0;
  box-sizing: border-box;
}

.contact-map-badge {
  position: absolute;
  width: 289px;
  height: auto;
  display: block;
  top: 50%;
  right: 196px;
  transform: translateY(calc(-50% - 48px));
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.25));
}

.contact-map-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1188 / 573;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

@media screen and (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 750px) {
  .contact-hero {
    height: 52vh;
    padding: 120px 14px 36px;
  }

  .contact-touch-wrap {
    padding: 28px 14px 18px;
  }

  .contact-touch-title {
    font-size: 24px;
  }

  .contact-touch-submit {
    width: 80%;
  }

  /* Mobile: tighten spacing & typography */
  .contact-touch-subject {
    margin-bottom: 18px;
  }

  .contact-touch-form {
    gap: 18px;
  }

  .contact-touch-submit {
    height: 48px;
    margin: 18px auto 28px;
  }

  .contact-cards {
    padding: 0 18px 24px;
    gap: 16px;
  }

  .contact-card {
    padding: 22px 16px 20px;
  }

  .contact-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-card-text {
    font-size: 12px;
    line-height: 18px;
    max-width: 100%;
  }

  .contact-card-link {
    line-height: 18px;
  }

  .contact-map-link {
    padding: 22px 12px;
  }

  .contact-map-frame {
    padding: 0;
  }

  .contact-map-badge {
    width: min(220px, 60vw);
    right: 12px;
  }
}
