.page-content { padding: 2.5rem 0 0; }

.contact-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 124, 140, 0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  box-shadow: var(--shadow-lg);
}
.page-intro {
  margin-bottom: 1.75rem;
}
.page-intro h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--color-dark);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.page-intro p {
  color: #5a7a8c;
  margin: 0;
  line-height: 1.65;
}

.contact-card h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--color-dark);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.contact-card p { line-height: 1.7; margin-bottom: 0.75rem; }
.contact-card strong { color: var(--color-dark); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13, 124, 140, 0.1) 0%, rgba(20, 163, 184, 0.06) 100%);
  color: var(--color-primary);
  font-size: 1.15rem;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.social-links a:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(13, 124, 140, 0.35);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}
.contact-form .form-control {
  border-radius: 12px;
  padding: 13px 16px;
  border: 1.5px solid #e8eef2;
  font-size: 1rem;
  background: #f8fbfd;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 124, 140, 0.12);
  background: #fff;
  outline: none;
}
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(13, 124, 140, 0.3);
  cursor: pointer;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 124, 140, 0.35);
  color: #fff;
}

.form-alert {
  display: none;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.form-alert.show { display: block; }
.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 124, 140, 0.08);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.site-footer { margin-top: 3rem; }

@media (max-width: 991px) {
  .contact-card { padding: 1.75rem 1.5rem; }
  .map-wrap iframe { height: 320px; }
}
