/* =========================================================
   FOOTER ENHANCED THEME (premium, global brand)
   ========================================================= */

.main-footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #05202a 100%);
  color: #fff;
  padding-top: 90px;
}

.footer-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 55%);
  position: relative;
  overflow: hidden;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(214, 190, 99, 0.18),
      transparent 42%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 46%
    );
  pointer-events: none;
}

.footer-cta-grid {
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  font-size: 46px;
  color: #fff;
}

.footer-column h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 22px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 45px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 24px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-badges span {
  background: rgba(214, 190, 99, 0.15);
  border: 1px solid rgba(214, 190, 99, 0.28);
  padding: 10px 14px;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}

.main-footer input[type="email"] {
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

.main-footer input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.main-footer input[type="email"]:focus {
  border-color: rgba(214, 190, 99, 0.45);
  box-shadow: 0 0 0 4px rgba(214, 190, 99, 0.12);
}

.footer-contact {
  margin-top: 18px;
}

.footer-contact h4 {
  margin-bottom: 12px;
  color: #fff;
}

.footer-trust-strip {
  margin-top: 70px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.trust-item i {
  color: var(--gold);
  font-size: 24px;
}

.footer-payments {
  text-align: center;
  padding: 45px 0 25px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 44px;
  color: var(--gold);
  margin-top: 16px;
}

.export-destinations {
  text-align: center;
  padding-bottom: 45px;
}

.destination-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.destination-tags span {
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  font-size: 12px;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
}

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

.whatsapp-float {
  right: 25px;
  bottom: 25px;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-cta h2 {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
