:root {
  --footer-bg: #0b223d;
  --accent-green: white;
  --text-light: #f0f8ff;
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--text-light);
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  /* Use Grid for perfect alignment on desktop */
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; 
  gap: 40px;
}

.footer-section h4 {
  color: var(--accent-green);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Map Styling */
.map-container {
  position: relative;
  padding-bottom: 60%; /* Aspect ratio */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.map-container iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: 0;
}


/* Container for icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  justify-content: flex-start; /* Default: Left aligned for desktop */
}

/* Icon Circle Styling */
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f8ff;
  border-radius: 50%; /* Makes them circular */
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effects */
.social-icons a:hover {
  background-color: var(--accent-green);
  color: #fff;
  transform: translateY(-5px); /* Gentle float up */
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Specific Brand Colors on Hover (Optional) */
.social-icons a[aria-label="Facebook"]:hover { background-color: #1877F2; }
.social-icons a[aria-label="Instagram"]:hover { background-color: #E4405F; }
.social-icons a[aria-label="YouTube"]:hover { background-color: #FF0000; }
.social-icons a[aria-label="WhatsApp"]:hover { background-color: #25D366; }

/* Responsive Alignment */
@media (max-width: 600px) {
  .social-icons {
    justify-content: center; /* Centers icons on mobile */
    margin-top: 10px;
  }
}

/* Content Styling */
.details-content p, .footer-links a {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(240, 248, 255, 0.9);
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

.details-content a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* --- RESPONSIVENESS --- */

/* Tablets */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* Stack into 2 columns */
  }
  .footer-location {
    grid-column: span 2; /* Map takes full width on top */
  }
}

/* Phones */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr; /* Single column stack */
    text-align: center;
    gap: 30px;
  }
  
  .footer-location {
    grid-column: span 1;
  }

  .footer-links a:hover {
    padding-left: 0; /* Disable side-slide on mobile hover */
  }
}