/* ═══════════════════════════════════════════════════════
   IML TRAVEL FOOTER STYLING - DARK
═══════════════════════════════════════════════════════ */

.iml-footer {
  background: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-bottom: 1px solid #f0f0f0;
}

.iml-footer .container {
  padding: 0 24px;
}

/* FOOTER TOP - Logo & Tagline (centered) */
.footer-top {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
}

.footer-logo-wrapper {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.footer-logo-wrapper:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 45px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 15px;
  color: #666;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* FOOTER ROW - 4 Columns (2 on mobile) */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  justify-content: center;
  width: 100%;
}

.footer-col-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 200px;
}

.footer-col-6 {
  flex: 0 0 200px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #303030;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 1rem;
 
  
  
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #DD0854;
  font-weight: 600;
}

/* FOOTER BOTTOM SECTION - IATA, Social & Copyright */
.footer-bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-iata {
  position: absolute;
  left: 32px;
  bottom: 28px;
}

.iata-logo {
  max-height: 58px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
}

.iata-logo:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.footer-social a:hover {
  color: #DD0854;
  background: #fff0f4;
  transform: translateY(-3px);
}

.footer-copyright-wrapper {
  order: 2;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: #999;
  margin: 0;
  line-height: 1.6;
  padding-left: 0;
}

/* RESPONSIVE */
@media (min-width: 1366px) {
  .footer-col-6 {
    flex: 0 0 220px;
  }

  .footer-row {
    gap: 80px;
    justify-content: center;
  }
}

@media (min-width: 1024px) and (max-width: 1365px) {
  .footer-col-6 {
    flex: 0 0 200px;
  }

  .footer-row {
    gap: 70px;
    justify-content: center;
  }

  .iml-footer {
    padding: 60px 0 30px;
    margin-top: 60px;
  }
}

@media (max-width: 1023px) {
  .footer-col-6 {
    flex: 0 0 180px;
  }

  .footer-row {
    gap: 50px;
    justify-content: center;
  }

  .iml-footer {
    padding: 60px 0 30px;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .footer-col-6 {
    flex: 0 0 calc(50% - 15px);
  }

  .footer-row {
    gap: 30px;
  }

  .footer-top {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom-color: #f0f0f0;
  }

  .footer-col {
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 12px;
  }

 

  .footer-iata {
    position: static !important;
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 16px 0 24px;
  }

  .iata-logo {
    max-height: 40px;
  }

  .footer-social {
    gap: 12px;
    justify-content: center;
    width: auto;
  }

  .footer-copyright-wrapper {
    text-align: center;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .iml-footer {
    padding: 40px 0 20px;
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .footer-col-6 {
    flex: 0 0 calc(50% - 12px);
  }

  .footer-row {
    gap: 24px;
  }

  .footer-top {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .iml-footer .container {
    padding: 0 12px;
  }

  .footer-title {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-social {
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 480px) {
  .footer-col-6 {
    flex: 0 0 calc(50% - 10px);
    padding-left: 42px;
  }

  .footer-row {
    gap: 20px;
  }

  .footer-logo {
    height: 40px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-links {
    gap: 1px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-social {
    gap: 8px;
    justify-content: center;
    width: auto;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-copyright-wrapper {
    margin-top: 0;
  }

  .footer-copyright {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .footer-col-6 {
    flex: 0 0 100%;
  }

  .footer-row {
    gap: 15px;
  }

  .footer-title {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 10px;
  }
}
