/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact-footer { background: var(--black); padding: 80px 5% 40px; max-width: 1200px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }

.footer-brand .logo-img {
  width: 80px; height: 80px; margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(245,200,0,0.3));
}
.footer-brand .footer-name {
  font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 1.5rem;
  letter-spacing: 0.08em; color: var(--white); margin-bottom: 12px;
}
.footer-brand .footer-name span { color: var(--yellow); }
.footer-brand p { font-size: 0.85rem; color: #555; line-height: 1.7; max-width: 280px; }

/* ─── Social icons ─── */
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; color: #888;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.02);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-link svg { width: 18px; height: 18px; display: block; }
.social-link:hover, .social-link:focus-visible {
  color: var(--black); background: var(--yellow);
  border-color: var(--yellow); transform: translateY(-2px);
}

/* ─── Contact links (phone / email) ─── */
.footer-col a.footer-link { color: inherit; text-decoration: none; }
.footer-col li:hover a.footer-link { color: var(--white); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 0.88rem; color: #666; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s;
}
.footer-col li:hover { color: var(--white); }

.footer-legal {
  display: flex; flex-wrap: wrap; gap: 24px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-legal a {
  color: var(--grey); font-size: 0.82rem; text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--yellow); text-decoration: underline; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: #444; }
.footer-bottom span { color: var(--yellow); }

/* ─── Contact form ─── */
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 420px; margin-top: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); padding: 12px 14px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; border-radius: 2px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--yellow);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.form-status { font-size: 0.85rem; min-height: 1.2em; }
.form-status.success { color: var(--yellow); }
.form-status.error { color: #ff8080; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-footer { padding: 60px 6% 32px; }
  .contact-form { max-width: 100%; }
  .footer-legal { gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
