/* =========================   SIMPLE FOOTER STYLES   Light background to contrast with blue CTA section========================= */

.site-footer {
  background: var(--off-white);
  color: var(--text-dark);
  border-top: 1px solid var(--border-gray);
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}

/* Footer Top */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-gray);
}

.footer-brand {
  max-width: 500px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.btn-back-to-top {
  background: var(--white);
  border: 1px solid var(--border-gray);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-to-top:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(11, 45, 77, 0.1);
}

/* Footer Middle */

.footer-middle {
  margin-bottom: 2rem;
}

.footer-middle .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-links-col, .footer-contact-col {
  flex: 1;
  min-width: 250px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links-list a:hover {
  color: var(--gold-primary);
}

.footer-links-list a::before {
  content: "›";
  margin-right: 8px;
  color: var(--gold-primary);
  font-weight: bold;
}

/* Contact Information */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item i {
  color: var(--gold-primary);
  width: 16px;
  margin-top: 3px;
}

.contact-item span, .contact-item a {
  color: var(--text-dark);
  line-height: 1.5;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold-primary);
}

/* Footer Bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gray);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

.separator {
  color: var(--border-gray);
}

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

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .btn-back-to-top {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 2rem 0 1.5rem;
  }
}

@media (max-width: 576px) {
  .footer-middle .row {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-links-col, .footer-contact-col {
    min-width: 100%;
  }
}

