/* ===== FOOTER STYLES ===== */
.site-footer {
  background: #111;
  color: #ccc;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 0;
  width: 100%;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 40px 36px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.5fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Brand */
.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.footer-brand-accent {
  color: #8bc34a;
}

/* Col text */
.footer-col p {
  font-size: 13.5px;
  color: #aaa;
  line-height: 1.85;
  margin: 0;
}

/* Headings */
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #8bc34a;
  display: inline-block;
}

.footer-heading--social {
  margin-top: 22px;
  font-size: 15px;
  border-bottom: 1px solid #2a2a3e;
}

/* Service links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #8bc34a;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #aaa;
}

.footer-contact-list small {
  font-size: 11px;
  color: #888;
  display: block;
}

.footer-contact-list a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: #8bc34a;
}

/* Contact icons */
.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #8bc34a;
  margin-top: 3px;
}

/* Social buttons */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

.social-btn:hover {
  background: #8bc34a;
  color: #fff;
}

/* Map */
.footer-map {
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #2a2a3e;
  text-align: center;
  padding: 14px 24px;
  font-size: 12.5px;
  color: #888;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 24px;
  }
}