/* ============= FOOTER SECTION ============= */
.footer-section {
    background: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
}

/* ============= FOOTER COLUMN 1 - COMPANY INFO ============= */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.footer-description {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 25px 0;
    opacity: 0.95;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #ffffff;
}

/* ============= FOOTER HEADINGS ============= */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* ============= FOOTER LINKS ============= */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.95;
}

.footer-links li a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(5px);
}

/* ============= FOOTER CONTACT ============= */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}

.footer-contact li i {
    font-size: 16px;
    color: #ffffff;
    width: 20px;
    text-align: center;
}

.footer-contact li span {
    opacity: 0.95;
}

/* ============= FOOTER BADGES ============= */
.footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.badge-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ============= FOOTER BOTTOM ============= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

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

.payment-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icon {
    height: 30px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.footer-copyright strong {
    font-weight: 600;
}

/* ============= FOOTER RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .footer-content {
        gap: 40px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
        gap: 35px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 17px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .footer-section {
        padding: 50px 0 0 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-bottom: 35px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-copyright {
        text-align: left;
        width: 100%;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 30px;
    }

    .footer-column:first-child {
        grid-column: 1;
    }

    .footer-logo {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-contact {
        gap: 12px;
        margin-bottom: 20px;
    }

    .footer-badges {
        gap: 12px;
    }

    .badge-img {
        height: 45px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-payment {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .payment-icons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .payment-icon {
        height: 28px;
        padding: 4px 8px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .footer-section {
        padding: 35px 0 0 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 30px;
        padding-bottom: 25px;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-heading {
        font-size: 15px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-contact li {
        font-size: 13px;
        gap: 10px;
    }

    .footer-contact li i {
        font-size: 14px;
    }

    .footer-badges {
        gap: 10px;
    }

    .badge-img {
        height: 40px;
    }

    .footer-bottom {
        padding: 18px 0;
        gap: 15px;
    }

    .payment-text {
        font-size: 13px;
    }

    .payment-icon {
        height: 26px;
        padding: 3px 7px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .footer-section {
        padding: 30px 0 0 0;
    }

    .footer-content {
        gap: 25px;
        padding-bottom: 20px;
    }

    .footer-logo {
        font-size: 17px;
    }

    .footer-description {
        font-size: 11px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .footer-contact {
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-contact li {
        font-size: 12px;
    }

    .badge-img {
        height: 35px;
    }

    .payment-icon {
        height: 24px;
        padding: 3px 6px;
    }

    .footer-copyright p {
        font-size: 11px;
    }
}

/* ============= HOVER EFFECTS & ANIMATIONS ============= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

/* ============= ACCESSIBILITY ============= */
.social-icon:focus,
.footer-links li a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .footer-section {
        background: #ffffff;
        color: #000000;
        padding: 20px 0;
    }

    .footer-social-icons,
    .footer-badges,
    .payment-icons {
        display: none;
    }
}