/* Footer */

/* ===== CONTACT MAP FOOTER ===== */

.contact-map {
  width: 100%;
  height: 300px;
  margin: 0;
  padding: 0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Optional: Add some spacing above the map if needed */
.contact-map {
  margin-top: 20px;
}

.footer {
  background: #333;
  color: #fff;
}

.footer-map {
  position: relative;
}

.map-info {
  position: absolute;
  top: 20px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 10px;
  color: #333;
  max-width: 300px;
}

.location-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #87cc46;
}

.location-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.view-map {
  color: #87cc46;
  font-weight: 600;
  font-size: 13px;
}

.footer-content {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #10b981;
}

.footer-section .about-us {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff; /* white text */
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-btn {
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links span {
  font-size: 14px;
  color: #ccc;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #4a90e2;
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s;
}

.social-link:hover {
  background: #8b5cf6;
}

/* Fixed footer links with minimal spacing */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 2px; /* Minimal spacing */
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 4px 0; /* Added padding back */
  position: relative;
  line-height: 1.4; /* More breathing room */
}

.footer-links a:before {
  content: "→";
  color: #10b981;
  font-weight: bold;
  margin-right: 8px;
  transition: transform 0.2s ease;
  display: inline-block;
  width: 14px;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: #10b981;
}

.footer-links a:hover:before {
  transform: translateX(3px);
}

.hours-grid {
  margin-bottom: 20px;
}

.hours-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0; /* Reduced padding */
  font-size: 13px;
}

.hours-day.current {
  background: rgba(135, 204, 70, 0.1);
  padding: 6px 10px; /* Reduced padding */
  border-radius: 5px;
  margin: 3px -10px; /* Reduced margin */
}

.day {
  color: #ccc;
  flex: 1;
}

.time {
  color: #fff;
  text-align: right;
}

.time.closed {
  color: #999;
}

.time.open {
  color: #10b981;
  font-weight: 600;
  margin-right: 10px; /* Add space before the actual time */
}

.currently-open {
  display: flex;
  align-items: center;
  gap: 8px; /* Reduced gap */
  padding: 12px; /* Reduced padding */
  background: rgba(135, 204, 70, 0.1);
  border-radius: 5px;
  border-left: 4px solid #87cc46;
}

.currently-open i {
  color: #10b981;
  flex-shrink: 0;
}

.status {
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.hours {
  font-size: 12px;
  color: #ccc;
  margin-left: auto; /* Push to the right */
}


