/* ===============================
   DARK FOOTER (THEME MATCH)
=============================== */

.site-footer-dark {
  background: var(--primary);
  color: #f4faf9;
  padding: 60px 0 10px;
}

/* Brand */
.footer-brand {
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* Section title */
.footer-title {
  font-weight: 600;
  margin-bottom: 18px;
  color: #e6f4f1;
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #d5ece7;
}

.footer-contact .icon {
  font-size: 1.05rem;
  line-height: 1.4;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 18px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: #053e3a;
  transform: translateY(-3px);
}

/* Quote */
.footer-quote {
  max-width: 400px;
  margin-left: auto;
  font-size: 1.05rem;
  color: #eaf7f4;
}



/* Bottom line */
.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  font-size: 0.9rem;
  color: #d1ebe6;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 991px) {
  .footer-social {
    justify-content: center;
  }

  .footer-quote {
    margin: 0 auto;
  }

  .footer-brand {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .site-footer-dark {
    padding: 60px 0 24px;
  }

  .footer-brand {
    font-size: 2.1rem;
  }
}
