/* ====== Footer ====== */
footer {
  background: #123E2C;
  color: #FCFBC5;
  font-family: "Times", "Times New Roman", serif;
  margin-top: 0px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 60px 10% 40px;
  text-align: left;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FCFBC5;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.footer-links h3,
.footer-social h3,
.footer-service h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #FCFBC5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #FCFBC5;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #FCFBC5;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FCFBC5;
  color: #123E2C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
  background: #FCFBC5;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding: 15px 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #ccc;
}

.footer-service p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.footer-service a {
  color: #FCFBC5;
  text-decoration: none;
}

.footer-service a:hover {
  text-decoration: underline;
}