:root {
  --primary: #004aad;
  --yellow: #FFD700;
  --text-light: #dfe6ff;
}

.site-footer {
  background: linear-gradient(180deg, #002b66, #001a40);
  padding-top: 50px;
  color: white;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, auto));
  gap: 30px;
  padding-bottom: 40px;
}

.brand-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-section p,
.footer-address {
  font-size: 14px;
  line-height: 22px;
  opacity: .85;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--yellow);
  font-weight: 600;
}

.footer-links li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: .3s ease;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(6px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.newsletter-form button {
  background: var(--yellow);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: white;
  color: var(--primary);
}

.social-icons {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.social {
  font-size: 18px;
  color: white;
  transition: .3s;
}

.social:hover {
  color: var(--yellow);
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  opacity: .85;
}

/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0px 6px 15px rgba(0,0,0,.25);
  z-index: 999;
  transition: .3s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

.seo-brand-strip {
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  padding: 12px 10px;
}

.seo-brand-strip p {
  margin: 0;
  font-size: 18px;
  color: #444;
  line-height: 1.4;
}

.seo-brand-strip strong {
  color: #1e3a8a; /* royal brand color */
}
