.footer-section {
    background: #071c39;
    color: #ffffff;
}

.footer-title,
.footer-heading {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    margin-top: 20px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 14px;
}

.newsletter-form button {
    border: none;
    background: #0B4FA3;
    color: white;
    padding: 0 20px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #083d81;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.reward-box {
    background: linear-gradient(135deg,#0B4FA3,#2E7D32);
    padding: 22px;
}

.reward-box h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

.footer-contact p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
    line-height: 1.7;
}

.footer-contact i {
    margin-right: 10px;
    color: #4CAF50;
}

.social-area h6 {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.social-icons a:hover {
    background: #0B4FA3;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-title {
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-box{
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 90px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.payment-box img{
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.payment-box:hover{
    transform: translateY(-2px);
    transition: 0.3s ease;
}

.copyright-text {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

.app-download h5{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.store-img{
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-section * {
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .footer-section {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        text-align: left;
        padding: 14px;
    }

    .newsletter-form button {
        padding: 0 16px;
    }

    .app-download .d-flex {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
    }

    .copyright-text,
    .payment-title {
        text-align: center !important;
    }

    .footer-section .col-lg-2,
    .footer-section .col-lg-3,
    .footer-section .col-lg-4 {
        margin-bottom: 25px;
    }

    .store-img {
        height: 42px;
    }
}

@media (max-width: 480px) {

    .store-img {
        height: 38px;
    }

    .reward-box h4 {
        font-size: 18px;
    }

    .footer-title,
    .footer-heading {
        font-size: 16px;
    }
}