/**
 * KN Construction – footer styles (load on every page)
 */
.kn-footer {
  background: #0e121d;
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(48px, 6vw, 72px) 0 0;
  width: 100%;
  clear: both;
}

.kn-footer .container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.kn-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
  padding-bottom: 40px;
}

.kn-footer__logo {
  display: inline-block;
}

.kn-footer__logo img {
  max-height: 56px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.kn-footer__tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
  max-width: 280px;
}

.kn-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.kn-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-size: 16px;
  text-decoration: none !important;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.kn-footer__social a:hover {
  background: #ff5e14;
  color: #fff !important;
  transform: translateY(-2px);
}

.kn-footer__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}

.kn-footer__links,
.kn-footer__contact-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.kn-footer__links li,
.kn-footer__contact-list li {
  margin-bottom: 10px;
  list-style: none !important;
}

.kn-footer__links a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: color 0.2s ease;
}

.kn-footer__links a:hover {
  color: #ff5e14 !important;
}

.kn-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.kn-footer__contact-list i {
  color: #ff5e14;
  margin-top: 4px;
  flex-shrink: 0;
}

.kn-footer__contact-list a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.kn-footer__contact-list a:hover {
  color: #ff5e14 !important;
}

.kn-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.kn-footer__bar p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
  .kn-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .kn-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .kn-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
