/* ============================================================
   THEME-VESTRA — Footer (Custom Layout)
   ============================================================ */

.site-footer,
.site-footer * {
  color: #FFFFFF;
}

.site-footer {
  background-color: #1F2E22;
  color: #FFFFFF !important;
  padding-block: 4.5rem 2.5rem;
  font-family: var(--font-sans);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.footer-col__text {
  font-size: 0.95rem;
  color: #FFFFFF !important;
  line-height: 1.7;
  max-width: 420px;
  opacity: 0.95;
}

/* Vertical Footer Menu (Location: 'footer') */
.footer-menu-vertical {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu-vertical a {
  font-family: var(--font-sans);
  color: #FFFFFF !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.95;
}

.footer-menu-vertical a:hover {
  color: #D4A359 !important;
  opacity: 1;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #FFFFFF !important;
  opacity: 0.95;
}

.footer-contact-list a {
  color: #FFFFFF !important;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.95;
}

.footer-contact-list a:hover {
  color: #D4A359 !important;
  opacity: 1;
}

.footer-contact__icon {
  font-size: 1rem;
  flex-shrink: 0;
  color: #FFFFFF !important;
}

/* Divider */
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin-block: 2.5rem 2rem;
}

/* Legal Menu (Location: 'legal') */
.footer-legal {
  margin-bottom: 2rem;
}

.legal-menu-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-menu-horizontal a {
  font-family: var(--font-sans);
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.95;
}

.legal-menu-horizontal a:hover {
  color: #D4A359 !important;
  opacity: 1;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  font-size: 0.88rem;
  color: #FFFFFF !important;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.footer-copyright strong {
  color: #FFFFFF !important;
  font-weight: 700;
}

.footer-copyright a {
  color: #FFFFFF !important;
  text-decoration: underline;
}

/* Standalone White Footer Bottom Logos Section */
.footer-bottom-logos-section {
  background-color: #FFFFFF !important;
  padding: 1.75rem 0;
  width: 100%;
  border-top: 1px solid #E5E7EB;
}

.footer-bottom-logos-section * {
  color: inherit;
}

