/* Footer Responsive Fixes */

/* Default styles to ensure proper spacing */
.footer-contact-row {
    margin-top: 30px;
    padding-top: 30px;
}

/* Fix social icons alignment */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Improve footer bottom spacing */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-policies {
    display: flex;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    /* Adjust grid for better responsiveness */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Fix contact row mobile layout */
    .footer-contact-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-contact-col {
        width: 100%;
    }
    
    .social-icons {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    /* Fix footer bottom section */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Further optimize for tablets */
    .company-description {
        font-size: 0.85rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    /* Mobile-specific optimizations */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .company-description {
        text-align: center;
        padding: 0 10px;
    }
    
    .footer-col h4 {
        justify-content: center;
        display: flex;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
        width: 100%;
    }
} 