/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-map { border-radius: var(--radius); overflow: hidden; height: 350px; border: 1px solid rgba(201,168,76,.15); margin-bottom: 30px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }
.contact-info-grid { display: grid; gap: 0; }
.contact-info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.06); align-items: flex-start; }
.contact-info-row:last-child { border: none; }
.contact-info-icon { width: 38px; height: 38px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.contact-info-label { font-size: 10px; letter-spacing: .15em; color: var(--gold); text-transform: uppercase; margin-bottom: 3px; }
.contact-info-val { font-size: 14px; color: var(--text); }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; margin-bottom: 8px; }
.contact-form-wrap p { font-size: 13px; color: var(--text2); margin-bottom: 30px; line-height: 1.7; }

/* ===== SUBMIT BUTTON SPINNER ===== */
.btn-submit-loading {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  pointer-events: none;
}
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: btn-spin .6s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.sidebar-widget { background: var(--light); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; border: 1px solid rgba(0,0,0,.06); }
.sidebar-widget h4 { font-size: 11px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,168,76,.2); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .contact-layout { grid-template-columns: 1fr; }
}
