/* ── Footer ── */
.footer-pro {
  background: #0c1520;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', 'Poppins', sans-serif;
}

/* Top red accent bar */
.footer-pro::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #d71920 0%, #ff6b6b 50%, #d71920 100%);
}

/* Subtle background pattern */
.footer-pro::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(215,25,32,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(48,216,33,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* ── Main body ── */
.footer-pro-main {
  padding: 72px 0 52px;
  position: relative; z-index: 2;
}

/* ── Brand column ── */
.footer-brand { margin-bottom: 24px; }
.footer-brand img {
  max-width: 160px;
}
.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin: 18px 0 24px;
  max-width: 260px;
}

/* Social icons */
.footer-socials {
  display: flex; gap: 10px;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-social-btn:hover {
  background: #d71920;
  border-color: #d71920;
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

/* ── Section headings ── */
.footer-col-title {
  font-family: 'Playfair Display', 'Work Sans', serif;
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col-title::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: #d71920;
  border-radius: 2px;
}

/* ── News items ── */
.footer-news-list { list-style: none; margin: 0; padding: 0; }
.footer-news-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease;
}
.footer-news-item:first-child { padding-top: 0; }
.footer-news-item:last-child  { border-bottom: none; }
.footer-news-item:hover       { transform: translateX(4px); }

.footer-news-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(215,25,32,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #d71920; font-size: 16px;
  margin-top: 2px;
}
.footer-news-body { flex: 1; min-width: 0; }
.footer-news-title {
  display: block;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.4; margin-bottom: 5px;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}
.footer-news-title:hover { color: #d71920; text-decoration: none; }
.footer-news-date {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
.footer-news-date i { font-size: 12px; }

/* ── Quick links ── */
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 2px; }
.footer-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.45);
  text-decoration: none; padding: 6px 0;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-links a i {
  font-size: 14px; color: #d71920;
  transition: transform 0.2s;
}
.footer-links a:hover {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding-left: 6px;
}
.footer-links a:hover i { transform: translateX(3px); }

/* ── Contact info ── */
.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-item i {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: rgba(215,25,32,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #d71920; font-size: 14px; margin-top: 1px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: #d71920; }

/* ── Divider ── */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* ── Bottom bar ── */
.footer-pro-bottom {
  padding: 20px 0;
  position: relative; z-index: 2;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  font-family: 'DM Sans', 'Poppins', sans-serif;
}
.footer-copyright a {
  color: #d71920;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-copyright a:hover { opacity: 0.8; }

.footer-bottom-links {
  display: flex; gap: 20px;
  list-style: none; margin: 0; padding: 0;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .footer-pro-main   { padding: 52px 0 36px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-brand-desc { max-width: 100%; }
}