/* ===== Footer Base ===== */
.footer {
  width: 100%;
  background: #fff;
  padding: 50px 0;
  min-width: 800px; /* your requirement */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding: 0 40px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: left; /* center everything */
  gap: 5px;
}

.footer-title {
  color: #4A5568;
  font-size: 20px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
}

.footer-text {
  color: #718096;
  font-size: 18px;
  line-height: 30px;
  font-family: Inter, sans-serif;
  max-width: 320px;
}

.footer-phone {
  color: #718096;
  font-size: 18px;
  font-family: Inter, sans-serif;
}

.footer-logo {
  width: 166px;
  /* height: 53px; */
}

/* ===== Links ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  color: #718096;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 37px;
}

/* ===== Social Icons ===== */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: left;
      margin-top: 30px;
}

.footer-social .icon {
  width: 34px;
  height: 34px;
  background: #FAFAFA;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1A202C;
}

/* ===== Bottom Line ===== */
.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  color: #4A5568;
  font-size: 14px;
  font-family: Inter, sans-serif;
  border-top: 1px solid #CBD5E0;
}


@media (max-width: 480px) {
.footer {
    width: 100%;
    background: #fff;
    padding: 50px 0;
    min-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-container{
      flex-direction: column;
      width: 100%;
      max-width: 100%;
              align-items: center;
              padding: 0;
}
.logo {
    display: none;
}

.hero-container {
    width: 100%;
    max-width: 1140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-col {
    align-items: center;
}
}