footer {
    position: relative;
    background: #111;
    /* Light black */
    color: #fff;
    padding: 5rem 0 0;
    /* padding-bottom handled by bottom-wrap */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
}

.footer-official-logo {
    height: 65px;
    /* Independent size from navbar */
    width: auto;
    display: block;
    object-fit: contain;
    margin-left: -10px;
    /* Shifted slightly left as requested */
    transition: opacity 0.3s ease;
}

.footer-official-logo:hover {
    opacity: 0.8;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #fff;
}

.footer-bottom-wrap {
    background: #000;
    /* Bottom extreme black */
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-social-link:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.1);
}

/* Brand Colors */
.footer-social-link .fa-facebook-f {
    color: #1877F2;
}

.footer-social-link .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-social-link .fa-x-twitter {
    color: #fff;
}

.payment-methods {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.2s ease;
    cursor: help;
}

/* Payment Brand Colors */
.payment-icon .fa-cc-visa {
    color: #1A1F71;
}

.payment-icon .fa-cc-mastercard {
    color: #EB001B;
}

.payment-icon .fa-apple-pay {
    color: #fff;
}

/* Kept white for visibility on black footer */
.payment-icon .fa-google-pay {
    color: #4285F4;
}

.payment-icon .fa-cc-amex {
    color: #007BC1;
}

.payment-icon:hover {
    transform: scale(1.15);
}

.copyright {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}