.site-footer {
  background-color: none;
  color: #001a40;
  padding: 80px 5vw 0; /* Left/Right padding with vw units */
  font-family: 'sora', sans-serif;
  box-sizing: border-box;
  border-top: #ACB7C9 solid 2px;
}

.footer-top {
  display: grid;
  grid-template-columns: 40% 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

/* Footer Column Distribution */
.footer-col-1 {
  text-align: left !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}


.footer-col-4 {
  text-align: left !important;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}


.footer-logo {
  max-width: 275px;
  margin-bottom: 50px;
  text-align: left !important;
  margin-left: 0 !important;
}

.footer-phone {
  display: block;
  color: rgb(0, 26, 64);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 30px;
}

.footer-phone-1 {
  display: block;
  color: rgb(0, 26, 64);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 10px;
}

.quote-btn {
  color: #005dd6;
  border: 1px solid #005dd6;
  background: none;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  margin-top: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.quote-btn:hover {
  background-color: #004cb3;
  color: white;
}

.footer-col h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #001a40;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #001a40b0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.footer-col ul li a:hover {
  color: rgb(0, 104, 255);
}

.social-icons a {
  margin-right: 10px;
  color: #001a40; /* Aumenso theme dark blue */
  font-size: 20px;
  padding-right: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2); /* Slight zoom on hover */
}

.social-icons i:hover {
  transform: scale(1.2); /* Slight zoom on hover */
  transition: transform 0.3s ease;
}

/* 🔹 Facebook Blue */
.social-icons a[href*="facebook"]:hover {
  color: #1877f2;
}

/* 🔸 Instagram Gradient (use one color for simplicity) */
.social-icons a[href*="instagram"]:hover i {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  background-clip: text;              /* Standard property */
  -webkit-background-clip: text;      /* Safari/WebKit */
  -webkit-text-fill-color: transparent;
}


.social-icons a[href*="x.com"]:hover i,
.social-icons a[href*="twitter.com"]:hover i {
  background: linear-gradient(45deg, #000000, #434343);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🔷 LinkedIn Blue */
.social-icons a[href*="linkedin"]:hover {
  color: #0a66c2;
}

/* 🔴 YouTube Red */
.social-icons a[href*="youtube"]:hover {
  color: #ff0000;
}


.footer-search {
  display: flex;
  margin-top: 50px;
  justify-content: flex-start; /* <-- Align left */
  align-items: flex-end;
  padding-bottom: 1px;
  max-width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.footer-search input {
  flex: 1;
  padding: 6px 0px 5px 0px; /* Add space for the clear icon */
  border: none;
  border-bottom: 1px solid rgba(0, 26, 64, 0.69);
  background-color: transparent;
  color: #001a40b0;
  font-size: 14px;
  outline: none;
}

.clear-btn {
  position: absolute;
  right: 35px; /* Adjust according to your button width */
  font-size: 18px;
  color: #001a40b0;
  cursor: pointer;
  display: none;
  user-select: none;
}

.footer-search button {
  padding: 6px 12px;
  font-size: 16px;
  border: none;
  background-color: transparent;
  color: rgba(0, 26, 64, 0.44);
  cursor: pointer;
}

.footer-search button:hover {
  color: #001a40;
}


.footer-bottom {
  padding: 15px 0 30px;
  font-size: 14px;
  text-align: left;
  color: #001a4070;
  text-transform: uppercase;
}

.footer-bottom .divider {
  margin: 0 0px;
  color: #001a4070;
}

.footer-bottom a {
  color: #54d2ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Divider Row Styling */
.footer-row {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
  flex-wrap: wrap;
}

.footer-row span + span::before {
  content: "┃";
  margin: 12px 12px;
  color: #ccc;
}

/* 🔧 Mobile Responsive Footer */
@media (max-width: 1024px) {
  .site-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 5vw 0;
    background-color: none;
    color: #001a40;
    font-family: 'sora', sans-serif;
    box-sizing: border-box;
    border-top: #EFF4FD solid 1px;
  }
   
  .footer-top {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-col-1,
  .footer-col-2,
  .footer-col-3,
  .footer-col-4 {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center !important;
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto 50px auto !important;
    text-align: center !important;
  }
  
  .footer-search {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 12px;
    padding: 15px 0 30px;
    font-size: 14px;
    text-align: left;
    color: #001a4070;
    text-transform: uppercase;
  }
  
  .footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-top: auto;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .footer-row span + span::before {
    content: none; /* Remove vertical divider */
  }
}

