/* Footer Base */
.site-footer {
  /* Matching the header's dark blue/teal gradient for visual consistency */
  background: linear-gradient(180deg, rgba(5,54,70,0.95), rgba(15,90,110,0.85));
  color: #fff;
  padding: 40px 0 10px;
  margin-top: 40px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-shadow: 0 -4px 16px rgba(6,30,40,0.1);
}

.footer-inner.container {
  /* Using the global container settings from style.css */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px; /* Space between columns */
}

/* Columns */
.footer-col {
  /* Responsive flex basis: 1/3 on desktop, full width on mobile/tablet */
  flex: 1 1 280px;
  margin-bottom: 30px;
}

/* Logo & Title */
.footer-logo {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px; /* Slightly smaller for better fit */
  width: 60px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.footer-title h5 {
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.footer-title h4 {
  font-size: 11px;
  margin-top: 2px;
  color: #e6f6fb;
  font-weight: 500;
}

/* Headings */
.footer-heading {
  color: #fff;
  font-size: 18px;
  border-bottom: 2px solid #00b8d4; /* Teal accent line */
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Social Icons */
.footer-social a {
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s;
  padding: 5px; /* Added for better touch target */
}

.footer-social a:hover {
  color: #ffd700; /* Yellow accent on hover */
}

/* Address & Contact */
 #Quick{
  margin-top: 80px;
}

.footer-address h4, .footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}
.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #00b8d4;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: #e6f6fb;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #ffd700;
  transform: translateX(3px);
}

/* Map */
.footer-map{
  position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio – height auto adjust */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}
.footer-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  font-size: 12px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #00b8d4; /* Teal accent */
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 184, 212, 0.4);
  z-index: 2000;
  transition: background 0.3s, transform 0.2s;
}

.back-to-top:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-inner.container {
    flex-direction: column;
    padding: 0 30px; /* Add internal padding for content */
    margin-bottom: 40px;
  }

  .footer-col {
    width: 100%;
    min-width: unset;
    text-align: left; /* Align columns left for better readability on mobile */
  }
  
  .footer-logo {
    justify-content: flex-start; /* Align logo left on mobile */
  }

  .footer-address, .footer-col p {
    font-size: 15px; /* Slightly larger text for mobile */
  }
  
  .footer-col h4 {
    margin-top: 10px;
  }
  
  .footer-links li a:hover {
    transform: translateX(0); /* Disable the small transform on mobile hover for simplicity */
  }
}