.site-footer {
  color: var(--brand-white);
  font-family: "Roboto", sans-serif;
}

.site-footer-main {
  padding: 0 0 0;
  border-radius: 28px 28px 0 0;
  background: var(--brand-navy);
}

.site-footer-main .container-fluid {
  padding-top: 48px;
  padding-bottom: 44px;
}

.footer-brand-block,
.footer-links-block,
.footer-contact-block,
.footer-newsletter-block {
  height: 100%;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-white);
  font-family: "Popins", sans-serif;
  font-size: var(--fs-md);
  font-weight: 600;
}

.footer-brand img {
  width: 31px;
  height: auto;
  flex-shrink: 0;
}

.footer-brand-block p {
  color: var(--brand-white);
  font-size: var(--fs-sm);
  font-weight: 400;
  margin: 0 0 22px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-links a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-white);

  font-size: 14px;
}

.footer-social-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-links-block h2,
.footer-contact-block h2,
.footer-newsletter-block h2 {
  color: var(--brand-gold);
  font-family: "Inter", sans-serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  margin: 0 0 16px;
}

.footer-links-block h2,
.footer-contact-block h2 {
  font-size: 1rem;
}

.footer-links-block a,
.footer-contact-block a {
  color: var(--brand-white);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.footer-links-block a,
.footer-contact-block a,
.footer-contact-block p {
  font-size: 0.8rem;
}

.footer-links-block a i,
.footer-contact-block a i,
.footer-contact-block p i {
  margin-right: 6px;
  color: var(--brand-gold);
}

.footer-contact-block p {
  color: var(--brand-white);
  font-size: var(--fs-sm);
  font-weight: 700;
  margin: 0;
}

.footer-newsletter-form {
  margin-bottom: 10px;
}

.footer-newsletter-alert {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.footer-newsletter-alert-success {
  background: rgba(40, 167, 69, 0.2);
  color: #d8ffe3;
}

.footer-newsletter-alert-error {
  background: rgba(220, 53, 69, 0.2);
  color: #ffd7dc;
}

.footer-newsletter-form .input-group {
  border-radius: 999px;
  overflow: hidden;
  background: var(--brand-white);
}

.footer-newsletter-form input {
  min-height: 42px;
  width: 100%;
  border: 0;
  box-shadow: none;
  padding: 10px 14px;
}

.footer-newsletter-form input:focus {
  box-shadow: none;
}

.footer-newsletter-form button {
  min-width: 95px;
  border: 0;
  background: var(--brand-gold);
  color: var(--brand-white);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 16px;
}

.footer-newsletter-block p {
  color: var(--brand-white);
  font-size: 10px;
  font-weight: 400;
  margin: 0;
}

.site-footer-bottom {
  background: #102431;
}

.site-footer-bottom .container {
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-footer-bottom p {
  color: var(--brand-white);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(8, 18, 26, 0.28);
  z-index: 3600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 18, 26, 0.34);
}

.floating-whatsapp i {
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 991px) {
  .site-footer-main .container {
    border-radius: 24px 24px 0 0;
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .footer-brand-block p,
  .footer-newsletter-block p {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .site-footer-main .container {
    border-radius: 20px 20px 0 0;
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .footer-links-block h2,
  .footer-contact-block h2,
  .footer-newsletter-block h2 {
    margin-bottom: 14px;
  }
}
