/* ==============================================
   FOOTER MODERN STYLES
   ============================================== */

.footer-modern {
  margin-top: auto;
}

/* Footer CTA Section */
.footer-cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #003366 100%);
  padding: 3rem 0;
}

.footer-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-cta-btn:hover {
  background: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.footer-cta-btn i {
  transition: transform 0.3s ease;
}

.footer-cta-btn:hover i {
  transform: translateX(3px);
}

/* Footer Main */
.footer-main {
  background: var(--color-primary);
  padding: 4rem 0;
}

.footer-grid-modern {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

/* Brand Column */
.footer-brand-col {
  padding-right: 2rem;
}

.footer-logo-modern {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo-modern img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social-modern {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

/* Links Columns */
.footer-links-col {
  padding-top: 0.5rem;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav-links li a i {
  font-size: 0.65rem;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.footer-nav-links li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-nav-links li a:hover i {
  transform: translateX(3px);
}

/* Contact Column */
.footer-contact-col {
  padding-top: 0.5rem;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-row {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.footer-contact-row:hover {
  color: white;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 140, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon i {
  color: var(--color-secondary);
  font-size: 0.9rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom-modern {
  background: rgba(0, 20, 50, 0.95);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-copyright strong {
  color: white;
}

.footer-bottom-links-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom-links-modern a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links-modern a:hover {
  color: var(--color-secondary);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid-modern {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-logo-modern {
    margin-inline: auto;
  }

  .footer-social-modern {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .footer-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-nav-links li a {
    justify-content: center;
  }

  .footer-contact-row {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-cta-text h3 {
    font-size: 1.35rem;
  }

  .footer-bottom-links-modern {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-divider {
    display: none;
  }
}
