.footer {
    background-color: #003b95;
    background-size: cover;
    color: white;
    padding: 40px 0;
    text-align: left;
    width: 100vw;
    display: flex; 
	margin-top: 50px;
    flex-direction: column;
    justify-content: space-between;
}
.footer-content {
    width: 70vw;
    max-width: 1100px; 
    margin: 0 auto;
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
}
.footer-logo img {
    max-width: 200px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
    display: inline-block;
}

.footer-logo a:hover {
    opacity: 0.9;
}
.footer-logo, .footer-excursions, .footer-exclusive, .footer-contact, .footer-social {
    max-width: 220px;
    margin: 10px;
    text-align: left;
    align-self: flex-start;
}

.footer-logo {
    padding-top: 0;
}

.footer-excursions p, .footer-exclusive p, .footer-contact p, .footer-social p {
    font-size: 12px;
    margin: 8px 0;
    line-height: 1.4;
}

.footer-contact p i {
    margin-right: 12px;
}

.footer-excursions h4, .footer-exclusive h4, .footer-contact h4, .footer-social h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    color: white; 
}

.footer-link {
    color: white;
    text-decoration: none; 
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.social-icons-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
 
.footer-social a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ffb700;
    transform: translateY(-2px);
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
}
.footer-bottom-wrapper {
    width: 70vw;
    max-width: 1100px;
    margin: 0 auto;
}

/* Legal Links Section */
.footer-legal {
    background-color: #003b95;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-wrapper {
    width: 70vw;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
} 

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffb700;
    text-decoration: underline;
}

/* Payment Methods Section */
.footer-payments {
    background-color: #003b95;
    padding: 20px 0;
}

.footer-payments-wrapper {
    width: 70vw;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: white;
    transform: translateY(-2px);
}
.footer-logos {
		background-color: #fff;
	margin-top: 20px;
	
	
}
.footer-logos img {
    max-height: 100px;
    margin: 20px;
}

.white-filter {
    filter: brightness(0) invert(1);
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.email-link {
    color: white;
    text-decoration: none;
}
.email-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        width: 100vw;
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 0 20px;
    }
    
    .footer-excursions, 
    .footer-exclusive {
        width: 100%;
        max-width: none;
        margin: 20px 0;
        flex: none;
    }
    
    .footer-logo, 
    .footer-contact, 
    .footer-social {
        width: 100%;
        max-width: none;
        margin: 20px 0;
    }
}
