/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #111111;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  border-top: 3px solid #009FD8;
}

/* Top section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 48px;
  padding: 56px 64px 48px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand a {
  display: inline-block;
}

.footer-brand img {
  height: 52px;
  width: auto;
  max-width: 100%;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: #009FD8;
  color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:nth-child(2) svg,
.footer-social a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

/* Nav columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 32px;
}

.footer-column h2 {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #009FD8;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column li,
.footer-column address {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.footer-column a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: #fff;
}

/* Contact list with icons */
.footer-contact-list {
  gap: 14px !important;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #009FD8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Address with pin icon */
.footer-column address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-style: normal;
}

.footer-column address svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #009FD8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-credit {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 40px 40px;
    gap: 40px;
  }

  .footer-tagline {
    max-width: 400px;
  }

  .footer-bottom {
    padding: 20px 40px;
  }
}

@media (max-width: 680px) {
  .footer-top {
    padding: 40px 24px 32px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
