/* ============================================================
   KALUM KABS — footer.css
   Global footer styles. Loaded on every page.
   ============================================================ */

/* ── Base footer ── */
.site-footer {
  background: #030A12;
  padding: 80px 0 40px;
}

.site-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── 4-column grid ── */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* ── Column 1: Brand ── */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand__logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-brand__logo-img {
  width: 90px;
  height: auto;
  display: block;
}

.footer-brand__logo-text {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-brand__logo-text span {
  color: #D6B54A;
}

.footer-brand__description {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #D1D5DC;
  max-width: 320px;
  margin: 0 0 28px;
}

/* ── Social icons ── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.footer-social__link svg {
  width: 26px;
  height: 26px;
}

.footer-social__link:hover {
  color: #D6B54A;
}

/* ── Column headings ── */
.footer-col__heading {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #FFFFFF;
  margin: 0 0 28px;
}

/* ── Link lists (company + service areas) ── */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.footer-links__item a {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #D1D5DC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links__item a:hover {
  color: #D6B54A;
}

/* ── Contact column ── */
.footer-contact-intro {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #D1D5DC;
  margin: 0 0 20px;
}

/* Contact items stack */
.footer-contact-items {
  display: flex;
  flex-direction: column;
}

/* Individual contact item */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-contact-item:first-child {
  padding-top: 0;
}

.footer-contact-item__icon {
  flex-shrink: 0;
  color: #D1D5DC;
  margin-top: 3px;
  display: flex;
}

.footer-contact-item__icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item__city {
  display: block;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D1D5DC;
}

.footer-contact-item__phone {
  display: block;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #D1D5DC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item__phone:hover {
  color: #D6B54A;
}

/* Email row */
.footer-contact-email {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}

.footer-contact-email__icon {
  flex-shrink: 0;
  color: #D1D5DC;
  display: flex;
}

.footer-contact-email__icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-email__link {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #D1D5DC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-email__link:hover {
  color: #D6B54A;
}

/* ── Copyright bar ── */
.site-footer__bottom {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.footer-copyright {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #94A3B8;
  text-align: center;
  margin: 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet (991px): 2 columns ── */
@media (max-width: 991px) {
  .site-footer__container {
    padding: 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
}

/* ── Mobile (767px): 1 column ── */
@media (max-width: 767px) {
  .site-footer {
    padding: 60px 0 32px;
  }

  .site-footer__container {
    padding: 0 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__bottom {
    margin-top: 48px;
    padding-top: 28px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}
