/* Footer Styles */
.main-footer {
    background: #1a202c;
    color: white;
    margin-top: 80px;
}

.footer-top {
    padding: 50px 0 30px;
    border-bottom: 1px solid #2d3748;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-column {
    margin-bottom: 20px;
}

.company-info {
    /* Already first column */
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    color: white;
}

.footer-description {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #2d3748;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4299e1;
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4299e1;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4299e1;
}

.footer-links i {
    width: 16px;
    color: #4299e1;
    font-size: 14px;
}

/* Store Banner in Company Info */
.company-info .store-banner {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(66, 153, 225, 0.3);
    margin-top: 10px;
}

.store-banner h5 {
    color: #4299e1;
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-banner p {
    color: #a0aec0;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.store-banner .btn {
    padding: 8px 16px;
    font-size: 13px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #a0aec0;
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links-bottom a:hover {
    color: #4299e1;
}

.trust-badges {
    display: flex;
    gap: 15px;
}

.trust-badge {
    background: #2d3748;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badge i {
    color: #4299e1;
}

/* Bridge Icon Fallback for Footer */
.fa-bridge::before {
    content: "🌉";
    font-style: normal;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .company-info {
        grid-column: span 4;
    }
    
    .company-info .store-banner {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .company-info {
        grid-column: span 3;
    }
    
    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .company-info .store-banner {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
}