/* //////////////////// */
/* ///// FOOTER ////// */
/* ////////////////// */

.custom-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Footer Styles */
.custom-footer {
  background-color: #fff;
  padding: 50px 0 0;
  color: #333;
}

.custom-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.custom-footer-column {
  flex: 1;
  min-width: 200px;
}

.custom-footer-info {
  /* flex: 2; */
  min-width: 300px;
}

.custom-logo {
  width: 250px;
}

.custom-logo img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.custom-support {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.custom-support-icon {
  font-size: 24px;
  margin-right: 15px;
  color: #333;
  background-color: #f5f5f5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-support-text h3 {
  font-family: "Jost", Sans-serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
}

.custom-email {
  margin-bottom: 5px;
  font-size: 14px;
  word-break: break-word;
  font-weight: 400;
  color: #000;
}

.custom-phone {
  margin-bottom: 5px;

  color: #000;
  font-size: 1.2rem;
}

.custom-social {
  display: flex;
  gap: 10px;
}

.custom-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-social-icon:hover {
  background-color: #ff6701;
}

.custom-footer-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
  position: relative;
}

.custom-footer-links {
  list-style: none;
}

.custom-footer-links li {
  margin-bottom: 12px;
}

.custom-footer-links a {
  color: #363636;
  font-weight: 600;
  font-size: 17px;
  /* font-family: "Jost", sans-serif; */
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer-links a:hover {
  color: #000;
}

.custom-services-column {
  /* flex: 1.5;
  min-width: 250px; */
}

/* Copyright Bar */
.custom-copyright {
  background-color: #ff6701;
  color: #fff;
  padding: 15px 0;
  /* text-align: center; */
}

.custom-copyright p {
  font-size: 16px;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-footer-content {
    gap: 40px;
  }

  .custom-footer-column {
    flex: 1 1 calc(50% - 20px);
  }

  .custom-footer-info {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .custom-container {
    padding: 0 40px;
  }

  .custom-footer-column {
    flex: 1 1 100%;
  }

  .custom-footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .custom-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .custom-logo img {
    width: 80%;
  }

  .custom-support {
    flex-direction: column;
    /* align-items: center; */
    /* text-align: center; */
  }

  .custom-support-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .custom-social {
    /* justify-content: center; */
  }

  .custom-logo {
    /* text-align: center; */
  }

  .custom-footer-title {
    /* text-align: center; */
  }

  .custom-footer-links {
    /* text-align: center; */
  }
}
