/* Footer Styles */
.site-footer {
    background-color: #1e3c72;
    color: #ffffff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1;
    margin: 0 15px;
}

.footer-column h3, .footer-column h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p, .footer-column a {
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #2a5298;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: #ffffff;
    color: #2a5298;
}

.footer-bottom {
    border-top: 1px solid #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #ffffff;
}

.footer-bottom a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

/* Hover effects for better interactivity */
.footer-column:hover .footer-heading {
    color: #3498db;
    transition: color 0.3s ease;
}

/* Mobile-specific hover states */
@media (max-width: 768px) {
    .footer-column:hover .footer-heading {
        color: white;
    }

    .footer-menu a:active,
    .contact-item a:active,
    .social-link:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-column {
        margin: 0 auto;
        width: 100%;
    }

    .contact-details {
        margin: 0 auto;
        width: 90%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .site-footer {
        padding: 30px 0 0;
    }

    .footer-columns {
        gap: 1.5rem;
    }

    .company-info .footer-title {
        font-size: 1.6rem;
    }
}

/* Tablet portrait optimization */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .company-info {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }

    .quick-links,
    .popular-destinations {
        text-align: left;
    }

    .contact-info {
        text-align: left;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }
}

/* Print styles */
@media print {
    .site-footer {
        background: none !important;
        color: black !important;
        padding: 20px 0;
    }

    .social-links,
    .footer-bottom-links {
        display: none;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .company-info {
        grid-column: 1 / -1;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-column {
        animation: none;
    }

    .social-link:hover,
    .footer-menu a:hover,
    .contact-item a:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .site-footer {
        background: #000 !important;
        border-top: 2px solid #fff;
    }

    .footer-heading::after {
        background: #fff !important;
        height: 3px;
    }

    .social-link {
        border: 2px solid #fff;
        background: transparent;
    }

    .social-link:hover {
        background: #fff;
        color: #000;
    }
}

/* Custom scrollbar for long menus */
.footer-menu::-webkit-scrollbar {
    width: 4px;
}

.footer-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.footer-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.footer-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Contact Info Section Fix */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #ffffff; /* White background */
    padding: 15px;
    border-radius: 8px;
    color: #2a5298; /* Text color adjusted for contrast */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #2a5298; /* Adjusted text color for contrast */
}

.contact-item i {
    font-size: 1.2rem;
    color: #2a5298; /* Adjusted icon color for contrast */
}

.contact-item a {
    color: #2a5298; /* Adjusted link color for contrast */
    text-decoration: none;
}

/* Contact Info Section Fix - Hover Color */
.contact-item a:hover {
    color: #ffcc00; /* Bright yellow for better visibility */
    text-decoration: underline;
}