.site-footer {
  background: #F5F5F5;
  border-top: 1px solid #E5E7EB;
  padding-top: 60px;
  font-size: 14px;
  color: #374151;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;  
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
}

.footer-col a {
  text-decoration: none;
  color: #374151;
}

.footer-col a:hover {
  color: #2563eb;
}

/* BRAND */
.footer-col.brand img {
  height: 56px;
  width: 173px;
  margin-bottom: 14px;
}

/* NEW BADGE */
.new {
  background: #d1fae5;
  color: #047857;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 6px;
}

/* CERT BADGE */
.badge img {
  margin-top: 16px;
  max-width: 100px;
}

/* DIVIDER */
.site-footer hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #4B5563;
  font-size: 12px;
  font-weight: 400;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.currency {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 20px;
}

.currency img {
  height: 16px;
}

.social-icons a {
  color: #374151;
  width: 15px;
  height:15px ;
  margin-left: 10px;
}

.social-icons a:hover {
  color: #0B63FF; 
}


/* LOCATIONS */
.footer-locations {
  padding-bottom: 16px;
  padding-top:10px ;
  font-size: 14px;
  font-weight: 400;
  color: #374151;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col.brand {
    margin-bottom: 8px;
  }

  .footer-col h4 {
    margin-bottom: 12px;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .badge img {
    margin-top: 20px;
  }

  .footer-locations {
    display: none;
  }
}

@media (max-width: 600px) {

  /* FOOTER WRAPPER */
  .site-footer {
    padding-top: 32px;
  }

  /* TOP AREA */
  .footer-top {
    grid-template-columns: 1fr 1fr; 
    gap: 32px 24px;
  }

  /* BRAND FULL WIDTH */
  .footer-col.brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .footer-col.brand img {
    height: 44px;
    width: auto;
  }

  /* EXPLORE & ABOUT */
  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-col ul li {
    font-size: 12px;
    margin-bottom: 12px;
  }

  /* RESOURCES FULL WIDTH */
  .footer-col.resources {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  /* CERT BADGE */
  .badge img {
    max-width: 90px;
    margin-top: 16px;
  }

  /* DIVIDER */
  .site-footer hr {
    margin: 24px 0;
  }

   /* FOOTER BOTTOM STACK */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* MOVE footer-right TO TOP */
  .footer-right {
    order: 1;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 5px;
  }

  /* COPYRIGHT AT BOTTOM */
  .footer-bottom p {
    order: 2;
    font-size: 12px;
    color: #4B5563;
  }

  /* CURRENCY */
  .currency {
    padding: 6px 12px;
    font-size: 13px;
  }

  /* SOCIAL ICONS */
  .social-icons {
    display: flex;
    gap: 12px;
  }

  .social-icons a {
    margin-left: 0;
    font-size: 16px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px;
  }

  .footer-locations {
    display: none;
  }
}


