/* Footer CSS - Extracted from site_footer.php for performance */

.main-footer {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 80px;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.brand-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-trust-signals {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-pill-rewards {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: transparent;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 18px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.trust-pill-rewards:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    color: #fff;
}

.footer-links h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-newsletter h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-newsletter .subscribe_form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    width: 100%;
    transition: all 0.3s;
}

.footer-newsletter input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    outline: none;
}

.footer-newsletter button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-newsletter button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-newsletter .form_field {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-newsletter .form_field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #64748b;
}

.footer-newsletter .form_field div {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-newsletter .form_field img {
    width: 50% !important;
    height: 42px !important;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    filter: invert(1) hue-rotate(180deg) brightness(1.5);
    /* Invert captcha for dark footer */
    object-fit: contain;
}

.footer-newsletter .form_field input {
    width: 50% !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 30px 0;
    background: #0b1120;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #1e293b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}