/* =========================
   FINAL CTA
========================= */

.final-cta {
  background: var(--primary-gradient);
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================
   SITE FOOTER
========================= */

.site-footer {
  background: var(--footer-bg);
  color: #d6dde2;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.site-footer h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  font-size: 0.95rem;
  color: #d6dde2;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

/* Brand */
.footer-brand img {
  width: 52px;
  margin-bottom: 14px;
  border-radius: 12px;
}

/* Links */
.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

/* Contact */
.footer-contact p {
  margin-bottom: 8px;
}

/* Map */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  border: none;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #c2cbd1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 14px;
  }
}
