/* ===== FOOTER STYLES ===== */

.footer-exotica {
    background-color: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid #e5e5e5;
}

/* Logo and Brand Section */
.footer-brand {
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: #00699C;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation Links */
.footer-nav {
    text-align: center;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-nav-list li {
    margin-bottom: 0;
}

.footer-link {
    color: #00699C;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.footer-link:hover,
.footer-link:focus,
.footer-link:active {
    color: #00B6DB;
    text-decoration: none;
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #00699C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-link:hover,
.social-link:focus,
.social-link:active {
    background-color: #00B6DB;
    transform: translateY(-2px);
    text-decoration: none;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Separator */
.footer-separator {
    border: none;
    height: 1px;
    background-color: #cccccc;
    margin: 40px 0 30px;
    opacity: 1;
}

/* Bottom Section */
.footer-bottom {
    align-items: center;
}

.copyright-text {
    color: #00699C;
    font-size: 14px;
    margin: 0;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-legal-link {
    color: #00699C;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover,
.footer-legal-link:focus,
.footer-legal-link:active {
    color: #00B6DB;
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile First Approach */
@media (max-width: 767.98px) {
    .footer-exotica {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-brand,
    .footer-nav,
    .footer-social {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        max-width: 150px;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .footer-nav-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-nav-list li {
        margin-bottom: 0;
    }
    
    .footer-link {
        font-size: 15px;
    }
    
    .footer-social {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link img {
        width: 18px;
        height: 18px;
    }
    
    .footer-separator {
        margin: 30px 0 20px;
        background-color: #cccccc;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    
    .copyright-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer-legal-link {
        font-size: 13px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-exotica {
        padding: 50px 0 25px;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-nav {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 10px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .footer-brand {
        text-align: left;
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .footer-social {
        justify-content: flex-end;
    }
    
    .legal-links {
        justify-content: flex-end;
    }
    
    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .footer-exotica {
        padding: 70px 0 35px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 17px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link img {
        width: 22px;
        height: 22px;
    }
    
    .footer-social {
        gap: 25px;
    }
    
    .legal-links {
        gap: 35px;
    }
}