.contact-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 26, 73, 0.98) 0%, rgba(6, 26, 73, 0.9) 55%, rgba(6, 26, 73, 0.55) 100%),
    url("assets/hero-btl.jpg") center 44% / cover no-repeat;
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 500px;
  height: 500px;
  border: 72px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 62px;
}

.contact-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.contact-breadcrumb strong {
  color: var(--white);
  font-weight: 700;
}

.contact-eyebrow {
  margin: 0 0 12px;
  color: #ffbdc3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-eyebrow.dark {
  color: var(--red);
}

.contact-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.contact-hero-content > p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.8;
}

.sales-contact-section {
  padding-block: 88px;
  background: #f5f7fb;
}

.sales-intro {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.sales-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.sales-intro > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.office-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 0 0 28px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(125deg, var(--navy) 0%, #0c3474 68%, #15519e 100%);
  box-shadow: 0 18px 42px rgba(6, 26, 73, 0.2);
}

.office-contact-card::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 32px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.office-phone-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.office-phone-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.office-contact-copy {
  position: relative;
  z-index: 1;
}

.office-contact-copy p {
  margin: 0 0 4px;
  color: #ffb7bd;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.office-contact-copy h3 {
  margin: 0 0 5px;
  font-size: 21px;
}

.office-contact-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.office-phone-button {
  position: relative;
  z-index: 1;
  min-width: 235px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 17px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.office-phone-button small {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-phone-button strong {
  margin-top: 2px;
  font-size: 18px;
}

.office-phone-button span {
  font-size: 22px;
}

.office-phone-button:hover {
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sales-contact-card {
  position: relative;
  min-height: 360px;
  padding: 38px 28px 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 26, 73, 0.09);
}

.sales-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--navy);
}

.sales-contact-card.featured::before {
  background: var(--red);
}

.sales-avatar {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #174887);
  box-shadow: 0 12px 25px rgba(6, 26, 73, 0.2);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.featured .sales-avatar {
  background: linear-gradient(145deg, var(--red), #bf0d1e);
  box-shadow: 0 12px 25px rgba(237, 28, 46, 0.25);
}

img.sales-avatar {
  display: block;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--white);
}

.sales-role {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-contact-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.sales-phone {
  display: inline-block;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.sales-phone:hover {
  color: var(--red);
}

.sales-wa-button {
  width: 100%;
  padding-inline: 14px;
  font-size: 11px;
}

.sales-wa-button svg,
.sales-wa-button img.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.sales-note {
  max-width: 790px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid #dce3ef;
  border-radius: 10px;
  color: var(--muted);
  background: var(--white);
}

.sales-note svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--navy);
}

.sales-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .office-contact-card {
    grid-template-columns: auto 1fr;
  }

  .office-phone-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .sales-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-contact-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .office-contact-card {
    grid-template-columns: 1fr;
    padding: 23px 20px;
    text-align: center;
  }

  .office-phone-icon {
    margin: 0 auto;
  }

  .office-phone-button {
    min-width: 0;
    text-align: left;
  }
  .contact-hero {
    min-height: 390px;
    background-position: 62% center;
  }

  .contact-hero-content {
    padding-block: 50px;
  }

  .contact-breadcrumb {
    margin-bottom: 33px;
    font-size: 11px;
  }

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

  .contact-hero-content > p:last-child {
    font-size: 14px;
  }

  .sales-contact-section {
    padding-block: 62px;
  }

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

  .sales-contact-card,
  .sales-contact-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 0;
  }

  .sales-note {
    padding: 16px;
  }
}
