/* Premium Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 20px 20px 20px;
    font-family: 'Outfit', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    align-self: flex-start;
}

.footer-about p {
    color: #cccccc;
    line-height: 1.6;
    max-width: 350px;
}

.footer-title {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--accent-color);
}

.footer-nav-list, .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #cccccc;
    line-height: 1.5;
}

.footer-icon-wrapper {
    color: var(--accent-color);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--bg-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #888888;
    font-size: 14px;
}

.footer-sub-bottom {
    margin-top: 5px;
    font-size: 12px;
    color: #666666;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-about {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }
}