
/* ---------- Contact Steps: two location cards ---------- */
.contact-steps {
  padding-top: 40px;
  padding-bottom: 60px;
}

.contact-steps h2 {
  font-weight: 200;
  font-size: 48px;
  color: var(--color-navy);
  margin-bottom: 40px;
}

.contact-steps-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-step-card {
  flex: 1 1 360px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 30px;
  box-shadow: inset 0 10px 0 0 var(--color-navy);
  padding: 32px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-step-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 10px 0 0 var(--color-navy), 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}

.contact-step-number {
  position: relative;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-step-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-step-number span {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  color: var(--color-navy);
}

.contact-step-body h3 {
  font-weight: 500;
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 8px;
}

.contact-step-body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-black);
  opacity: 0.75;
  margin-bottom: 12px;
}

.contact-step-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-navy);
}

.contact-step-phone img {
  width: 16px;
  height: 16px;
}

/* ---------- Contact Info + Form panel ---------- */
.contact-form-section {
  padding-top: 20px;
  padding-bottom: 60px;
}

.contact-form-panel {
  display: flex;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.contact-info-side {
  flex: 0 0 40%;
  background: linear-gradient(200deg, var(--color-navy) 3.5%, #255a96 100%);
  color: #fff;
  padding: 48px 44px;
}

.contact-info-side h3 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-info-tagline {
  font-size: 16px;
  color: #c9c9c9;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.contact-info-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.contact-info-item:hover .contact-info-icon-circle {
  transform: scale(1.1);
}

.contact-info-icon-circle img {
  width: 18px;
  height: 18px;
}

.contact-info-social {
  display: flex;
  gap: 16px;
}

.contact-info-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-info-social a:hover {
  color: var(--color-blue-light);
  border-color: var(--color-blue-light);
}

.contact-info-social svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form-row {
  display: flex;
  gap: 32px;
}

.contact-form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-field label {
  font-weight: 500;
  font-size: 13px;
  color: var(--color-black);
}

.contact-form-field input,
.contact-form-field textarea {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 0 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-black);
  outline: none;
  resize: none;
  background: transparent;
  transition: border-color 0.25s ease;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #8d8d8d;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-bottom-color: var(--color-navy);
}

.contact-form-submit {
  align-self: flex-end;
  border: none;
  cursor: pointer;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}

/* ---------- Map ---------- */
.contact-map {
  padding-bottom: 80px;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 40px;
  display: block;
}

@media (max-width: 900px) {
  .contact-steps h2 {
    font-size: 36px;
  }

  .contact-steps-grid {
    flex-direction: column;
  }

  .contact-form-panel {
    flex-direction: column;
    border-radius: 30px;
  }

  .contact-info-side,
  .contact-form {
    padding: 36px 28px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-submit {
    align-self: stretch;
    text-align: center;
  }

  .contact-map iframe {
    border-radius: 24px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .contact-step-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}
