/* Footer Main Styles */
.footer {
  background: #579679;
  color: #333333;
  padding: 50px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer .container {
  width: 90%;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* Footer Column Titles */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

/* Footer Links */
.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffd6e3;
}

/* Opening Hours */
.opening-hours li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Contact Info in Footer */
.contact-info {
  font-size: 14px;
  margin-top: 10px;
}
.contact-info i {
  margin-right: 5px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
}

/* Sticky Buttons (Call & WhatsApp) */
.sticky-btn {
  position: fixed;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.sticky-btn:hover {
  transform: scale(1.1);
}

.call-btn {
  bottom: 100px;
  right: 20px;
}

.whatsapp-btn {
  bottom: 40px;
  right: 20px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h4 {
    border-bottom: none;
    margin-bottom: 10px;
  }
}
