/* ===== UNIFORM FOOTER BANNER ===== */
.footer-banner {
  background: linear-gradient(90deg, #38bdf8, #23a7f2);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.25);
}

.footer-banner::before {
  content: "✦ ✦ ✦";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  font-size: 2rem;
  letter-spacing: 0.5rem;
}

.banner-content h2 {
  font-size: clamp(1.4rem, 2vw + 0.5rem, 2rem);
  margin: 0 0 0.3rem;
  font-weight: 700;
}

.banner-content p {
  margin: 0;
  font-style: italic;
  opacity: 0.95;
}

/* Subtle animation (optional for elegance) */
@keyframes floatStars {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
  100% { transform: translateX(-50%) translateY(0); }
}
.footer-banner::before {
  animation: floatStars 4s ease-in-out infinite;
}

/* Responsive spacing */
@media (max-width: 600px) {
  .footer-banner { padding: 1.5rem 1rem; }
}


/* ===== Footer Styles ===== */

/* Footer main container */
#footer {
  background: linear-gradient(to bottom, #0b6ba8, #084f7a); /* subtle gradient */
  color: #fff;
  padding: 2rem 1rem 0; /* top/bottom padding */
}

/* Wrapper to limit width and center content */
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

/* Each footer column */
.footer1, .footer2, .footer3, .footer4 {
  flex: 1 1 220px;
  text-align: center;
}

/* ===== Footer 1 (Logo + Address) ===== */
.footer1 img {
  max-width: 100px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.footer1 img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.footer1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer1 li {
  margin: 0.3rem 0;
}

/* ===== Footer 2 (Get in Touch) ===== */
.footer2 h3 { margin-bottom: 0.8rem; }
.social-icons {
  margin-bottom: 1rem;
}
.social-icons a img {
  width: 32px;
  height: 32px;
  margin: 0 8px;
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}
.social-icons a img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}
/* Contact info */
.call, .email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
}
.call img, .email img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.call img:hover, .email img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

/* ===== Footer 3 (Where We Are) ===== */
.footer3 p {
  margin: 0.3rem 0;
}

/* ===== Footer 4 (Quick Links) ===== */
.footer4 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer4 li {
  margin: 0.3rem 0;
}
.footer4 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer4 a:hover {
  color: #38bdf8;
  text-shadow: 0 0 6px rgba(56,189,248,0.6);
  text-decoration: underline;
}

/* ===== Footer Bottom Bar ===== */
.footer-bottom {
  width: 100%;
  text-align: center;
  background: #07395a; /* darker strip */
  margin-top: 1.5rem;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: #cfd8dc;
  letter-spacing: 0.5px;
}
.footer-bottom p {
  margin: 0;
}

/* ===== Responsive (stack on small screens) ===== */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
