/* ==========================================
   Footer
   ========================================== */
.cta-section-before-footer {
  background: linear-gradient(135deg, #043F6D 0%, #46A2DA 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section-before-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}
.cta-section-before-footer::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

.cta-container-before-footer {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-icon-wrapper {
  margin-bottom: 1.5rem;
}
.cta-icon-wrapper i {
  font-size: 3rem;
  color: #ffffff;
  opacity: 0.9;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.cta-title-before-footer {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cta-title-before-footer {
    font-size: 1.6rem;
  }
}

.cta-description-before-footer {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .cta-description-before-footer {
    font-size: 1rem;
  }
}

.cta-features-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-features-list {
    flex-direction: column;
    gap: 1rem;
  }
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}
.cta-feature-item i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.cta-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cta-button-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: #ffffff;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  min-width: 280px;
}
.cta-button-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: #043F6D !important;
  text-decoration: none;
}
.cta-button-primary:hover i {
  transform: translateX(5px);
}
.cta-button-primary i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .cta-button-primary {
    min-width: auto;
    width: 90%;
    max-width: 350px;
  }
}

.footer-new {
  background: #043F6D;
  color: #F9F9F9;
  padding: 4rem 2rem 2rem;
}

.footer-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-column-new h3 {
  margin-bottom: 1rem;
}

.footer-heading-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F9F9F9;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-heading-spacer {
  margin-top: 2rem;
}

.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-new li {
  margin-bottom: 0.75rem;
}
.footer-links-new li a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-links-new li a:hover {
  color: #F9F9F9 !important;
  transform: translateX(5px);
}
.footer-links-new li a i {
  margin-right: 0.5rem;
  font-size: 0.85rem;
}
.footer-links-new li.footer-sub-link {
  margin-left: 1rem;
}
.footer-links-new li.footer-sub-link a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo-new img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-copyright-new {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer-copyright-new p {
  margin: 0;
}

.footer-nav-mobile-new {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F9F9F9;
  border-top: 1px solid rgba(4, 63, 109, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.footer-nav-mobile-new.footer-hidden {
  transform: translateY(100%);
}
@media (max-width: 768px) {
  .footer-nav-mobile-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: #043F6D !important;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.footer-nav-item span {
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-nav-item:hover {
  background: rgba(70, 162, 218, 0.05);
  color: #46A2DA !important;
}

.footer-top-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: #EB4878 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.footer-top-button i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}
.footer-top-button span {
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-top-button.visible i {
  animation: bounce 2s infinite;
}
.footer-top-button:hover {
  background: rgba(235, 72, 120, 0.05);
}/*# sourceMappingURL=footer.css.map */