/* =========================================
   FOOTER STYLES (Modern & Professional)
   ========================================= */

.site-footer {
    background-color: #1a1b1f;
    /* Dark Theme */
    color: #b0b3b8;
    padding-top: 40px;
    /* Reduced from 60px */
    font-size: 13.5px;
    /* Reduced from 14px */
    margin-top: auto;
    /* Push to bottom if flex container */
    border-top: 1px solid #2d2e32;
}

.footer-content {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px 30px;
    /* Reduced bottom padding from 50px */
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    /* Reduced from 40px */
}

/* --- Columns --- */
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    /* Reduced from 16px */
    font-weight: 600;
    margin-bottom: 15px;
    /* Reduced from 20px */
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    /* Adjusted */
    width: 30px;
    height: 2px;
    background: #d35400;
    /* Brand Accent */
    border-radius: 2px;
}

.footer-desc {
    font-size: 13px;
    /* Reduced from 13.5px */
    line-height: 1.6;
    margin-bottom: 15px;
    /* Reduced from 20px */
    max-width: 320px;
}

/* --- Links --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    /* Reduced from 12px */
}

.footer-links a {
    color: #b0b3b8;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
}

.footer-links a:hover {
    color: #f39c12;
    /* Brand Gold */
    transform: translateX(4px);
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2d2e32;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #3e4046;
}

.social-btn:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

/* Brand Colors */
.social-btn.facebook:hover {
    background: #3b5998;
}

.social-btn.instagram:hover {
    background: #e1306c;
}

.social-btn.youtube:hover {
    background: #ff0000;
}

.social-btn.twitter:hover {
    background: #000000;
}

/* --- Newsletter (Simulated) --- */
.footer-newsletter {
    margin-top: 15px;
}

.input-group {
    position: relative;
    display: flex;
}

.footer-input {
    width: 100%;
    padding: 12px 15px;
    background: #2d2e32;
    border: 1px solid #3e4046;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
}

.footer-input:focus {
    outline: none;
    border-color: #d35400;
}

/* --- Bottom Bar --- */
.footer-bottom {
    background-color: #141518;
    padding: 15px 0;
    /* Reduced from 20px */
    border-top: 1px solid #2d2e32;
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #888;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-text-wrap {
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        justify-content: center;
    }
}