/* ==============================
   🔹 Footer Styles (Light Theme)
   ============================== */
.footer {
  background-color: #f8f8f8;
  color: #222;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px; /* Keep gap on desktop */
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  /* flex: 1 1 200px; */
  min-width: 200px;
  margin-bottom: 0;
}

.footer-section h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.footer-section h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #c59c5a;
  margin-top: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #c59c5a;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 220px;
}

.footer-logo {
  max-height: 50px;
  margin-bottom: 10px;
}

.footer-policies li {
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 10px;
  font-size: 20px;
  margin-top: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #c59c5a;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #e0e0e0;
  margin-top: 30px;
}

a {
  text-decoration: none;
  color: #222;
}

/* ==============================
   🔹 Responsive Mobile Styles
   ============================== */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0; /* Remove gap only on mobile */
  }

  .footer-section {
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px; /* small spacing between stacked sections */
  }

  .footer-logo {
    max-height: 50px;
    margin: 0 auto 10px;
  }

  .footer-description {
    margin: 0 auto 15px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-section h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 15px 15px;
  }

  .footer-description {
    font-size: 13px;
    max-width: 100%;
  }

  .footer-social {
    gap: 8px;
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 20px;
  }
}

@media (max-width: 992px) {
  .footer-section.brand .footer-logo {
    margin-bottom: 0;  /* Remove space under logo */
  }

  .footer-section.brand .footer-description {
    margin-top: 0;     /* Remove top margin */
    margin-bottom: 0;  /* Remove space under description */
  }
}
