﻿/* Footer Styles */
    .footer {
        background: linear-gradient(135deg, #0B1120 0%, #1A1F2C 100%);
        border-top: 1px solid rgba(255,255,255,0.05);
        position: relative;
        overflow: hidden;
    }
    
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(10,88,202,0.5), transparent);
    }
    
    /* Footer Titles */
    .footer-title {
        position: relative;
        display: inline-block;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #0A58CA, transparent);
        border-radius: 2px;
    }
    
    /* Footer Links */
    .footer-links li {
        margin-bottom: 0.85rem;
        transition: all 0.2s;
    }
    
    .footer-links li a {
        transition: all 0.2s;
        display: inline-block;
        line-height: 1.9;
        padding: 0.12rem 0;     text-decoration: none;
    }
    
    .footer-links li a:hover {
        color: #0A58CA !important;
        transform: translateX(-4px);
    }
    
    /* Social Icons */
    .social-icon {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        transition: all 0.3s;
        color: white;
        text-decoration: none;
    }
    
    .social-icon:hover {
        background: var(--social-color, #0A58CA);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    /* Trust Badges */
    .trust-badge {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.07);
        padding: 8px 12px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        gap: 6px;
        min-height: 44px;
    }
    
    .trust-badge span {
        font-size: 0.7rem;
        color: #9aa4b2;
    }
    
    /* Contact List */
    .contact-list li {
        margin-bottom: 0.75rem;
    }
    
    .contact-list li a,
    .contact-list li span {
        transition: all 0.2s;
    }
    
    .contact-list li a:hover {
        color: #0A58CA !important;
    }
    
    /* Newsletter Form */
    #newsletterForm .newsletter-control {
        align-items: stretch;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 24px;
        overflow: hidden;
        min-height: 48px;
    }

    #newsletterForm .form-control {
        background: transparent;
        border: 0;
        color: white;
        padding: 0.75rem 1rem;
        height: auto;
    }
    
    #newsletterForm .form-control:focus {
        background: rgba(255,255,255,0.03);
        box-shadow: none;
    }
    
    #newsletterForm .form-control::placeholder {
        color: #9aa4b2;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #0A58CA, #0947A8);
        border: none;
        transition: all 0.2s;
    }

    #newsletterForm .btn-primary {
        border-radius: 18px;
        margin: 5px;
        min-width: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(10,88,202,0.3);
    }
    
    /* Payment Methods */
    .payment-methods img {
        opacity: 0.7;
        transition: opacity 0.2s;
        filter: grayscale(0.2);
    }
    
    .payment-methods img:hover {
        opacity: 1;
        filter: grayscale(0);
    }

    .footer-back-top {
        position: fixed;
        right: 24px;
        bottom: 24px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgb(0 0 0 / 38%);
        border: 1px solid rgba(255,255,255,0.12);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 16px 34px rgba(0,0,0,0.18);
        transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        z-index: 2;
    }

    .footer-back-top:hover {
        color: #fff;
        background: #0A58CA;
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(10,88,202,0.25);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .footer-title::after {
            width: 60px;
        }
        
        .trust-badges {
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .footer-bottom .text-md-start,
        .footer-bottom .text-md-end {
            text-align: center !important;
        }
        
        .payment-methods {
            margin-top: 1rem;
        }

        .footer-back-top {
            right: 16px;
            bottom: 16px;
        }
    }

.site-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(17, 24, 39, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            animation: popup-fade-in .2s ease-out;
        }
        .site-popup-wrap {
            position: fixed;
            z-index: 10000;
            max-width: min(92vw, 560px);
            width: 100%;
            animation: popup-scale-in .2s ease-out;
        }
        .site-popup-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 22px 42px rgba(2, 6, 23, .28);
            overflow: hidden;
            border: 1px solid rgba(148, 163, 184, .2);
        }
        .site-popup-close {
            position: absolute;
            top: 10px;
            left: 10px;
            border: 0;
            border-radius: 999px;
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, .92);
            color: #334155;
            cursor: pointer;
        }
        .site-popup-close:hover { background: #fff; }
        .site-popup-content { padding: 20px; }
        .site-popup-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
        .site-popup-text { color: #475569; margin-bottom: 1rem; white-space: pre-line; }
        .site-popup-btn {
            display: inline-block;
            background: linear-gradient(135deg, #0A58CA, #0947A8);
            color: #fff;
            padding: 9px 18px;
            border-radius: 999px;
            text-decoration: none;
        }
        @keyframes popup-fade-in { from { opacity: 0; } to { opacity: 1; } }
        @keyframes popup-scale-in { from { opacity: .7; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
        @media (max-width: 768px) {
            .site-popup-wrap { max-width: min(92vw, 430px); }
        }
