* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ================= CTA ================= */

.section:last-of-type {
  margin-bottom: 190px;
}


.footer-cta {
  margin-top: 10px;     /* space before CTA */
}

.cta-content {
  margin-top: -60px;    /* controlled overlap */
}

.footer-cta {
  background: transparent;
}

.cta-content {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-left: 6px solid #FF6B35;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  transform: translateY(-60px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-left h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 15px;
}

.cta-left p {
  color: #333;
  max-width: 650px;
  line-height: 1.6;
}

.cta-right h4 {
  color: #003366;
  margin-bottom: 15px;
}

.cta-call {
  background: #FF6B35;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= FOOTER ================= */




.footer-main {
  background: #0a1a2f;
  padding-top: 10px;
  margin-top: 10px;
  color: #fff;
}

/* GRID */

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-box h4 {
  color: #FF6B35;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box li {
  color: #ccc;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

/* LOGO */

.footer-logo {
  width: 120px;
  margin-bottom: 5px;
}

/* BOTTOM */

.footer-bottom {
  background: #e47e2b;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* RESPONSIVE */
/* =======================
   FOOTER + CTA RESPONSIVE
   ======================= */

/* ---------- TABLET (≤ 992px) ---------- */
@media (max-width: 992px) {

  .cta-content {
    padding: 30px;
    transform: translateY(-40px);
  }

  .cta-left h2 {
    font-size: 26px;
  }

  .cta-left p {
    font-size: 15px;
  }

  .cta-call {
    padding: 12px 22px;
  }

  .footer-content {
    gap: 30px;
  }
}

/* ---------- MOBILE (≤ 768px) ---------- */
@media (max-width: 768px) {

  /* CTA */
  .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
    transform: translateY(0);  /* REMOVE overlap on mobile */
  }

  .cta-left h2 {
    font-size: 22px;
  }

  .cta-left p {
    font-size: 14px;
  }

  .cta-right h4 {
    font-size: 16px;
  }

  .cta-call {
    width: 100%;
    text-align: center;
  }

  /* Footer grid */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 40px;
  }

  .footer-box ul li {
    margin-bottom: 8px;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }
}

/* ---------- SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

  .cta-left h2 {
    font-size: 20px;
  }

  .cta-left p {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 12px 20px;
  }

  .footer-links a {
    margin: 6px 10px;
    display: inline-block;
  }
}
