.site-footer {
    position: relative;
    background-color: #020617; 
    background-image: 
        url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="2" cy="2" r="1.5" fill="%23ffffff" fill-opacity="0.05"/%3E%3C/svg%3E'),
        linear-gradient(135deg, #020617 0%, #1e3a8a 100%);
        
    color: #94a3b8;
    font-family: system-ui, -apple-system, sans-serif;
    padding-top: 4rem;
    border-top: 4px solid #3b82f6;
}

.site-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.footer-heading {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo img {
    height: 38px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}
.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-tagline {
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
    color: #cbd5e1;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}
.footer-social-link {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-social-link svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social-link:hover {
    color: #ffffff;
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu-list li {
    margin-bottom: 0.85rem;
}
.footer-menu-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}
.footer-menu-list a:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.footer-newsletter-lead {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: #cbd5e1;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.newsletter-field input[type="text"],
.newsletter-field input[type="email"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.newsletter-field input::placeholder { color: #64748b; }
.newsletter-field input:focus { 
    border-color: #3b82f6; 
    background: rgba(255, 255, 255, 0.1); 
}

.newsletter-consent label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.85rem;
    cursor: pointer;
    line-height: 1.4;
}
.newsletter-consent input[type="checkbox"] { margin-top: 3px; }
.newsletter-error { color: #ef4444; font-size: 0.85rem; margin-top: 4px; display: none; }

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}
.footer-copy { margin: 0; color: #64748b; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #94a3b8; text-decoration: none; transition: 0.2s; }
.footer-bottom-links a:hover { color: #ffffff; }

.footer-logo-link {
    text-decoration: none;
}

.newsletter-success-msg {
    color: #10b981;
    font-weight: bold;
    display: none;
}

.admin-gallery-overlay {
    display: none;
}

.ag-hidden-input {
    display: none;
}

.ag-no-image-text {
    display: none;
}