/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://yourwebsite.com/
Template: hello-elementor
Version: 1.0.0
*/

/* Footer Namespace */

.footer-social img{
width: 20px !important;
}
.custom-footer {
  position: relative;
  background: #0A537C;
  color: #fff;
  padding-top: 90px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.custom-footer .footer-wave {
  position: absolute;
  top: 0;
  width: 100%;
}

.custom-footer .footer-wave svg {
  width: 100%;
  height: 110px;
}

.custom-footer .footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 40px 60px;
}

.custom-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.custom-footer h4 {
  margin-bottom: 16px;
  font-weight: 700;
}

.custom-footer ul {
  list-style: none;
  padding: 0;
}

.custom-footer ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

.custom-footer ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.custom-footer ul li a:hover {
  opacity: 1;
}

.custom-footer .footer-divider {
  border-top: 1px solid rgba(255,255,255,0.5);
  margin: 40px 0;
}

.custom-footer .footer-locations {
  background: rgba(255,255,255,0.2);
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.custom-footer .footer-locations span {
  margin: 0 12px;
}

.custom-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-footer .footer-social a {
  margin-left: 15px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .custom-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .custom-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}