/* =========================
   Footer Base
========================= */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0 0;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   Layout
========================= */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

/* =========================
   UNIFIED FOOTER TEXT SYSTEM
========================= */
.footer-section p,
.footer-section li,
.footer-section a,
.footer-section span {
    font-size: 14px;
    line-height: 1.6;
    color: #ecf0f1;
}

/* =========================
   Headings
========================= */
.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f39c12;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   Lists & Links
========================= */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section a {
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

/* =========================
   Icons (Uniform Everywhere)
========================= */
.footer-section i {
    width: 20px;
    margin-right: 8px;
    color: #f39c12;
}

/* =========================
   Social Icons
========================= */
.social-title {
    margin-top: 20px;
}

.social-icons {
    margin-top: 10px;
}

.footer-section a img {
    width: 32px;
    height: 32px;
    margin: 0 5px 5px 0;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-section a img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

/* =========================
   Payment Section
========================= */
.payment-section {
    min-width: 300px;
}

.payment-subtitle {
    color: #bdc3c7;
    margin-bottom: 15px;
}

.payment-methods {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.payment-logos {
    margin-bottom: 15px;
}

.payment-logo {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Logo variations */
.eps-logo,
.eps-mobile-light {
    background: #ffffff;
    border: 1px solid #dddddd;
}

.eps-light {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

/* =========================
   Verified Text
========================= */
.verified-text {
    color: #2ecc71;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.verified-text i {
    margin-right: 8px;
}

/* =========================
   Footer Bottom
========================= */
.footer-bottom {
    background: #1a252f;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }

    .footer-section {
        width: 100%;
        min-width: 100%;
        padding: 10px 10px 10px 20px; /* 👈 extra LEFT space */
    }
    
    .footer-section ul li,
    .footer-section p {
        padding-left: 2px;
    }

    .payment-section {
        min-width: 100%;
    }

    .footer-section h3 {
        font-size: 17px;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-section span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px 0 0;
    }

    .footer-container {
        padding: 0 5px;
    }

    .footer-section {
        padding-left: 15px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section a img {
        width: 28px;
        height: 28px;
    }

    .verified-text {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .footer-bottom {
        font-size: 12px;
        padding: 12px 5px;
    }
}

/* =========================
   Global Image Safety
========================= */
img {
    max-width: 100%;
    height: auto;
}
