/* ---------- FOOTER ---------- */
.footer-main {
  background-color: #1e3a35;
  color: #fff;
  font-family: 'LatoWeb', sans-serif;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.6fr 1.2fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Logo */
.footer-logo img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1.25rem;
  display: block;
}

/* Address & Hours */
.footer-company-info .address {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.footer-company-info .hours {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.8;
  margin: 0;
}

.footer-company-info .hours span {
  color: #B7E35A;
  font-weight: 700;
}

/* Section headings */
.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #B7E35A;
  margin: 0 0 1.4rem;
  letter-spacing: 0.3px;
}

/* Link lists */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-section ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-section ul a:hover {
  color: #B7E35A;
}

/* Emergency */
.footer-emergency h4 {
  margin-bottom: 1rem;
}

.call-label {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: #B7E35A;
  text-decoration: none;
  line-height: 1.2;
  display: block;
  transition: color 0.2s;
}

.phone-number:hover { color: #fff; }

/* Bottom Bar */
.footer-bottom {
  background-color: #162e29;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #aaa;
  margin: 0;
}

.fuller-design-link {
  color: #B7E35A;
  text-decoration: none;
  font-weight: 600;
}

.fuller-design-link:hover { text-decoration: underline; }

/* Hidden Admin Portal Link */
.admin-portal-link {
  color: #B7E35A;
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 600;
  display: inline-block;
}

.admin-portal-link:hover {
  color: #B7E35A;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social-icons a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-icons a:hover { color: #B7E35A; }

.footer-privacy-link {
  color: #ccc;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy-link:hover { color: #B7E35A; }

.scroll-top-btn {
  width: 36px;
  height: 36px;
  background: #B7E35A;
  border: none;
  border-radius: 4px;
  color: #1e3a35;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.scroll-top-btn:hover { background: #9ad844; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }
}
