/* Footer Styles */
.site-footer {
  background-color: #072f44;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 30px;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Top */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

/* Left Section */
.footer-left {
  flex: 1 1 250px;
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 0px;
}

.footer-logo p {
  font-size: 0.90rem;
  color: #c5d0d9;
  margin-bottom: 20px;
  
}


.footer-logo .footer-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: #c19a6b; /* Highlight color */
  margin: 2px 0;  /* space between logo & text */
}

.footer-socials a {
  display: inline-block;
  margin: 0 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  font-size: 18px;
  color: #fff; /* icon default white */
  transition: all 0.3s ease; /* smooth hover */
text-decoration: none;
}

/* Default brand colors */
.footer-socials a .fa-facebook-f { background-color: #1877F2; }
.footer-socials a .fa-twitter    { background-color: #1DA1F2; }
.footer-socials a .fa-instagram  { background-color: #E4405F; }
.footer-socials a .fa-youtube    { background-color: #FF0000; }
.footer-socials a .fa-whatsapp   { background-color: #25D366; }


.footer-socials a i {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 36px;
  border-radius: 50%;
}

/* Hover effect: scale only */
.footer-socials a:hover {
  transform: scale(1.15);
}

/* Hover effect: scale + glow */
.footer-socials a:hover {
  transform: scale(1.15);
}

/* Glow per brand */
.footer-socials a:hover .fa-facebook-f { box-shadow: 0 0 10px #1877F2; }
.footer-socials a:hover .fa-twitter    { box-shadow: 0 0 10px #1DA1F2; }
.footer-socials a:hover .fa-instagram  { box-shadow: 0 0 10px #E4405F; }
.footer-socials a:hover .fa-youtube    { box-shadow: 0 0 10px #FF0000; }
.footer-socials a:hover .fa-whatsapp   { box-shadow: 0 0 10px #25D366; }

/* Footer Links */
.footer-links {
  display: flex;
  flex: 2 1 400px;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-links h4 {
  color: #fff;
  border-bottom: 2px solid #8abdb9;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #c5d0d9;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffdd00;
}

/* Appointment Section */
.footer-appointment {
  flex: 1 1 250px;
  text-align: center;
}

.footer-appointment h4 {
  color: #fff;
  border-bottom: 2px solid #8abdb9;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.footer-appointment p {
  margin-bottom: 15px;
  color: #c5d0d9;
}

.call-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #0f4a5c;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none; /* remove underline */
  margin-top: 50px;
}

.call-us i {
  font-size: 24px;
  color: #8abdb9;
}

.call-us span {
  display: block;
  font-weight: 600;
  color: #fff;
}

.call-us p {
  margin: 0;
  color: #c5d0d9;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 0.85rem;
  color: #c5d0d9;
}

.footer-bottom a:hover {
  text-decoration: underline; /* or color change if you prefer */
}

.footer-bottom a {
  color: inherit;         /* match footer text color */
  text-decoration: none;  /* remove underline */
  font-weight: 600;       /* optional: make it stand out */
}



/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    justify-content: center;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px; /* tight gap only */
    justify-content: flex-start; /* stop spreading */
  }

  .footer-left,
  .footer-links,
  .footer-appointment {
    flex: 0 0 auto; /* stop flex from stretching vertically */
    width: 100%;    /* full width for neat stacking */
    max-width: 500px; /* optional: control width */
  }

  /* keep quick + useful links side by side */
  .footer-links {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 45px;
    text-align: left;
    margin: 0;
  }

  .footer-appointment {
    margin: 0;
    padding-top: 0;
  }
  
  .footer-logo img {
  max-width: 130px;
  margin-bottom: 0px;
}
}
