/* === S.O.N. — CONTACT PAGE STYLES === */

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* ─── FORM ─── */
.contact-form-wrap .section-title {
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(1,43,120,.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form .btn-primary {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
}

/* ─── SIDEBAR ─── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 7rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.contact-info-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.contact-details li strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .15rem;
}

.contact-details li a,
.contact-details li span {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
}

.contact-details li a:hover {
  color: var(--navy);
}

.contact-info-card--highlight {
  background: var(--navy);
  border-color: rgba(255,255,255,0.12);
}

.contact-info-card--highlight h3 {
  color: var(--white);
}

.contact-info-card--highlight p {
  color: rgba(255,255,255,0.72);
}

/* ─── MAP ─── */
.map-band {
  width: 100%;
  height: 360px;
  background: var(--navy);
}

.map-band iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.8) contrast(1.1);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .contact-section { padding: 4rem 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .map-band { height: 260px; }
}
