/* =========================
   BRIGHT FORMAL FOOTER
========================= */

.site-footer{
  background: #F5F2EC;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: clamp(50px, 6vw, 70px) 20px 30px;
  color: #1A1F24;
}

.footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Brand */
.footer__brand-link{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer__brand-logo{
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer__logo-text{
  font-size: 22px;
  font-weight: 600;
  color: #0D1216;
  letter-spacing: 0.3px;
}

.footer__description{
  margin: 0 0 18px;
  line-height: 1.7;
  color: rgba(0,0,0,0.72);
  font-size: 14px;
}

/* Headings */
.footer__heading{
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0B5F68;
}

/* Links */
.footer__nav,
.footer__contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__nav a,
.footer__contact a{
  text-decoration: none;
  color: rgba(0,0,0,0.78);
  transition: color 0.2s ease;
}

.footer__nav a:hover,
.footer__contact a:hover{
  color: #0B5F68;
}

/* CTA Button */
.footer__cta{
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  background: #0B5F68;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__cta:hover{
  background: #084A50;
  transform: translateY(-1px);
}

/* Bottom */
.footer__bottom{
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
}

/* Responsive */
@media (max-width: 1000px){
  .footer__inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .footer__inner{
    grid-template-columns: 1fr;
  }

  .footer__brand-link{
    justify-content: flex-start;
  }
}

/* =========================
   TRUSTED BY
========================= */

.trusted{
  background: #F4F1EA;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: clamp(50px, 6vw, 70px) 20px; /* adaptive */
  border-radius: 25px 25px 0 0;
  margin-top: 60px;
}

.trusted__inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trusted__title{
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #0D1216;
  letter-spacing: 0.2px;
}

.trusted__sub{
  margin: 10px auto 26px;
  max-width: 70ch;
  color: rgba(0,0,0,0.70);
  line-height: 1.6;
  font-size: 14px;
}

.trusted__grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: center;
}

.trusted__logo{
  display: grid;
  place-items: center;
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  text-decoration: none;
}

.trusted__logo:hover{
  transform: translateY(-2px);
  border-color: rgba(11,95,104,0.30);
  box-shadow: 0 8px 18px rgba(0,0,0,.18); /* reduced intensity */
}

.trusted__logo img{
  width: 100%;
  max-width: 140px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  opacity: .85;
  transition: filter .18s ease, opacity .18s ease;
}

.trusted__logo:hover img{
  filter: grayscale(0%) contrast(1.05);
  opacity: 1;
}

/* Responsive grid refinement */
@media (max-width: 1100px){
  .trusted__grid{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px){
  .trusted__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px){
  .trusted__logo img{
    max-width: 110px; /* prevents cramped logos */
  }
}