/* ============================================================
 * FOOTER
 * Matches the live site's 3-section footer:
 *   1. Reviews section with parallax bg image
 *   2. Featured Partners (light bg)
 *   3. Main footer (black) with contact, map, form
 * ============================================================ */

/* Section 1: Reviews */
.footer-reviews {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.footer-reviews-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('/themes/custom/reco/images/hero/solutions-bg.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.footer-reviews-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.footer-reviews-content h4 {
    color: #fff;
    font-size: 44px;
    margin: 0 0 10px;
}

.footer-reviews-content h4 a {
    color: #fff;
    text-decoration: none;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
}
/* Section 2: Featured Partners */
.footer-partners {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.footer-partners-title {
  color: #000000;
  padding: 10px;
  margin-bottom: 2rem;
  font-size: 44px !important;
  font-weight: 700;
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
}

.footer-partners-logo {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}

/* Section 3: Main Footer */
.footer-main {
  background: #000;
  color: #fff;
  padding: 50px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  color: #fff;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.footer-social li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Footer Bottom (copyright) */
.footer-bottom {
  background: black;
  padding: 20px 0;
  margin-top: 0;
}

.footer-bottom p {
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media only screen and (max-width: 980px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-col {
    text-align: center;
  }
}
