.footer {
    background: #0a0e14;
    border-top: 1px solid var(--glass-border);
    padding: 6rem 0 0 0;
    margin-top: 0;
    position: relative;
    z-index: 100;
    display: block !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Specific column widths for better balance on desktop */
@media (min-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.accent-green-text {
    color: var(--accent-green) !important;
}

.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-socials a:hover {
    background: var(--accent-green);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(52, 199, 89, 0.3);
}

/* Vertical Social Links */
.footer-socials-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.footer-socials-vertical a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-socials-vertical a i {
    width: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.footer-socials-vertical a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-payment-logos img {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-payment-logos img:hover {
    opacity: 1;
}

.footer-links h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start; /* Align with top for multi-line support */
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem !important;
}

.contact-list li i {
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 2px; /* Align icon with first line of text */
    width: 24px;
    height: 24px;
    background: rgba(52, 199, 89, 0.1);
    color: var(--accent-green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.contact-list li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list li a:hover {
    color: var(--accent-green);
}

/* New Contact List Style */
.contact-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list-new li {
    margin-bottom: 1.2rem;
}

.contact-list-new li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-list-new li a i {
    font-size: 1.1rem;
    color: var(--text-muted);
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.contact-list-new li a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.contact-list-new li a:hover i {
    color: var(--accent-green);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.payment-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    transition: all 0.3s;
}

.payment-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.payment-box i {
    font-size: 1.1rem;
}

.shield-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
    padding: 2.5rem 2rem;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 2rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--accent-green);
}

.scroll-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-to-top-btn:hover {
    background: var(--accent-green);
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 199, 89, 0.3);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 2.5rem 1rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.copyright-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: #3b82f6;
}
