/* ===== FOOTER - UNIFIED STYLES ===== */

.footer {
  background: linear-gradient(135deg, #f3ecd3, #fff8e1);
  color: #2f3e2e;
  padding: 5px 5px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  margin-top: 5px;
}

/* TOP FLEX - MAIN FOOTER CONTENT */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}

/* LEFT - BRAND SECTION */
.footer-brand {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-logo {
  width: 70px;
  height: auto;
  margin-bottom: 12px;
}

.footer-brand h4,
.footer-brand h5 {
  font-family: 'Playfair Display', serif;
  margin: 6px 0;
  line-height: 1.4;
}

.footer-brand h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2f3e2e;
  margin-bottom: 8px;
}

.footer-brand h5 {
  font-size: 14px;
  font-weight: 500;
  color: #2f5d3a;
  font-style: italic;
}

.footer-brand p {
  font-size: 14px;
  color: #2f5d3a;
  margin: 4px 0;
  line-height: 1.5;
}

/* CENTER - QUICK LINKS */
.footer-center {
  flex: 1;
  min-width: 200px;
  text-align: center;
  margin-top: 50px;

}

.footer-center h4,
.footer-center h5 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #2f3e2e;
  margin-bottom: 12px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  margin: 0;
}

.footer-center ul li a {
  display: inline-block;
  color: #2f5d3a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-center ul li a:hover {
  color: #c9a227;
  font-weight: 600;
}

/* RIGHT - ADDRESS & CONTACT */
.footer-address {
  flex: 1;
  min-width: 200px;
  text-align: right;
  margin-top: 70px;
}

.footer-address h4,
.footer-address h5,
.footer-address h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2f3e2e;
  margin-bottom: 6px;
}

.footer-address h4,
.footer-address h5 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 12px;
}

.footer-address h4:first-child,
.footer-address h5:first-child {
  margin-top: 0;
}

.footer-address h6 {
  font-size: 14px;
  margin: 6px 0;
}

.footer-address p {
  font-size: 14px;
  color: #2f5d3a;
  margin: 4px 0;
  line-height: 1.5;
}

/* BOTTOM - COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(47, 62, 46, 0.2);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #2f5d3a;
  font-weight: 500;
}

/* 📱 TABLET VIEW - 768px and below */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 15px;
  }

  .footer-brand,
  .footer-center,
  .footer-address {
    text-align: left;
    min-width: 100%;
  }

  .footer-address,
  .footer-center{
    margin-top: 0;
  }
  .footer-brand h4,
  .footer-center h4,
  .footer-center h5,
  .footer-address h4,
  .footer-address h5 {
    font-size: 16px;
  }

  .footer-logo {
    width: 65px;
  }

  .footer-bottom {
    padding-top: 12px;
    font-size: 12px;
  }
}

/* 📱 MOBILE VIEW - 480px and below */
@media (max-width: 480px) {
  .footer {
    padding: 25px 12px;
    margin-top: 30px;
    font-size: 14px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-brand h4,
  .footer-center h4,
  .footer-center h5,
  .footer-address h4,
  .footer-address h5 {
    font-size: 15px;
  }

  .footer-brand h5,
  .footer-address h6 {
    font-size: 13px;
  }

  .footer-center ul li a,
  .footer-address p {
    font-size: 13px;
  }

  .footer-logo {
    width: 60px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2E8B57; /* primary green */
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Hover effect */
.footer-social a:hover {
  background: #2F4F2F; /* dark green */
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Mobile alignment */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}
