/* Footer Menu Frontend Styles */
.site-footer {
    background: #1e3a8a;
    color: white;
    padding: 40px 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget {
    padding: 0;
}

.footer-widget-full {
    grid-column: 1 / -1;
}

.footer-widget-half {
    grid-column: span 1;
}

.footer-widget-third {
    grid-column: span 1;
}

.footer-widget-quarter {
    grid-column: span 1;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-widget p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #e5e7eb;
}

.footer-widget ul,
.footer-widget ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget li {
    margin-bottom: 8px;
}

.footer-widget a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-widget > a {
    display: block;
}

.footer-widget a:hover {
    color: white;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 150px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.footer-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #f59e0b;
    background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.footer-newsletter-btn:hover {
    background: #d97706;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-widget-full,
    .footer-widget-half,
    .footer-widget-third,
    .footer-widget-quarter {
        grid-column: 1;
    }

    .site-footer {
        padding: 30px 0 20px;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-form input[type="email"],
    .footer-newsletter-btn {
        width: 100%;
    }
}
