/**
 * Footer Section Styles
 */

.site-footer {
    background: #1a1a1a;
    color: #fff;
    font-size: 0.9375rem;
}

.site-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top (Main Content) */
.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 350px 1fr 1fr 300px;
    gap: 60px;
}

/* Base Column Styles */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Brand Column */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-desc {
    color: #999;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Links & Contact Lists */
.footer-links,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a,
.contact-list li a,
.contact-list li span {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover,
.contact-list li a:hover {
    color: #FF5B00;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #999;
}

.contact-list li i {
    font-size: 1.25rem;
    color: #FF5B00;
    margin-top: 2px;
}

/* Newsletter & Social */
.newsletter-text {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    color: #fff;
    border-radius: 4px 0 0 4px;
    width: 100%;
    font-size: 0.9375rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    background: #FF5B00;
    border: none;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e04f00;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-icon:hover {
    background: #FF5B00;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    background: #111;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.sep {
    color: #333;
}

/* Responsive Styles */

/* Tablet (Large) */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Tablet (Small) */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-top {
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        padding: 50px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}