/* Footer Styles */

.pm-mega-footer {
    background: #1a2744;
    color: #f3f4f6;
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-col h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #9ca3af;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
}

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

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.social-circle:hover {
    background: #2563eb;
}

/* Payment Methods Section */
.footer-mid-row {
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    padding: 24px 0;
    margin-bottom: 24px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-methods span {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

.payment-grid {
    display: flex;
    gap: 12px;
}

.pay-card {
    width: 50px;
    height: 32px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a2744;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
    z-index: 99;
}

.scroll-top:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    border-top: 1px solid #374151;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #9ca3af;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .pm-mega-footer {
        padding: 40px 0 0;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .footer-mid-row {
        padding: 20px 0;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-column ul {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}












