/* Desktop button size fix */
@media (min-width: 992px) {
    .btn {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
    }
    
    .btn-lg {
        padding: 0.375rem 0.75rem !important;
        font-size: 1rem !important;
    }
    
    .btn-sm {
        padding: 0.2rem 0.4rem !important;
        font-size: 0.8rem !important;
    }
    
    .property-content .btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .hero .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    .footer-cta .btn,
    .section .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Featured Properties section button fix */
    .section .btn {
        width: auto !important;
        display: inline-block !important;
        max-width: 200px !important;
    }
}

/* Mobile button fix */
@media (max-width: 991px) {
    .btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.85rem !important;
        width: auto !important;
        display: inline-block !important;
    }
    
    .property-content .btn {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.8rem !important;
        width: auto !important;
    }
    
    .section .btn {
        max-width: 180px !important;
        width: auto !important;
    }
}