/* Footer Mobile Styles */
@media (max-width: 767px) {
    /* Hide all footer sections except copyright */
    .footer .container .row,
    .footer .footer-subscribe,
    .footer .mt-40.border-blue {
        display: none !important;
    }

    /* Show only copyright section */
    .footer .footer-copyright-card {
        margin-top: 0;
    }

    /* Hide phone and email in footer copyright section */
    .footer .footer-copyright-card .d-flex.align-items-center.justify-content-center {
        display: none !important;
    }

    /* Adjust footer margin */
    .footer {
        margin-top: 50px;
        text-align: center;
    }
} 