/* ============================================
   Contact
   ============================================ */
.contact {
  padding: var(--sp-7) 0;
  background: linear-gradient(135deg, #0d3b66 0%, #072544 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 132, 255, 0.1), transparent 50%);
}
.contact__head { text-align: center; margin-bottom: var(--sp-5); position: relative; z-index: 1; }
.contact__head .section-head__eyebrow { color: var(--c-accent-2); }
.contact__head .section-head__title { color: #fff; }
.contact__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-5);
  position: relative;
  z-index: 1;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.contact__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-3);
  padding: var(--sp-3);
  transition: all 0.3s;
}
.contact__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}
.contact__label {
  font-size: 11px;
  color: var(--c-accent-2);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact__value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.contact__value a { color: var(--c-accent-2); }
.contact__value a:hover { color: #fff; }

.contact__offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.office {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-3);
  padding: var(--sp-3);
  transition: all 0.3s;
}
.office:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--c-accent-2);
  transform: translateY(-4px);
}
.office h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent-2);
  margin-bottom: 8px;
}
.office p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 4px;
}
.office span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  display: block;
}

/* ============================================
   Responsive - Contact
   ============================================ */
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__offices { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact__offices { grid-template-columns: 1fr; }
}
