:root {
  --navy: #08163b;
  --navy-deep: #050f2d;
  --blue: #0647a8;
  --green: #18a96b;
  --green-dark: #0f8a55;
  --text: #111827;
  --muted: #667085;
  --border: rgba(8, 22, 59, 0.12);
  --shadow: 0 24px 70px rgba(8, 22, 59, 0.1);
}

.contact-page {
  background: #ffffff;
}

.contact-container {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
}

/* ================= HERO ================= */

.contact-hero {
  padding: 72px 0 46px;
  background:
    radial-gradient(circle at top left, rgba(24, 169, 107, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.contact-hero-content {
  max-width: 720px;
}

.contact-tag,
.contact-small-title {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.contact-hero p {
  max-width: 680px;
  margin-top: 16px;
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

/* ================= MAIN ================= */

.contact-main-section {
  padding: 34px 0 96px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

/* ================= LEFT PANEL ================= */

.contact-info-panel {
  padding: 34px;
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid rgba(8, 22, 59, 0.08);
}

.contact-location h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.contact-location p {
  margin-top: 14px;
  color: #475467;
  font-size: 15px;
  line-height: 1.7;
}

.contact-map {
  margin-top: 28px;
  height: 320px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(8, 22, 59, 0.1);
  box-shadow: 0 18px 45px rgba(8, 22, 59, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-details-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.contact-detail-card {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(8, 22, 59, 0.08);
  text-decoration: none;
  transition: 0.25s ease;
}

.contact-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(8, 22, 59, 0.1);
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(24, 169, 107, 0.1);
  color: var(--green);
  font-size: 18px;
}

.contact-detail-card span {
  display: block;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.contact-detail-card strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

/* ================= FORM ================= */

.contact-form-card {
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(8, 22, 59, 0.08);
  box-shadow: var(--shadow);
}

.form-header h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.form-header p {
  margin-top: 12px;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

.contact-form {
  margin-top: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(8, 22, 59, 0.13);
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: 0.25s ease;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 169, 107, 0.1);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 22px;
}

.form-consent input {
  margin-top: 4px;
  accent-color: var(--green);
}

.form-consent label {
  color: #475467;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.contact-submit-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 12px;
  background: var(--blue);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(24, 169, 107, 0.25);
}

.contact-submit-btn i {
  margin-left: 8px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-container {
    width: min(100% - 32px, 520px);
  }

  .contact-hero {
    padding: 58px 0 36px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-main-section {
    padding-bottom: 72px;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-map {
    height: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.map-open-btn {
  margin-top: 14px;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--navy);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.map-open-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
}