/* Custom Footer Styles to match Premium Theme */

.footer-section {
    background-color: #111 !important;
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-section .footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section .footer-logo:hover img {
    opacity: 1;
}

.footer-section .footer-content-area p {
    color: #999;
    line-height: 1.7;
    margin-top: 25px;
    font-weight: 300;
    max-width: 400px;
}

/* Scoped Widget Styles */
.footer-section .widget-title h5 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section .widget-title h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #ee3239;
}

.footer-section .widget-list li {
    margin-bottom: 12px;
}

.footer-section .widget-list a {
    color: #bbb !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-section .widget-list a:hover {
    color: #ee3239 !important;
    transform: translateX(5px);
}

.footer-section .social-list {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.footer-section .social-list span {
    display: none !important;
}

.footer-section .social-list a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-section .social-list a:hover {
    background: #ee3239;
    transform: translateY(-3px);
}

.footer-section .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-section .footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.footer-section .footer-bottom a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section .footer-bottom a:hover {
    color: #ee3239;
}