:root {
  --teal:#099488;
  --teal-700:#07756C;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#475569;
}

/* Footer layout */
.footer {
  background: var(--white);
  padding: 48px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  color: var(--text);
}

.footer .col {
  flex: 1 1 280px;
  min-width: 260px;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 12px;
}

.footer p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.custom-footer {
  background: var(--teal);  /* #099488 */
  color: var(--white);
}


/* Links */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}
.footer ul li a:hover { color: var(--teal-700); }

/* Contact info */
.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
.contact-info span { color: var(--muted); }

/* Schedule a Visit button */
.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  box-shadow: 0 2px 8px rgba(9,148,136,0.18);
  transition: transform .04s ease, box-shadow .2s ease, background .2s ease;
}
.btn-visit:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  box-shadow: 0 4px 12px rgba(7,117,108,0.22);
}
.btn-visit:active { transform: translateY(1px); }

/* Social icons */
.social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f6f9fb;
  color: var(--teal-700);
  border: 1px solid #e2e8f0;
  transition: background .2s ease, color .2s ease, transform .08s ease;
}
.social a svg {
  width: 18px;
  height: 18px;
}
.social a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

/* Bottom strip */
.footer-bottom {
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  text-align: center;
  padding: 16px 6vw;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a {
  margin-left: 12px;
  text-decoration: none;
  color: var(--text);
  transition: color .2s ease;
}
.footer-bottom a:hover { color: var(--teal-700); }

/* Responsive */
@media (max-width: 640px) {
  .footer { padding: 34px 5vw; }
  .btn-visit { width: 100%; text-align: center; }
}
/* Call button (Schedule a Visit) */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: var(--teal);             /* #099488 */
  border: 1px solid var(--teal);
  box-shadow: 0 2px 8px rgba(9,148,136,0.18);
  transition: transform .04s ease, box-shadow .2s ease, background .2s ease;
}

.call-btn:hover {
  background: var(--teal-700);         /* #07756C */
  border-color: var(--teal-700);
  box-shadow: 0 4px 12px rgba(7,117,108,0.22);
}

.call-btn:active {
  transform: translateY(1px);
}
/* ---------- Mobile Fixes ---------- */
@media (max-width: 768px) {
  /* Fix social icons on mobile */
  .custom-footer .btn.rounded-circle {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;  /* smaller icons */
  }

  /* Adjust text alignment for smaller screens */
  .custom-footer p,
  .custom-footer h5,
  .custom-footer ul {
    text-align: center;
  }

  .custom-footer ul {
    padding-left: 0; /* remove left indent */
  }

  /* Center social buttons */
  .custom-footer .mt-3 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
