/* ****footer**** */

.footer-section {
    background: #0a1754;
    color: white;
    /* min-height: 100vh; */
    padding: 40px 0px 0px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.contact-cards-footer{
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card-footer {
    background: #0a1754;
    border: 1px solid #ffffff;
    border-radius: 15px;
    padding: 10px 20px;
    min-width: 210px;
    text-align: left;
    /* backdrop-filter: blur(10px); */
}

.flag {
    width: 55px;
    height: 35px;
    margin-bottom: 8px;
    display: flex;
    overflow: hidden;
}

.country-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 2px;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
}

.contact-item {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    font-size: 14px;
    color: #E8EAF6;
    font-weight: 600;
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: start;
    justify-items: stretch;
}

.footer-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #ffffff;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff0000;
}

.footer-column ul {
    list-style: none;
    margin-top: 20px;
    padding: 0px !important;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.support-emails {
    margin-top: 20px;
}


.footer-bottom {
     margin-bottom: 20px; /* spacing above the strip */
    background: #252f5f;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.copyright {
    color: #C5CAE9;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .contact-cards {
        gap: 15px;
    }

    .contact-card {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        max-width: 300px;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom .row{
  align-items: center;
}

.social-icon-footer {
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1754 !important;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.social-icon-footer:hover {
    transform: translateY(-3px);
}

/* =========================
   FOOTER MOBILE RESPONSIVE
========================= */

/* Tablet & below */
@media (max-width: 768px) {

  /* Footer bottom layout */
  .footer-bottom .row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom .col-6 {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .copyright {
    justify-content: center;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
  }

  /* Social icons center */
  .social-icons {
    justify-content: center;
  }

  .social-icons .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Mobile only */
@media (max-width: 576px) {

  .footer-section {
    padding-bottom: 10px;
  }

  .footer-bottom {
    padding: 12px 0;
    margin-bottom: -10px;
  }

  .social-icon-footer {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}