/* ============================================================
   ODASS SOFTWARE — FOOTER STYLES
   assets/css/footer.css
   ============================================================ */

#site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.75); }

/* ── Footer Top ── */
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}

/* ── Brand Col ── */
.footer-brand .footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  opacity: 1;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
}
.footer-hours { margin-top: 20px; }
.footer-hours p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.footer-hours p strong { color: rgba(255,255,255,0.80); font-weight: 600; display: block; margin-bottom: 4px; }

/* ── Social Icons ── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: white;
}
.social-link svg { width: 17px; height: 17px; }
.social-link.fb { background: #1877F2; }
.social-link.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.li { background: #0A66C2; }
.social-link.tw { background: #1DA1F2; }
.social-link:hover { transform: translateY(-4px); box-shadow: 0 6px 14px rgba(0,0,0,0.25); }

/* ── Footer Columns ── */
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 4px;
}

/* ── Footer Links ── */
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '→';
  font-size: 12px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-links a:hover::before { opacity: 1; transform: none; }

/* ── Contact List ── */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 15px; height: 15px; color: var(--orange); }
.footer-contact-list a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--orange); }

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
