/* Ultra Modern Footer Styles */

.ultra-modern-footer {
  background: linear-gradient(
      135deg,
      rgba(6, 23, 91, 0.85) 0%,
      rgba(10, 26, 58, 0.85) 25%,
      rgba(26, 43, 91, 0.85) 50%,
      rgba(10, 26, 58, 0.85) 75%,
      rgba(6, 23, 91, 0.85) 100%
    ),
    url("../images/bernd-dittrich-LKvT6sCkuPU-unsplash.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(30, 58, 138, 0.2);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
}

.footer-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-gradient-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(30, 58, 138, 0.08) 50%,
    transparent 100%
  );
  animation: floatGradient 20s ease-in-out infinite;
}

.bg-gradient-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  animation: floatGradient 25s ease-in-out infinite reverse;
}

.bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.1),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(30, 58, 138, 0.2), transparent),
    radial-gradient(
      1px 1px at 90px 40px,
      rgba(255, 255, 255, 0.15),
      transparent
    ),
    radial-gradient(1px 1px at 130px 80px, rgba(30, 58, 138, 0.1), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: particleFloat 30s linear infinite;
}

@keyframes floatGradient {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
  50% {
    transform: translateX(20px) translateY(-20px) scale(1.1);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(50px);
  }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: block !important;
  visibility: visible !important;
  min-height: 200px;
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Brand Section */

.brand-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  position: relative;
  display: inline-block;
}

.logo-link {
  position: relative;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 120px;
  width: auto;
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(99, 91, 255, 0.3));
  transition: all 0.3s ease;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(99, 91, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.logo-link:hover .logo-glow {
  opacity: 1;
}

.brand-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
  max-width: 400px;
}

/* Contact Cards */

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(99, 91, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.contact-card:hover::before {
  left: 100%;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #38bdf8);
  border-radius: 12px;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.contact-details {
  flex: 1;
}

.contact-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.025em;
}

.contact-text {
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

.contact-text a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #ffffff;
}

/* Navigation Section */

.navigation-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-title {
  position: relative;
  margin: 0;
}

.title-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: block;
  margin-bottom: 12px;
}

/* Removed title-underline styles - no longer needed */

/* Removed ::after pseudo-element that was causing strikethrough effect */

/* Removed shimmer animation - no longer needed */

.footer-nav {
  width: 100%;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: #94a3b8;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 58, 138, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(30, 58, 138, 0.1);
  border-color: rgba(30, 58, 138, 0.2);
  transform: translateX(8px);
}

.nav-link:hover::before {
  left: 100%;
}

.link-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-link:hover .link-icon {
  transform: translateX(4px);
}

.link-text {
  font-size: 15px;
  font-weight: 500;
}

/* Action Section */

.action-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.action-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.search-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e3a8a, #38bdf8, #1e3a8a);
}

.search-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.search-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.search-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #38bdf8);
  border-radius: 8px;
  color: white;
  font-size: 16px;
}

.search-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.search-description {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1e3a8a, #38bdf8);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.search-btn:hover .btn-shine {
  left: 100%;
}

.btn-text {
  z-index: 1;
  position: relative;
}

.btn-icon {
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease;
}

.search-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Social Card */

.social-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.social-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 0.025em;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
  left: 100%;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.3);
}

.social-link.twitter:hover {
  background: #1da1f2;
  color: #ffffff;
  border-color: #1da1f2;
  box-shadow: 0 12px 24px rgba(29, 161, 242, 0.3);
}

.social-link.linkedin:hover {
  background: #0077b5;
  color: #ffffff;
  border-color: #0077b5;
  box-shadow: 0 12px 24px rgba(0, 119, 181, 0.3);
}

.social-link.whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.social-link i {
  font-size: 18px;
  z-index: 1;
  position: relative;
}

.social-tooltip {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.social-link:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Footer Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.copyright-text p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #1e3a8a, #38bdf8);
  border-radius: 1px;
}

.company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.company-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.company-tagline {
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .brand-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }
  .footer-main {
    padding: 60px 0 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .logo-img {
    height: 90px;
  }
  .contact-cards {
    gap: 16px;
  }
  .contact-card {
    padding: 16px;
  }
  .search-card {
    padding: 24px;
  }
  .social-card {
    padding: 20px;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 32px;
  }
  .logo-img {
    height: 70px;
  }
  .search-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  .contact-icon {
    align-self: center;
  }
}
