/* /contact/contact.css */

.contact-section { background: var(--bg-light); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-title {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-light);
}

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

.form-submit {
  margin-top: 1.75rem;
  text-align: center;
}

.form-submit .btn {
  min-width: 200px;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-message--error {
  background: #fdecea;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Sidebar */
.contact-info-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.contact-info-title {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--bg-light);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bg-light);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .25rem !important;
}

.contact-info-item p { margin: 0; font-size: .9rem; }
.contact-info-item a { color: var(--accent-blue); text-decoration: underline; }

.contact-download-cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-light);
  text-align: center;
}
.contact-download-cta p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.contact-download-cta .btn { width: 100%; justify-content: center; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; }
}
