.page-content { padding: 2rem 0 0; }

    .breadcrumbs {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 2rem;
    }
    .breadcrumbs a { color: var(--color-dark); font-weight: 600; }
    .breadcrumbs .current { color: var(--color-primary); font-weight: 600; }

    .contact-card {
      background: #fff;
      border-radius: 24px;
      padding: 2rem 2.25rem;
      box-shadow: 0 8px 30px rgba(0, 26, 65, 0.08);
      height: 100%;
    }
    .contact-card h2 {
      color: var(--color-dark);
      font-weight: 700;
      font-size: clamp(1.35rem, 2.5vw, 1.75rem);
      margin-bottom: 1.25rem;
    }
    .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: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--color-light-bg);
      color: var(--color-dark);
      font-size: 1.15rem;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .social-links a:hover {
      background: var(--color-primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .contact-form .form-label {
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--color-dark);
    }
    .contact-form .form-control {
      border-radius: 8px;
      padding: 12px 16px;
      border: 1px solid #d1d9e6;
      font-size: 1rem;
    }
    .contact-form .form-control:focus {
      border-color: #046BD2;
      box-shadow: none;
    }
    .btn-submit {
      width: 100%;
      background: var(--color-primary);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 14px 24px;
      font-weight: 600;
      font-size: 1rem;
      transition: background 0.2s;
    }
    .btn-submit:hover { background: var(--color-dark); color: #fff; }

    .form-alert {
      display: none;
      border-radius: 10px;
      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: 0;
      overflow: hidden;
      line-height: 0;
    }
    .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; }
}