/* ===============================
   CTA STRIP (POLISHED)
================================ */

.footer-cta {
  background: linear-gradient(135deg, #a73414, #333dc4);
  
  padding: 38px 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  margin: 0 auto -70px;
  max-width: 1120px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.footer-cta h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.footer-cta p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #eef0ff;
}

.cta-btn {
  background: #020617;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ===============================
   FOOTER MAIN
================================ */

.site-footer {
  background: linear-gradient(180deg, #020617, #0f172a);
  padding: 110px 9% 40px;
  color: #cbd5e1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* FOOTER HEADINGS */
.footer-col h4 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: #B11226;
  margin-top: 8px;
  border-radius: 2px;
}

/* FOOTER TEXT */
.footer-col p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* CONTACT ICON EMPHASIS */
.footer-col p strong {
  color: #e5e7eb;
  font-weight: 500;
}

/* ===============================
   FOOTER BOTTOM
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 55px;
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 34px 8%;
  }

  .footer-cta h3 {
    font-size: 22px;
  }
}
