/* ============================================================
   CO1 · CONTACT HERO
   ============================================================ */

/* ── Section ────────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  padding: 150px 0 100px;
  text-align: center;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* ── Waveform ───────────────────────────────────────────────── */
.contact-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  pointer-events: none;
  animation: waveMove 14s linear infinite;
}

.contact-hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Data Nodes ─────────────────────────────────────────────── */
.contact-hero__node {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp 4s ease-in-out infinite;
}

.contact-hero__node.node--1 {
  width: 10px;
  height: 10px;
  background: var(--color-teal);
  top: 20%;
  left: 6%;
  opacity: 0.4;
  animation-delay: 0s;
}

.contact-hero__node.node--2 {
  width: 7px;
  height: 7px;
  background: var(--color-blue);
  top: 35%;
  right: 9%;
  opacity: 0.32;
  animation-delay: 1.5s;
}

.contact-hero__node.node--3 {
  width: 12px;
  height: 12px;
  background: var(--color-teal);
  bottom: 30%;
  left: 13%;
  opacity: 0.25;
  animation-delay: 0.8s;
}

.contact-hero__node.node--4 {
  width: 6px;
  height: 6px;
  background: var(--color-blue);
  top: 58%;
  right: 20%;
  opacity: 0.28;
  animation-delay: 2.2s;
}

/* ── Content Block ──────────────────────────────────────────── */
.contact-hero__content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero__content .tag-pill {
  display: inline-block;
  margin-bottom: 22px;
}

/* ── Heading ────────────────────────────────────────────────── */
.contact-hero__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

/* ── Subheading ─────────────────────────────────────────────── */
.contact-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto 44px;
}

.contact-hero__sub strong {
  color: #ffffff;
  font-weight: 600;
}

/* ── Quick Contact Pills ────────────────────────────────────── */
.contact-hero__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 201, 167, 0.22);
  border-radius: 50px;
  padding: 12px 22px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.contact-pill:hover {
  background: rgba(0, 201, 167, 0.1);
  border-color: var(--color-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.15);
}

.contact-pill--static {
  cursor: default;
}

.contact-pill--static:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 201, 167, 0.22);
}

.contact-pill__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(0, 201, 167, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 14px;
  transition: background 0.25s ease;
}

.contact-pill:hover .contact-pill__icon {
  background: rgba(0, 201, 167, 0.22);
}

.contact-pill--static:hover .contact-pill__icon {
  background: rgba(0, 201, 167, 0.12);
}

.contact-pill__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

/* ── Scroll Nudge ───────────────────────────────────────────── */
.contact-hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 201, 167, 0.25);
  color: var(--color-teal);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease;
  animation: floatUp 2.5s ease-in-out infinite;
}

.contact-hero__scroll:hover {
  background: rgba(0, 201, 167, 0.1);
  border-color: var(--color-teal);
  transform: translateY(3px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-hero {
    padding: 130px 0 85px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 110px 0 70px;
    min-height: auto;
  }

  .contact-hero__pills {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
  }

  .contact-pill {
    width: 100%;
    max-width: 320px;
    justify-content: flex-start;
  }

  .contact-pill--static {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero__heading {
    letter-spacing: -0.02em;
  }

  .contact-hero__sub {
    font-size: 15px;
  }

  .contact-pill {
    max-width: 100%;
    padding: 11px 18px;
  }

  .contact-pill__text {
    font-size: 13px;
  }

  .contact-pill__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 13px;
  }

  .contact-hero__scroll {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ============================================================
   CO2 · CONTACT FORM + DETAILS
   ============================================================ */

/* ── Layout ─────────────────────────────────────────────────── */
.contact-main__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Form Card ──────────────────────────────────────────────── */
.contact-form-card {
  padding: 44px;
}

.contact-form__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--color-dark-text);
  margin: 0 0 8px;
}

.contact-form__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--color-muted-light);
  line-height: 1.65;
  margin: 0 0 32px;
}

/* ── Form Rows ──────────────────────────────────────────────── */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Form Fields ────────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field:last-of-type {
  margin-bottom: 0;
}

.form-field__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-field__req {
  color: var(--color-teal);
  font-size: 14px;
  line-height: 1;
}

.form-field__opt {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-muted-light);
}

/* ── Inputs & Textarea ──────────────────────────────────────── */
.form-field__input {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--color-dark-text);
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-field__input::placeholder {
  color: #9EB3C8;
  font-weight: 400;
}

.form-field__input:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.12);
}

.form-field__input.has-error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-field__input.is-valid {
  border-color: var(--color-teal);
}

/* ── Textarea ───────────────────────────────────────────────── */
.form-field__textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.65;
  padding-top: 14px;
}

/* ── Select Wrapper ─────────────────────────────────────────── */
.form-field__select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-field__select {
  cursor: pointer;
  padding-right: 40px;
  color: var(--color-dark-text);
}

.form-field__select option[value=""][disabled] {
  color: #9EB3C8;
}

.form-field__select-icon {
  position: absolute;
  right: 14px;
  color: var(--color-muted-light);
  font-size: 13px;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.form-field__select:focus + .form-field__select-icon {
  color: var(--color-teal);
}

/* ── Error Messages ─────────────────────────────────────────── */
.form-field__error {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #E53E3E;
  min-height: 18px;
  display: block;
  line-height: 1.4;
}

/* ── Checkbox ───────────────────────────────────────────────── */
.form-field--checkbox {
  margin-top: 4px;
  margin-bottom: 24px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form-checkbox__box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: border-color 0.22s ease, background 0.22s ease;
  position: relative;
}

.form-checkbox__box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.18s ease;
  margin-top: -2px;
}

.form-checkbox__input:checked ~ .form-checkbox__box {
  background: var(--color-teal);
  border-color: var(--color-teal);
}

.form-checkbox__input:checked ~ .form-checkbox__box::after {
  transform: rotate(45deg) scale(1);
}

.form-checkbox__input:focus-visible ~ .form-checkbox__box {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

.form-checkbox__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--color-muted-light);
  line-height: 1.6;
}

.form-checkbox__link {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.form-checkbox__link:hover {
  opacity: 0.75;
}

/* ── Submit Button ──────────────────────────────────────────── */
.contact-form__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  min-height: 52px;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form__submit:not(:disabled):hover {
  transform: translateY(-2px);
}

/* ── Success State ──────────────────────────────────────────── */
.contact-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.contact-form__success[hidden] {
  display: none;
}

.contact-form__success-icon {
  font-size: 56px;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 8px;
}

.contact-form__success-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--color-dark-text);
  margin: 0;
}

.contact-form__success-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-muted-light);
  margin: 0;
  line-height: 1.6;
}

.contact-form__success-urgent {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-muted-light);
  margin: 0;
}

.contact-form__success-urgent a {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Right Column ───────────────────────────────────────────── */
.contact-details {
  position: sticky;
  top: 90px;
}

.contact-details__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--color-dark-text);
  margin: 0 0 28px;
  position: relative;
  padding-bottom: 16px;
}

.contact-details__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
}

/* ── Detail List ────────────────────────────────────────────── */
.contact-details__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 16px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.contact-detail:hover .contact-detail__icon {
  background: rgba(0, 201, 167, 0.15);
  border-color: var(--color-teal);
}

.contact-detail__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.contact-detail__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  display: block;
}

.contact-detail__value {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--color-dark-text);
  line-height: 1.55;
}

.contact-detail__address {
  font-style: normal;
  line-height: 1.65;
}

.contact-detail__link {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.contact-detail__link:hover {
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Divider ────────────────────────────────────────────────── */
.contact-details__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 8px 0 28px;
}

/* ── Social ─────────────────────────────────────────────────── */
.contact-details__social-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  margin: 0 0 14px;
}

.contact-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0, 201, 167, 0.2);
  background: rgba(0, 201, 167, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 17px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-social-icon:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 201, 167, 0.28);
}

.contact-social-icon:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

/* ── Promise Card ───────────────────────────────────────────── */
.contact-promise {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(0, 201, 167, 0.06);
  border: 1px solid rgba(0, 201, 167, 0.18);
  border-left: 4px solid var(--color-teal);
  border-radius: 10px;
  padding: 18px 20px;
}

.contact-promise__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(0, 201, 167, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 15px;
  margin-top: 1px;
}

.contact-promise__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-promise__text strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark-text);
  display: block;
}

.contact-promise__text span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--color-muted-light);
  line-height: 1.6;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-main__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 36px 32px;
  }

  .contact-details {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-main__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card {
    padding: 28px 24px;
  }

  .contact-details {
    position: static;
  }
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 22px 18px;
  }

  .contact-form__heading {
    font-size: 20px;
  }

  .contact-form__submit {
    font-size: 15px;
  }

  .contact-social-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .contact-promise {
    padding: 14px 16px;
  }
}

/* ============================================================
   CO3 · CONTACT MAP + SOCIAL STRIP
   ============================================================ */

/* ── Section ────────────────────────────────────────────────── */
.contact-map {
  padding-bottom: 0;
}

/* ── Intro ──────────────────────────────────────────────────── */
.contact-map__intro {
  margin-bottom: 44px;
}

.contact-map__intro .tag-pill {
  display: inline-block;
  margin-bottom: 16px;
}

.contact-map__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 42px);
  color: #ffffff;
  margin: 0 0 12px;
  display: inline-block;
  position: relative;
}

.contact-map__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
  margin: 14px auto 0;
}

.contact-map__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-muted);
  max-width: 520px;
  margin: 18px auto 0;
  line-height: 1.7;
}

/* ── Map Frame Wrapper ──────────────────────────────────────── */
.contact-map__frame-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 201, 167, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.4);
  margin-bottom: 32px;
}

/* ── Iframe ─────────────────────────────────────────────────── */
.contact-map__iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 2px solid var(--color-teal);
  border-radius: 16px;
  filter: saturate(0.9) brightness(0.95);
  transition: filter 0.3s ease;
}

.contact-map__frame-wrap:hover .contact-map__iframe {
  filter: saturate(1) brightness(1);
}

/* ── Corner Accents ─────────────────────────────────────────── */
.map-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
  pointer-events: none;
}

.map-corner--tl {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--color-teal);
  border-left: 3px solid var(--color-teal);
  border-radius: 16px 0 0 0;
}

.map-corner--tr {
  top: -1px;
  right: -1px;
  border-top: 3px solid var(--color-teal);
  border-right: 3px solid var(--color-teal);
  border-radius: 0 16px 0 0;
}

.map-corner--bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 3px solid var(--color-teal);
  border-left: 3px solid var(--color-teal);
  border-radius: 0 0 0 16px;
}

.map-corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom: 3px solid var(--color-teal);
  border-right: 3px solid var(--color-teal);
  border-radius: 0 0 16px 0;
}

/* ── Map Pin Label ──────────────────────────────────────────── */
.contact-map__pin {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  pointer-events: none;
}

.contact-map__pin-inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
}

.contact-map__pin-inner i {
  color: var(--color-teal);
  font-size: 14px;
}

.contact-map__pin-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-teal);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.5);
  animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 201, 167, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 201, 167, 0); }
}

/* ── Rail Links ─────────────────────────────────────────────── */
.contact-map__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 64px;
}

.rail-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  padding: 0 24px;
  transition: color 0.2s ease;
}

.rail-link:hover {
  color: #ffffff;
}

.rail-link i {
  color: var(--color-teal);
  font-size: 15px;
  flex-shrink: 0;
}

.rail-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── Social Strip ───────────────────────────────────────────── */
.contact-social-strip {
  background: #060E1A;
  border-top: 1px solid rgba(0, 201, 167, 0.12);
  padding: 52px 0;
  margin-top: 0;
}

.contact-social-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.contact-social-strip__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--color-muted);
  max-width: 480px;
  margin: 0;
  line-height: 1.65;
}

/* ── Social Icons ───────────────────────────────────────────── */
.contact-social-strip__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-strip-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.contact-strip-icon:hover {
  transform: translateY(-4px);
}

.contact-strip-icon:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 6px;
  border-radius: 50%;
}

.contact-strip-icon i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 201, 167, 0.28);
  background: rgba(0, 201, 167, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 20px;
  transition: background 0.28s ease, border-color 0.28s ease,
              color 0.28s ease, box-shadow 0.28s ease;
}

.contact-strip-icon:hover i {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-navy);
  box-shadow: 0 8px 24px rgba(0, 201, 167, 0.32);
}

.contact-strip-icon__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.contact-strip-icon:hover .contact-strip-icon__name {
  color: var(--color-teal);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-map__iframe {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .contact-map__rail {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 52px;
  }

  .rail-divider {
    display: none;
  }

  .rail-link {
    padding: 0;
    font-size: 14px;
  }

  .contact-map__iframe {
    height: 300px;
  }

  .contact-social-strip {
    padding: 40px 0;
  }

  .contact-social-strip__icons {
    gap: 16px;
  }

  .contact-strip-icon i {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-map__intro {
    margin-bottom: 32px;
  }

  .contact-map__iframe {
    height: 260px;
  }

  .contact-map__pin-inner {
    font-size: 11px;
    padding: 6px 12px;
  }

  .contact-social-strip {
    padding: 36px 0;
  }

  .contact-social-strip__icons {
    gap: 14px;
  }

  .contact-strip-icon i {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .contact-strip-icon__name {
    font-size: 10px;
  }

  .contact-social-strip__label {
    font-size: 14px;
  }
}