/* ═══════════════════════════════════════════════
   Site Footer — footer.css
   ═══════════════════════════════════════════════ */

/* ── Orange top accent bar ── */
.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #f9a826 0%, #e8971a 50%, #f9a826 100%);
  background-size: 200% 100%;
  animation: accentSlide 3s linear infinite;
}

@keyframes accentSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── Main footer body ── */
.site-footer {
  background: #1a1e2a;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.footer-main {
  padding: 72px 0 56px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* ── Column base ── */
.footer-col__title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #f9a826;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.footer-col:hover .footer-col__title::after {
  width: 52px;
}

/* ── Col 1: Brand ── */
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-logo__img {
  height: 148px;
  width: auto;
  object-fit: contain;
  display: block;
  /* invert to white so it shows on dark footer */
  filter: brightness(0) invert(1);
  transition: opacity 0.2s, filter 0.2s;
}
.footer-logo:hover .footer-logo__img {
  opacity: 0.8;
}

.footer-about {
  font-size: 0.83rem;
  color: #8892a4;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ── Social icons ── */
.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #8892a4;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, color 0.25s ease,
              transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.25s ease;
}

.footer-social:hover {
  background: #f9a826;
  color: #1a1e2a;
  border-color: #f9a826;
  transform: translateY(-4px);
}

/* ── Quick links & Services ── */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.85rem;
  color: #8892a4;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.footer-links li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 1.5px;
  background: #f9a826;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.2s ease, width 0.2s ease;
}

.footer-links li a:hover {
  color: #f9a826;
  gap: 12px;
}

.footer-links li a:hover::before {
  opacity: 1;
  width: 10px;
}

/* ── Contact list ── */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.83rem;
  color: #8892a4;
  line-height: 1.6;
  transition: color 0.2s;
}

.footer-contact-list li:hover {
  color: #c8d0dc;
}

.footer-contact-list li a {
  color: #8892a4;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list li a:hover {
  color: #f9a826;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: rgba(249,168,38,0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a826;
  margin-top: 1px;
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.footer-contact-list li:hover .footer-contact-icon {
  background: rgba(249,168,38,0.2);
  transform: scale(1.1);
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.footer-bottom__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: #5a6478;
}

.footer-copy span {
  color: #f9a826;
  font-weight: 700;
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
}

.footer-bottom__links a {
  font-size: 0.78rem;
  color: #5a6478;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom__links a:hover {
  color: #f9a826;
}

/* ── Scroll-in animation ── */
.footer-col {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-col.in-view { opacity: 1; transform: translateY(0); }
.footer-col:nth-child(1) { transition-delay: 0s; }
.footer-col:nth-child(2) { transition-delay: 0.1s; }
.footer-col:nth-child(3) { transition-delay: 0.2s; }
.footer-col:nth-child(4) { transition-delay: 0.3s; }

.footer-bottom {
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}

.footer-bottom.in-view { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-main { padding: 52px 0 40px; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 32px; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom__inner { flex-direction: column; text-align: center; padding: 0 20px; }
  .footer-bottom__links { justify-content: center; }
}
