/* Footer */
.footer {
  background: linear-gradient(135deg, #0a1f5c 0%, #1e3c72 50%, #2a5298 100%);
  padding: 0;
  position: relative;
  margin-top: -100px;
}

.footer-card {
  background: white;
  margin: 0 auto;
  border-radius: 30px 30px 30px 30px;
  padding: 3.5rem 3rem 2.5rem;
  position: relative;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-25px);
}

.footer-container {
  display: grid;
  max-width: 1400px;
  /* Changed: Reduced left column from 2fr to 1.8fr, added 0.2fr spacer before nav */
  grid-template-columns: 1.8fr 0.2fr 0.9fr 0.9fr 0.5fr 0.3fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
  padding: 0 4rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-right: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e3c72;
  line-height: 1.2;
  text-transform: capitalize;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  text-transform: lowercase;
}

.footer-description {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.social-icon {
  /* Changed: Increased from 38px to 44px */
  width: 44px;
  height: 44px;
  background: #f5f7fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6c84;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.social-icon svg {
  /* Changed: Increased from 18px to 22px */
  width: 22px;
  height: 22px;
}

.social-icon:hover {
  background: #1e3c72;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1e3c72;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-list a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: #1e3c72;
  transform: translateX(5px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.7rem;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-list span:not(.contact-label) {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-spacer {
  /* Empty space column - now smaller */
}

.footer-location-column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f0f8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #1e3c72;
  font-weight: 600;
  border: 1px solid #d0e3f5;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.location-badge:hover {
  background: #1e3c72;
}

.location-badge:hover span a {
  color: white;
}

.location-badge svg {
  width: 12px;
  height: 12px;
}

.location-badge span a {
  color: #0A3569;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom {
  background: transparent;
  padding: 0.5rem 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer {
    margin-top: -150px;
  }
  
  .footer-card {
    transform: translateY(-30px);
    padding: 3rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .footer-left {
    grid-column: 1 / -1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8edf5;
    padding-right: 0;
  }

  .footer-spacer {
    display: none;
  }

  .footer-location-column {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 0;
    margin-top: -80px;
  }

  .footer-card {
    border-radius: 20px 20px 0 0;
    padding: 2.5rem 1.5rem 2rem;
    transform: translateY(-10px);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .footer-left {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8edf5;
  }

  .footer-column {
    padding: 1rem 0;
    border-bottom: 1px solid #e8edf5;
  }

  .footer-column:last-of-type {
    border-bottom: none;
  }

  .footer-location-column {
    padding: 1rem 0 0 0;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 40px;
    height: 40px;
  }

  .footer-logo-title {
    font-size: 0.85rem;
  }

  .footer-description {
    font-size: 0.8rem;
  }

  .social-icon {
    /* Keep mobile size at 40px */
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-nav-title {
    font-size: 0.9rem;
  }

  .location-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}