/* Desktop Styles */
@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }

    .header-desktop-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
    }

    .desktop-search-group {
        max-width: 200px;
        width: 100%;
    }

    .parish-select {
        width: 180px;
    }
}

/* Mobile Styles */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 10px 0;
    }

    .mobile-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 12px;
    }

    .mobile-stack {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .search-box {
        max-width: 100%;
    }

    .parish-select {
        width: 100%;
    }

    .btn-post-ad,
    .btn-login-reg,
    .btn-my-profile {
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
    
    .profile-dropdown {
        right: 0;
        min-width: 180px;
    }
    
    .profile-dropdown-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .profile-dropdown-item i {
        font-size: 16px;
        width: 20px;
        margin-right: 10px;
    }

    .logo-img {
        height: 28px;
    }
    .offcanvas {
        width: calc(100% - 100px) !important;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    /* Footer Responsive Styles */
    .footer-brand-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links-section {
        justify-content: center !important;
        text-align: center;
    }

    .footer-link-column {
        min-width: 100px;
        margin-bottom: 20px;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .app-btn-img {
        height: 35px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .social-media-section .footer-divider{
        display: none;
    }
    .social-media-section {
        grid-template-columns: auto;
        grid-gap: 15px;
    }
    .footer-download-text{
        text-align: center;
    }
    .footer-logo,.app-download-buttons{
        justify-content: center;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-links-section {
        justify-content: flex-start !important;
    }

    .footer-brand-section {
        text-align: left;
    }

    
}

